• Resolved defdas2

    (@defdas2)


    Goodnight. I need help. Category and tag archive titles have disappeared on my website.

    Now only the taxonomic description of the tag or category appears. Without titles.

    In other sections of Sydney (like testimonials) the title of the feed does appear.

    I have tried css code like:
    .archive .tag .archive-title {
    display: inherit! important;

    But it does not work. Anyone having the same problem?

    Thanks!!

    • This topic was modified 2 years, 11 months ago by defdas2.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • @defdas2 thank you for reporting us this issue.

    As inspected, we found a bug with Sydney Toolbox plugin, that causes empty tag and archive titles. It indeed will be fixed shortly in upcoming release of the plugin.

    To fix it temporarily, edit the Sydney Toolbox plugin’s sydney-toolbox.php file. Find these lines:

    public function remove_archive_labels( $title ) {
    	if ( is_tax( 'project_cats' ) ) {
    		$title = single_cat_title( '', false );
    	} elseif ( is_archive( 'sydney-projects' ) ) {
    		$title = post_type_archive_title( '', false );
    	}
    	return $title;
    }

    Replace this part:

    is_archive( 'sydney-projects' )

    with:

    is_post_type_archive( 'sydney-projects' )

    Let me know whether this code change works for you or not.

    Regards,
    Kharis

    Thread Starter defdas2

    (@defdas2)

    Hello. The Sydney Toolbox plugin has just been updated (1.20) and now the tag titles and categories appear again in archives.

    Thanks for your help!

    @defdas2 great!

    You’re welcome! Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Missing archive-title (Tag & Category Archives)’ is closed to new replies.