• Resolved baboneko

    (@baboneko)


    Hello,
    I’d like to know if there is a way to show the Review Form first then the other reviews? I’d like to encourage users to fill out the form, and it might be immediately easy to see if it’s at the end of all the reviews.

    Alternatively, if there is a shortcode where I can use for just the review form, it would be ideal. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author cusrev

    (@ivole)

    Thanks for the interest in our plugin!

    Unfortunately, it is not possible to show the review form above the reviews. The plugins uses the standard WooCommerce reviews and they do not work as you described.

    Thread Starter baboneko

    (@baboneko)

    Hello,
    Got it, thanks for replying!

    When you have 100 reviews on a page, you will have a hard time getting more reviews because none of your customers are going to know that your review form is at the bottom of the page below those 100 reviews. There has to be a way to do this. Here is how to create a new tab with this snippet below, but how do you put the form on the new tab? This is something a ton of of people are looking for. Shocked woocommerce hasn’t fixed this flaw. I also can’t believe there is not a plugin for this as well. Reviews are the most important part of any ecommerce site.

    add_filter( ‘woocommerce_product_tabs’, ‘woo_new_product_tab’ );

    function woo_new_product_tab( $tabs ) { // Adds the new tab

    $tabs[‘test_tab’] = array(

    ‘title’ => __( ‘Leave a Review’, ‘woocommerce’ ),
    ‘priority’ => 50,
    ‘callback’ => ‘woo_new_product_tab_content’ );

    return $tabs;
    }

    function woo_new_product_tab_content() { // The new tab content

    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Moving Review Form to top or Shortcode’ is closed to new replies.