priyadilsha
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Woo Search] How to exclude out-of-stock products?Thanks so much. It worked.
Forum: Plugins
In reply to: [Advanced Woo Search] How to exclude out-of-stock products?Thanks so much for the reply. I’ll try.
Forum: Plugins
In reply to: [Theme My Login] Allow user to select the role during the registrationHi,
Thanks so much for the reply. I didn’t get chance to solve this. So, I used another plugin for the site.
Thanks Again
Forum: Plugins
In reply to: [Advanced Woo Search] How to exclude out-of-stock products?I also tried that code but didn’t work.
- This reply was modified 7 years, 8 months ago by priyadilsha.
Forum: Plugins
In reply to: [Theme My Login] Allow user to select the role during the registrationI also tried the below code but no luck….
<p class="tml-submit-wrap"> <label for="select-user-role">Please select your role</label> <select id="select-user-role" name="select-user-role" class="input select"> <option value="author">Author</option> <option value="reviewer">Reviewer</option> </select> </p>
function tml_new_user_registered( $user_id ) { $u = new WP_User( $user_id ); if($_REQUEST['select-user-role']=='reviewer') { $u->remove_role( 'subscriber' ); $u->add_role( 'editor' ); } } add_action( 'user_register', 'tml_new_user_registered' ); function myplugin_user_register( $user_id ) { update_user_meta( $user_id, 'role', $_POST['select-user-role'] ); } add_action( 'user_register', 'myplugin_user_register' );
Thanks
Forum: Plugins
In reply to: [Yoast SEO] Meta description isn’t correct when sharing a product on facebookHi,
I disabled all plugins but the issue was not solved. so, the issue is with the theme. I removed some og tag generators from header.php file, but it’s still showing duplicate tags. Any idea?
Thanks for the help!
Forum: Plugins
In reply to: [Yoast SEO] Meta description isn’t correct when sharing a product on facebookHi,
Thanks for your reply. here is a product url.
https://vertexfoods.com/product/protein-26-special-chocolate-peanut-butter-blast/If you go this URL and debug the link, you can see the wrong meta description.
https://developers.facebook.com/tools/debug/sharing/Thanks
ok.
Thanks
Forum: Plugins
In reply to: [PDF Embedder] How to translate the embed pdf file ?ok Dan.
Thanks for your reply.
Hi,
Try disabling the Remote amazon images option in woozone settings.
Thanks
I’m getting same issue. Is there any solution ? adding the same image twice will display same image twice in the thumbnails grid.
- This reply was modified 8 years, 2 months ago by priyadilsha.
Hi,
I have the same issue. Is there any solution for that ?
Thanks
Forum: Plugins
In reply to: [wpForo Forum] Menu automatically change to Login when user is logged in.W3 Total Cache
Forum: Plugins
In reply to: [wpForo Forum] How to exclude WP foro widget area from caching ?Thank you very much.
Forum: Plugins
In reply to: [wpForo Forum] Menu automatically change to Login when user is logged in.Hi,
Thanks for the reply. URL Shortcodes are correct. I think this may happens because of the caching. is there way to fix this without disabling caching ? may be exclude caching ?
Thanks