User Dashboard -> Ad category was not displaying
Not sure if this is just me, but I wanted to pass it along. I noticed that when I went into the User Dashboard to view my posted ads, the Category link that should be listed under the title was not displaying.
I went ahead and updated "the_category" function in tpl-dashboard.php on line 219.......I passed the post ID so it would render.
Code:
Original <?php the_category(', ') ?>
Updated <?php the_category(' > ',multiple,$post->ID) ?>