dvdufo
Forum Replies Created
-
I will send you an email now. Thank you in advance.
Oh really?! That would be great!
I want to add 5 stars to all my existing products, not Overall Rating but as Visitor Votes.Thanks for your support and nice plugin. I reviewed it with 5 stars. 👍
Thanks to your plugin I could manually bulk remove all found unused shortcodes using these in phpMyAdmin:
UPDATE wp_posts SET post_content = replace(post_content, '[do_widget id=text-10]', '' ) ;or
UPDATE wp_posts SET post_content = REGEXP_REPLACE(post_content, "\\[do_widget id=text-10]", "");If unwanted shortcodes are not solid and have variations, for example, different numbers or links or names, this code below will remove all shortcodes starting with for example [cz_ and will clear what it has inside ignoring any number or link.
UPDATE wp_posts SET post_content = REGEXP_REPLACE(post_content, "\\[cz_(.*?)]", "");`I wrote here because I thought it may help someone.
Forum: Plugins
In reply to: [Permalink Manager Lite] Creating product with dokan, ends to unruled URIHi and thank you the great savior @mbis
This code worked like a charm.
Your plugin is not comparable to similar permalink plugins for sure. Great functions and greater support.Forum: Plugins
In reply to: [Permalink Manager Lite] Creating product with dokan, ends to unruled URIHi dear @mbis
I reverted everything to previous condition and checked your given code.
with your new code: when I create a product with dokan, it becomes OK (URI is as expected). but with changing category of the product and updating changes, URI stays as it was (URI don’t change to new category)
without your code: Creating a product with dokan or changing category and updating changes, both are the same and URI is always as following: http://www.mywebsite.com/product-name
Anyway, I appreciate your efforts. Don’t bother yourself more, I have solved my issue with other plugin and codes. Thank you so much.
Forum: Plugins
In reply to: [Permalink Manager Lite] Creating product with dokan, ends to unruled URIThanks for your quick answer and pardon me for late reply. I was checking different things to make it done but to be honest, the code didn’t change the result for me after I entered it in function.php
I even deactivated all my plugins except woocommerce, elementor, dokan and permalink manager to avoid any plugin conflict but still I end with the previous result.
Anyway, at last I used another permalink plugin and it worked for me with dokan.
It has not all the functions that your plugin has, but for now it is enough for me.
Thanks a lot.
Have a great day.Forum: Plugins
In reply to: [Permalink Manager Lite] Creating product with dokan, ends to unruled URIOr is it possible to make the plugin check and fix only newly added product URIs within for example every 3 hour intervals instead of 24hrs?
in settings, there’s an item “Automatically fix broken URIs” that has “bulk fix all URIs, once a day”. I need smaller interval and only to process products added within recent hours.