Themology
Forum Replies Created
-
Forum: Plugins
In reply to: [Woocommerce Smart Export] Smart Export does not export dataIt’s because php memory limit is exceeded. You may have a lot of orders to export or a low php memory limit.
Two options you may follow :
1. Increase the php limit you allow to php in your WordPress back-end. (But your hosting may not allow you as much memory as you want.)
Just add this line to your wp_config.php file (replace 1024M by any value you want) :
define( 'WP_MAX_MEMORY_LIMIT', '1024M' );Or you can ask your host provider to increase the memory limit.
2. Reduce the number of orders to export by filtering by date.
Thanks
Forum: Plugins
In reply to: [Woocommerce Smart Export] German and the decimal . ,Hello, do you have coding skills ? If yes, then you can do it using the filter wcse_order_total_format.
Forum: Plugins
In reply to: [Woocommerce Smart Export] Missing one item from exported table.Apologies, but I didn’t get anything like this. May be something happen in your site or you just missed something, or may be there is a problem in woocommerce. Just check that, I am sure you will get the problem an to make sure, still our plugin is bug free and one of the best Free Woocommerce export plugin.
Thanks π
Forum: Plugins
In reply to: [Woocommerce Smart Export] how to importBy next week, please check at our store at themology.net, we will release our another plugin which will help you to import.
Thanks
Forum: Plugins
In reply to: [Woocommerce Smart Export] Exporting VariationsForum: Plugins
In reply to: [Woocommerce Smart Export] Improvement – custom meta dataYou are welcome. π
Forum: Plugins
In reply to: [Woocommerce Smart Export] Improvement – custom meta dataYou can add custom data in the order export using a filter. With our next release we are going to make public our theme documentation, there we will list all the filter.
To add a column related to the order, see exemple here : http://pastebin.com/itLY3VAb
To add a column related to the products (for example, color or sizeβ¦), see exemple here : http://pastebin.com/nEs8RNu0
In the back-end, when you are to the Smart Export panel, in the βhelpβ tab top right, there is a Smart export tab with the all the post meta you can use.
Forum: Plugins
In reply to: [Woocommerce Smart Export] Export shows blank pageApologies! I am not sure why you are facing this problem. Please check everything properly.
Forum: Plugins
In reply to: [Woocommerce Smart Export] Export shows blank pageIt’s because PHP memory limit is exceeded. You may have a lot of orders to export or a low php memory limit.
Two options to follow :
1. Increase the PHP limit, Because your hosting may not allow you as much memory as you want.
Just add this line to your wp_config.php file (replace 1024M by any value you want) :
define( 'WP_MAX_MEMORY_LIMIT', '1024M' );2. Reduce the number of orders to export by filtering by date.
Forum: Plugins
In reply to: [Woocommerce Smart Export] Role / capability to exportWhere did you paste those code? In your theme functions.php right? It should works.BTW if not works, just wait for the next update, as I am almost finish with its.
And thanks for using my plugin.
Thanks for the information. Let me figure it out and sure I will release an update soon by this week.
Forum: Plugins
In reply to: [Woocommerce Smart Export] Role / capability to exportTry adding this code in your functions.php file in your theme: http://pastebin.com/v9NqWxtn
Forum: Plugins
In reply to: [Woocommerce Smart Export] how to importHello,
Yet I didnt add this option, you can import it using wordpress default import plugin. BTW i am going to add this option very soon and will release another plugin to do this.
Thanks for using my plugin.
Forum: Plugins
In reply to: [Woocommerce Smart Export] Exporting VariationsHi, Try adding this code in your theme’s functions.php file:
//functions.php function custom_product_meta($array) { $array[] = 'attribute_pa_color'; //sometimes it's just attribute_color $array[] = 'attribute_pa_size'; //sometimes it's just attribute_size return $array; } add_filter('wcse_included_order_product_keys_filter', 'custom_product_meta');Forum: Plugins
In reply to: [Woocommerce Product Support] Group Forum not attachedHi thanks for pointing this issue, may be its cause of woocommerce new update. Let me work on this plugin to make it work perfectly with wc 2.3+