Home › Forums › WoodMart support forum › How do i manage reviews?
How do i manage reviews?
- This topic has 7 replies, 2 voices, and was last updated 5 months, 2 weeks ago by
Aizaz Imtiaz Awan.
-
AuthorPosts
-
November 20, 2024 at 11:23 am #613687
zehpanParticipantsay i would like to manually add reviews, how can i do that?
November 20, 2024 at 11:32 am #613690
zehpanParticipantone more question: am i able to set the initial number ordered for the stock progress bar? how
November 20, 2024 at 3:25 pm #613814
Aizaz Imtiaz AwanKeymasterHello,
01. To manually add a review to a product:
Go to Product, Scroll to the Product Reviews section, Use the Add Review option to enter the review manually.02. Please follow this guide:
https://xtemos.com/docs-topic/products-stock-progress-bar/Best Regards
November 20, 2024 at 4:24 pm #613863
zehpanParticipant1. I scrolled to that section, when i try to add a review, its only showing just a comment, without rating, name, and other information. So its not accumulating ratings. Why
2. i have done all the settings, but ordered number is always showing 0. I even tried to make a test order, but the ordered number is still showing 0.
I will attach the ref image.
Attachments:
You must be logged in to view attached files.November 20, 2024 at 4:26 pm #613870
zehpanParticipantOK the second question was solved, the initial number needs to be larger. I am just stuck on the first question
November 21, 2024 at 9:44 am #614061
Aizaz Imtiaz AwanKeymasterHello,
To add product reviews with ratings, customers need to submit them from the front end. Ensure reviews are enabled in WooCommerce > Settings > Products > Reviews. They can then go to the product page, scroll to the Reviews tab, and submit their review with a rating directly there.
Best Regards
November 21, 2024 at 3:03 pm #614303
zehpanParticipantAnother question, for my single product page, we have two additional tab, when I added them, they appear to be the last two tabs, after review tab. how can i make the review tab the last tab?
Thanks
November 21, 2024 at 5:16 pm #614389
Aizaz Imtiaz AwanKeymasterHello,
01. The code below will help you to reorder the tabs. Please try to add the code below in the functions.php file in your child theme.
/** * Reorder product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 ); function woo_reorder_tabs( $tabs ) { $tabs['reviews']['priority'] = 33; // Reviews first $tabs['description']['priority'] = 4; // Description second $tabs['additional_information']['priority'] = 5; // Additional information third // Additional Tabs are from Theme Settings $tabs['wd_additional_tab']['priority'] = 1; $tabs['wd_additional_tab_2']['priority'] = 2; return $tabs; }
Please follow this guide:
https://woocommerce.com/document/editing-product-data-tabs/Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register