Topic RSS
Building a site for greeting cards. When an product is selected to appear in multiple categories (boxed sets and holidays), how do I put a seperator between them? Right now it appears like this:
SITE › Boxed Sets Holiday Cards Products › Item1
I'd like for boxed sets, holiday cards, and products to at least have a seperator so they don't blend together.
It's a pretty easy fix.
Just make a small line change in a Market Theme file.
1. Open up your "single.php" file.
2. On or around line #53, you'll see this line:
<?php echo the_category(' ') . ' › ' . get_the_title(); ?>Change it to this:
<?php echo the_category(' | ') . ' › ' . get_the_title(); ?>
(you can change the "|" to whatever you like, such as a colon ":")
3. Save the file.
Ok – different site now and the breadcrumbs work for products and subcategories, but not for pages and their sub levels. For instance, in this site: http://ravenhousepublishing.com when you click on artists there are sub-pages for each artist. But when you click on the artist's name, it only shows the primary domain and their name (not the page "above it" called artists).
That's a good catch.
That is caused by an update in Wordpress coding.
Here's the change:
1. Open up the Market Theme file "single.php" for editing. (You can do it through the Wordpress theme editor tool if you like, located under the "Appearance" menu tab in your Wordpress admin area.)
2. On or around lines #378 where it says:
<?php the_category(' '); ?>
›
<?php the_title(); ?>Change this text to this:
<?php echo the_category(' '); ?>
›
<?php get_the_title(); ?>and save the file. That should do it.
Most Users Ever Online: 40
Currently Online:
23 Guest(s)
Currently Browsing this Page:
1 Guest(s)
Member Stats:
Guest Posters: 428
Members: 2252
Moderators: 1
Admins: 1
Forum Stats:
Groups: 1
Forums: 4
Topics: 2983
Posts: 16042
Newest Members: Allsed, deleteduser, shanm, slidesketch, jimharrison, vmi
Moderators: Market Admin (5051)
Administrators: Market Admin (5051)

Log In
Register
Home
Offline

