Remove Last Breadcrumb Link in Source Code

Hi,

I had you guys help me on this:

Wondering how to remove this link from the source code?

Hey @prodsans,

Adding this code in Theme Options > JS should work:

jQuery(function($) {
	$('.x-crumbs-current').contents().unwrap().wrap('<span/>');
})

Just note that this is considered as theme modification because there’s currently no option for this. The custom code should only serve as a guide. It is recommended that you learn the actual functions used in the code.

Hope that helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.