• Hi there,

    first of all: I LOVE YOUR PLUGIN!

    The only thing that I didn’t find is an option for the breadcrumb to show the current page at the end of the breadcrumb.

    See here: https://member.daniel-knoden.de/kurs/die-content-formel/

    The current page should be “Die Content Formel”.
    So the breadcrumb should be:
    “Home” -> “Kurse” -> “Die Content Formel”

    Instead the breadcrumb shows only:
    “Home” -> “Kurse”

    It’d be awesome to know how i can achieve this ??

    Best,
    Daniel

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi… did you find a solution for this?

    Thread Starter danielkndn

    (@danielkndn)

    @normsash no, not yet! I guess the developer doesn’t focus that much on that feature… Hopefully in the future…

    I was able to get done what I wanted by putting in the breadcrumb shortcode followed by the WP Post Title. I had to do a bit of css to get it to be right, but it’s working. It would, of course, be good if it was built into the Uncanny options.

    Hi Daniel — I don’t think it’s possible to do this with the shortcode itself, but if you know a little HTML & CSS, you can try the solution I proposed to Norm in this post.

    But instead of <span>...Enjoy!</span>, you could add something like this:

    <span itemscope="" itemtype="https://schema.org/Breadcrumb">
    	<a href="[URL_TO_COURSE_PAGE]" class="trail-begin">
    		<span itemprop="[COURSE_TITLE]">[COURSE_TITLE]</span>
    	</a>
    </span>

    That mimics the breadcrumb format that the shortcode uses, but you’re essentially using your own HTML. Then style it appropriately with CSS.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Breadcrumb including the current page’ is closed to new replies.