• Hi!

    The problem from this thread is still valid. I can use the workaround of disabling the “read more” button, but I actually like it and would like to keep it.

    Can’t this be resolved somehow?

    Thanks.

    Kind regards

    Dennis

Viewing 1 replies (of 1 total)
  • Hi Dennis,

    Today I’ve found a bug regarding the not disappearing Read More button when viewing a post as a single item. I’m using a non-English version of WordPress (nl_NL) that causes a function to return the wrong result. I fixed it by adding the following code to my child theme’s functions.php:

    function suevafree_get_archive_title() {
    
    	if ( get_the_archive_title()  && ( get_the_archive_title() <> 'Archief' ) ) :
    
    		return get_the_archive_title();
    
    	endif;
    
    }

    “Archief” should be replaced with the translation of ‘Archives’ in your language. Hopefully this will be fixed in a future version.

    Kind regards

    Jos

Viewing 1 replies (of 1 total)
  • The topic ‘Readmore-Problem still persists’ is closed to new replies.