Hi Marlene,
Thanks for reaching out.
In order to display the category description after the title, paste this snippet into your functions.php file:
function category_description_below_title() {
if ( tribe_is_photo () ) echo '<div class="category-description" style="text-align: center;">' . category_description() . '</div>';
}
add_action( 'tribe_events_after_the_title', 'category_description_below_title' );
This will add the description in the photo view. If you would like to add it to all views, then remove this part:
if ( tribe_is_photo () )
You can format the category description with css using the .category-description class. And of course, you can further adjust the function for your needs.
As for your second request, that looks a bit more complicated. Please give me some time to look into that a bit.
Cheers,
Andras
-
This reply was modified 9 years, 8 months ago by
Andras.
-
This reply was modified 9 years, 8 months ago by
Andras.