R0d
Forum Replies Created
-
Hi Ewout,
It is indeed say that. I’ve read it and seen it 5 times no less yet always assumed it is the same folder with Simple.
I will give it a try. Thank you for a quick reply and apologies for my short-sightedness ??
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Products Feed with Images in WoocommerceJosylad, don’t think this is related to this plugin in anyway. You might want to have a look on Woocommerce REST API
https://docs.woothemes.com/document/woocommerce-rest-api/Forum: Plugins
In reply to: [WooCommerce Cart Tab] Cart Contents Not showingGreat to hear, thanks heatherbodlak
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Cart Contents Not showingThe above site seems working fine. How did you resolve it, rejuvenateIT?
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Products Feed with Images in WoocommerceSounds like you are looking for a WooCommerce Products widget? Appearance -> Widgets. It will have a picture if your product has Prudct Image set.
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Bug in the addition of the class hidden/visibleWould you share the link where it is happening please? I don’t see this problem on my site. What actions do you do to get error? Do you have latest Woocommerce version 2.1.2?
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Shadow when cart is not visibleHooray! Fixed with version 0.3.1.
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Shadow when cart is not visibleWell, in the spirit of opensource software and collaboration I decided to fix it myself. Took me few days to understand what’s wrong with it and how to fix it, few more days to get how github works, but hey, changes are done and hopefully will appear in the new version as soon as author accepts them.
Forum: Fixing WordPress
In reply to: Disable post revisions and autosavePut the below line into wp-config.php
define('WP_POST_REVISIONS', false );
above line containing ABSPATH. It does not work otherwise.
Here is how the bottom of my config looks:
/** Disable future revisions and increase autosave interval to 300 seconds */ define('AUTOSAVE_INTERVAL', 300 ); // seconds define('WP_POST_REVISIONS', false ); /* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); /** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php');
Tested on 3.5.1