Home Forums WoodMart support forum How do i manage reviews?

How do i manage reviews?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #613687

    zehpan
    Participant

    say i would like to manually add reviews, how can i do that?

    #613690

    zehpan
    Participant

    one more question: am i able to set the initial number ordered for the stock progress bar? how

    #613814

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    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

    #613863

    zehpan
    Participant

    1. 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.
    #613870

    zehpan
    Participant

    OK the second question was solved, the initial number needs to be larger. I am just stuck on the first question

    #614061

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    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

    #614303

    zehpan
    Participant

    Another 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

    #614389

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    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

Viewing 8 posts - 1 through 8 (of 8 total)