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);
?>
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
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.
Then I don’t really know, sorry.
Maye you can ask the theme author?