Reply To: Print guestbook entries whitout additional texts + questions about shorcuts

Home Forums Guestbook Add-On Print guestbook entries whitout additional texts + questions about shorcuts Reply To: Print guestbook entries whitout additional texts + questions about shorcuts

#8758
Marcel Pol
Keymaster

Hi Mjasa,

With version 4.5.0 of the main plugin there is now also print CSS added. Thank you for the feedback.

For both other questions, the answer would be no. If you want that, it would require some extra programming.

For the total entries, a shortcode would work. The next code can be put in your own plugin or in functions.php of your theme, preferably a child theme.

function shortcode_gwolle_gb_get_total_entries() {
	if ( function_exists( 'gwolle_gb_get_total_entries' ) ) {
		return gwolle_gb_get_total_entries( '', array() );
	}
}
add_shortcode( 'shortcode_gwolle_gb_get_total_entries', 'shortcode_gwolle_gb_get_total_entries' );