Tagged: ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #408419

    A stupid question:

    How do I edit the breadcrumbs?

    The problem:
    In my blog (see sample entry) the breadcrumbs aren’t listed the way they should be.
    In the English version http://schlachten.org/2015/02/28/filling-in-the-space/ the breadcrumbs read

    home / news / Filling-in the Space

    when I’d like it to show

    blog / news / Filling-in the Space

    In the German version http://schlachten.org/de/2015/02/28/filling-in-the-space-2/ the breadcrumbs read

    startseite / Der nächste Schritt

    when I’d like it to show

    blog / nachrichten / Der nächste Schritt

    Thanks

    #408676

    Hi danfarberoff!

    Thank you for using Enfold.

    Set the blog page as blog on Enfold > Theme Options > Where do you want to display blog? option.

    Best regards,
    Ismael

    #408721

    Hi Ismael

    This only works partially. In the English version I now have:

    home / blog / news / Filling-in the Space

    When it should be:

    blog / news / Filling-in the Space

    In the German version I there’s no “Where do you want to display blog?” in Enfold > Theme Options
    It still reads:

    startseite / Der nächste Schritt

    Thanks

    #408738

    I’ve managed to set the blog page option in the German version, via the Customizer. However, this ignores the “Use the advanced layout editor to build your own blog layout” in Enfold Child (DE) Theme Options > Blog Layout

    And I still get the ‘homepage’ or ‘startseite’ showing at the top of breadcrumb list.

    Thanks

    #408840

    Hi

    I’ve solved the ‘home’ / ‘startseite’ issue, removing them using CSS to hide the 1st element of the breadcrumb list.

    The problem I still have is with the German language version of the website (WPML):
    In ‘Enfold (DE) Theme Options’ there appears no “Where do you want to display blog?” option. If I use Appearance > Customize to select ‘blog’ as the blog page then the option “Use the advanced layout editor to build your own blog layout” in Enfold (DE) Theme Options > Blog Layout, is ignored.

    This seems to be a theme issue?

    Thanks

    #409652

    Hi!

    Is the German theme options translated to German? Some of the language files are not complete and it breaks the theme options. Try to disable the theme options translation. Add this to the functions.php file:

    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	function avia_lang_setup()
    	{
    		if(!is_admin())
    		{
    			$lang = apply_filters('ava_theme_textdomain_path', get_template_directory()  . '/lang');
    			load_theme_textdomain('avia_framework', $lang);
    		}
    	}
    }

    Set the blog page for the german version afterwards.

    Regards,
    Ismael

    #409817

    Thanks Ismael. That seemed to do the trick. Resolved.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Breadcrumbs Edit’ is closed to new replies.