adnanoner
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce extremely slow after WordPress 4.2 updateI also found that my backend was slow after the latest update and found out my the cron job wp_batch_split_terms in wp_options was bloated:
https://core.trac.www.ads-software.com/ticket/33423
Could be the cause of some of the problems here.
Forum: Plugins
In reply to: [Qtranslate Slug] woocommerce and category slug@pedro
Any updates on this? Do you have any ideas on how to solve this?Forum: Plugins
In reply to: [WooCommerce] Multisite / Share WooCommerce Database across sitesHi Azarea, Did you manage to find a solution. If so how?
Forum: Plugins
In reply to: [WP e-Commerce Shop Styling] One more emailHi Toni,
Did you ever get to work this? The way the plugin works it switches between different cases, depending on the subject line. I tried to add an extra case ‘Job Dispatched’ in class-heatshopstyling.php and added extra fields in settings.php but it’s not working. I think it’s because I’m using the correct case for the Job Dispatched and Closed Order subjects. Maybe the guys behind Shop Styling can help us? Bump
Cheers,
AdnanForum: Plugins
In reply to: [W3 Total Cache] page_enhanced sending no-cache max-age:0 headersOk I figured out that ngx pagespeed module adds it. Problem kind of solved, just wondering why it is not caching and setting the date to 1970.
Forum: Plugins
In reply to: [W3 Total Cache] page_enhanced sending no-cache max-age:0 headersBtw, I am using ngx_pagespeed could be that the combination is causing this?
Forum: Plugins
In reply to: [WP e-Commerce Shop Styling] Qtranslate activationThanks man! For reference it’s over here: https://haet.at/wp-e-commerce-qtranslate-multilanguage/
Forum: Plugins
In reply to: [W3 Total Cache] Settings not saving/flip floppingI there, I’m also getting the same problems and have tried the same as above. Did you have any luck solving it? I’ve also tried and edit permissions of w3-total-cache-config.php
Cheers
Forum: Fixing WordPress
In reply to: Getting image dimensions via javascriptHi sorry did not get my point across. So let’s forget about the javascript. When I upload an image wordpress knows its dimensions. Lets say the image is called image.jpg . I now want wordpress to rename the image url to image-w-180-h-200.jpg for example (where the image has a width of 180 pixels and a height of 200 pixels). That way I can retrieve these parameters with javascript and not preload the image.
So basically this would be a server-side solution instead (which seems better to me since we can’t get the image dimensions without preoloading it first).Forum: Fixing WordPress
In reply to: Getting image dimensions via javascriptHi thanks Andrew. I’d rather though have a way to have in hardcoded in the uploaded image’s link since the img is otherwise allocated in the memory.
Forum: Plugins
In reply to: [WP-Backgrounds Lite] [Plugin: WP-Backgrounds Lite] Only css file is printedyes thanks! Disabled wp_head because of some plugins. I also had a conflict with .livequery (deprecated) in one of my plugins javascript wp-ecommerce.js and replaced it with .on
Forum: Plugins
In reply to: [WP-Backgrounds Lite] [Plugin: WP-Backgrounds Lite] Only css file is printedHi there,
I’ve send you an email through the contact form :).
Cheers,
AdnanForum: Themes and Templates
In reply to: WordPress 3.4 broke my paginaton setupHi guys,
I’m using a plugin (wp-ecommerce) and it’s pagination also broke with the new WP 3.4 upgrade. I downgraded now but would like to upgrade. The code where the WP-query is:
function wpsc_a_page_url($page=null) { global $wp_query; $output = ''; $curpage = $wp_query->query_vars['paged']; if($page != '') $wp_query->query_vars['paged'] = $page; if($wp_query->is_single === true) { $wp_query->query_vars['paged'] = $curpage; return wpsc_product_url($wp_query->post->ID); } else { if( 1 < $wp_query->query_vars['paged']) { if(get_option('permalink_structure')) $output .= "paged/{$wp_query->query_vars['paged']}/"; else $output = add_query_arg('paged', '', $output); } return $output; } }
There is also a function for the pagination creation but I don’t think I need to modify that. I have pasted it in pastebin though: https://pastebin.com/Ty2GtdY0
Any ideas on how to modify it so that it works?
I’m getting the following parse error: FBML Error (line 145): illegal tag “body” under “fb:tab-position”
I’m also getting this error: HTML error while rendering tag “link”: There is a hard limit of 2 css link tags on profile tabs in order to remain under the IE 31 tag limit.
When I go to the ?fb=commerce page it first loads the correct page but then redirects to the normal one. Any ideas? I think somehow wordpress does not allow the plugin to load parameters (like ?fb=commerce ). Thanks!!
Forum: Plugins
In reply to: ‘Facebook like’ tagging systemHi Jon!
Just noticed your post. I would love to use it in a ‘gallery’ way like. So that you can browse trough all the pictures with one specific tag and have gallery’s per tag.
Looking forward to it!
Ad