• Resolved insomniacsbuilds

    (@insomniacsbuilds)


    Hi There,

    First of all, I would like to commend you on the Site Reviews Plugin, it is awesome, and has been a Plugin which really suits our website, and I will be purchasing the upgraded version.

    We have just bought a new Theme, for our website, and we want to start the new Theme, with a fresh new site, so will be starting from scratch.

    I just wanted to know, is it at all possible, to transfer the current reviews, over to the new website? As we will be transferring all Users over, and wouldn’t want to ask all Users, to have to do their reviews again.

    Any help, or advise, would be greatly appreciated.

    Keep up the great work.

    Kirk.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    1. Reviews can be exported in the same way you export pages and posts: “WP Admin > Tools > Export > Reviews”

    If you have assigned your reviews to pages, then you will need to export “All content” instead of just the reviews, otherwise you will have to manually reassign the reviews to your new pages.

    2. v3.0 allows you to export/import the plugin settings. If interested, you can download the latest beta release here: https://github.com/geminilabs/site-reviews-v3/releases

    3. Your website uses select2 to transform the SELECT elements (dropdowns) on your website. This conflicts with the Site Reviews star-rating control on the submission form which uses an invisible dropdown behind the scenes. This is why you are seeing both the star-rating control, and a rating dropdown.

    To fix this, you will need to change the end of the “select2.min.js” javascript file in your theme from this:

    jQuery(document).ready(function() {
        jQuery('body').find('select').select2({
            width: '100%'
        });
    });

    To this:

    jQuery(document).ready(function() {
        jQuery('body').find('select').not('.glsr-star-rating').select2({
            width: '100%'
        });
    });
    • This reply was modified 6 years, 1 month ago by Gemini Labs.
Viewing 1 replies (of 1 total)
  • The topic ‘Is it possible to transfer Reviews to new Theme’ is closed to new replies.