• Hallo
    Op de site gaat het mis bij de eerste weergave van de referentie-pagina. De reviews worden vreemd weergegeven en de knop om een nieuwe aan te maken werkt niet. Pas na een refresh van de pagina laadt de plugin correct en werkt alles. Iemand een idee?

    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 theme is an AJAX theme, that often gives problems.
    You could try it with the text that is in the FAQ. I don’t know if it works with every AJAX theme.

    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);
        ?>
    Thread Starter daanboer

    (@daanboer)

    This is the response of saving:

    Jouw PHP-wijzigingen zijn teruggedraaid vanwege een fout op regel 10 in het bestand wp-content/themes/bridge-child/functions.php. Repareer en probeer opnieuw.

    syntax error, unexpected ‘<‘

    Row 10 displays: <?php

    Plugin Author Marcel Pol

    (@mpol)

    If you add it to the functions.php of the theme, you don’t need the <?php and <? opening and closing tags.

    YOu do have to make sure that the characters get pasted correctly. This forum will make html entities, but you do need the (”) characters for real.

    Thread Starter daanboer

    (@daanboer)

    Doesn’t fix it… 🙁

    Plugin Author Marcel Pol

    (@mpol)

    Then I don’t really know, sorry.
    Maye you can ask the theme author?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Vreemde Weergave Plugin’ is closed to new replies.