AukeJomm
Forum Replies Created
-
Hey @finomeno,
The following snippet should remove Visual Composer markup
function wppfm_clean_description( $attributes, $feed_id, $product_id ) { $attributes['description'] = preg_replace("/\[(\/*)?vc_(.*?)\]/", '', $attributes['description'] ); // IMPORTANT! Always return the $attributes return $attributes; } add_filter( 'wppfm_feed_item_value', 'wppfm_clean_description', 10, 3 );
Could you test that?
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Price in feed should be including taxHey @kerckhaert, has you issue been resolved?
Let me know what you TAX settings are and if they are set.Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Price in feed should be including taxHello @kerckhaert,
Could you check and tell me what your TAX / VAT settings are in woocommerce?
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Variation priceHello @revolution404
Thank you for contacting us. And my apologies for the late response.
Instead of choosing the Regular price source check if selecting the “Min variation Regular price” helps. This should show the lowest variation price that are enabled and active.
Let me know if that worked
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] plugin not working after the installationHey @skokys,
I see we where also emailing each other.
I have just responded by email with the steps but also with a link to the lates plugin version to make sure you are trying to install the latest premium version.Please response by email so we have this sorted as soon as possible.
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] plugin not working after the installationHello Skokys,
Updating your free version to the paid version is very easy and I think that there where some files not correctly transferred to the server or got corrupted. If you follow the next steps by backing up your previous build feeds and completely removing the free version and installing the premium version from scrats I am sure you will have a completely fresh installation.
Step 1. Create a backup of the feeds you have created in the settings page.
Step 2. Deinstall the free feed manager plugin from the plugin page.
Step 3. Install the premium product feed manage plugin like any other plugin
Step 4. Enter your license key and validate.
Step 5. (e-commerce version only) install the google channel in the channel manager
Step 6. Restore the feed back-up in the settings page from our plugin.
Step 7. Regenerate the feed(s)
?Step 8. Ctrl +F5 to empty your browser cache.And you are up and running.
Let me know if that worked!
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Price source questionsHello @leokong18 ,
Check out the source dropdown for “Min Variation Regular Price”
That will make sure you get the lowest variation price.Let me know if that is what you where looking for.
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Price in feed should be including taxHello @simon110324,
If you check the source dropdown you will find “Regular Price With Tax”.
Check it out!Let me know if you have found it.
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] brand as product categoryHello @poklos
Have you checked the true value that the “Selected product categories” returns?
Did you manage to set up the correct condition?Let me know!
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Multisite compatible?Hello @mariusklein,
Yes our plugin will also work on multi sites.
Why don’t you try it?!Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] brand as product categoryHello @poklos,
Thank you for contacting us.
I would first investigate what data the “Selected product categories” return.
Just include it without condition. Determine if the source returns what you expect.Then create the condition.
Hey @tottello,
Thank you for the heads-up.
The WPML support is only for the premium plugin.
If you are running the free version I am sorry that it will not work.Hello @maxk2023
We do not support CURCY plugin at the moment.
We do support the woocommerce currency switcher plugin.WPML is fully supported.
Jethro,
Thank you for your kind words!
Great it worked for you.Hello Jethro,
Michel will be working on a solution.
We have a filter function you could use to get what you want.https://gist.github.com/Auke1810/8b247d56af0a2fac79fd414d9050adb5
If you’re unfamiliar with filters in your wp-admin, the best and easiest way to do this is by using a plugin like “Code Snippets” (https://www.ads-software.com/plugins/code-snippets/). And here you can find a great video explaining the use of this plugin https://www.youtube.com/watch?v=I1_ZqnQmwJs.
?
?After activating the Code Snippets plugin you can use the code I previously mentioned to add the functionality.Let me know if it has solved the issue or if you have more questions.`