• Resolved Nate Hoffelder

    (@usersixsixsix)


    A client wants to display the various series without the word Series in front of each one. How do we remove it?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author mooberrydreams

    (@mooberrydreams)

    The following code should give you what you want. You will need to add this to the functions.php file of your child theme, or in a custom plugin that you create.

    add_filter('mbdb_book_grid_heading', 'mbdb_change_series_grid_header');
    function mbdb_change_series_grid_header($header) {
    	return str_replace('Series: ', '', $header);
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How do i remove the word “Series” on the bookshelf pages?’ is closed to new replies.