• Resolved logicgame1001

    (@logicgame1001)


    Hi, i using gwolle guestbook on many of my page. But each page using a unique guestbook. Right now I using your script to change the ‘Write an entry’ button text to something else. Is that possible to change the text on a specific guestbook?

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

    (@mpol)

    Hi,
    In the hook you can have a check for the page ID, like this. Is that okay for you?

    function my_gwolle_gb_button_text( $button_text ) {
    
    	if ( is_page( 42 ) ) {
    		$button_text = esc_attr('Write a new message.');
    		return $button_text;
    	}
    	$button_text = esc_attr('Write a new entry.');
    	return $button_text;
    }
    add_filter( 'gwolle_gb_button_text', 'my_gwolle_gb_button_text', 10, 1 );
    
    Thread Starter logicgame1001

    (@logicgame1001)

    Its worked perfectly!! Thanks alot. Really appreciate the fast reply

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

The topic ‘Edit button text for specific guestbook’ is closed to new replies.