Hi,
Yes, that is possible, it is listed in the FAQ:
https://wordpress.org/plugins/gwolle-gb/#how%20can%20i%20use%20multiple%20guestbooks%3F
You can add a parameter to the shortcode, like:
[gwolle_gb book_id="2"]
Please be aware that the multiple books is more an addition. Managing the guestbook entries is not split out, they are all in the same list.
Thank you for your reply. I have over 500 users and each one needs its own guestbook. Would I have to manually add the shortcode on each page?
That is possible.
It might be easier to add it to the template for the user profile, I think it is author.php of your theme, or preferably child theme.
You could use the template function like this:
if ( function_exists( 'show_gwolle_gb' ) ) {
show_gwolle_gb( array('book_id'=>2) );
}
Where the number for book_id can be a generated user_id of the author profile. It needs a bit of coding, but then it is automated.
If you use a custom post type for profile pages, you can also use it as:
[gwolle_gb book_id="post_id"]
or like this:
if ( function_exists( 'show_gwolle_gb' ) ) {
show_gwolle_gb( array('book_id'=>'postid') );
}
Does that help you?
Yes. Yes, it does. I will play with it and reply back with my findings. Whoot!!