• Resolved ilyapokrov

    (@ilyapokrov)


    Tell me, how can I change the breadcrumbs and delete some of the text.
    For example, now it is displayed like this:
    Home – Men – Men’s clothing – Men’s outerwear – Men’s jackets
    It should be reflected like this:
    Home – Men – Clothes – Outerwear – Jackets

    That is, I understand that for this you need to write code in functions.php that will look like this:

    str_replace (
    array(
    	'Men's',
    	'Women's',
    	'Children's'),
    array(
    	'',
    	'',
    	''),
    )

    But I can’t figure out how to arrange it correctly. Can you help me with this?
    thank you in advance!

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