• Resolved sefrnicek1

    (@sefrnicek1)


    Hi,
    I have two question:

    1. Button on our website doesn’t work. It’s probably happened because we have guestbook on two pages of website concurrently, however we can’t solve this problem. Any ideas?

    2. Our client wants import messages from old website. He sent CSV file with messages inside, but it doesn’t work. Is there another way to import it?

    Thanks.

    Marek

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Marcel Pol

    (@mpol)

    The button works for me. You changed something?
    Often is happens because of a JavaScript error somewhere.

    About the CSV, you did try with the latest version?
    You can send it to [email protected] and then I will take a look and see if I can help.

    Thread Starter sefrnicek1

    (@sefrnicek1)

    The button doesn’t work on “vzkazy” page (when you go from main page). If you refresh this page, it’s works, but not on first visit.

    I will send you the csv file.

    Thank you very much for quick answer.

    Marek

    Plugin Author Marcel Pol

    (@mpol)

    I see.
    The theme is an AJAX theme. The FAQ says this:

    Using a theme with AJAX navigation can give issues. Only on the guestbook page is the JavaScript and CSS loaded.
    So you would need to load it on every page to have it available for the guestbook. You can add the following code to functions.php of your theme:

    
        <?php
        function my_gwolle_gb_register() {
            wp_enqueue_script('gwolle_gb_frontend_js');
            wp_enqueue_style('gwolle_gb_frontend_css');
        }
        add_action('wp_enqueue_scripts', 'my_gwolle_gb_register', 20);
        ?>

    Does adding this code work for you?

    Thread Starter sefrnicek1

    (@sefrnicek1)

    Unfortunately, this code doesn’t work… 🙁

    Plugin Author Marcel Pol

    (@mpol)

    Hmm, not sure how to help. This plugin might not be compatible with AJAX themes, or maybe some AJAX themes.
    I see you put it on the frontpage, it works now. Is that good enough?
    Maybe you can contact the theme author, see if they can help.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘button doesn’t work/ import old messages’ is closed to new replies.