Multiple question.

Posted in: Newspaper
Post count: 22

Hi,

I need some help to customize the theme even more than before and for this i will need some help. Thanks in advance!

Problem 1: Google shows when the category page was created(i think this is the code time itemprop="dateCreated
I would like to completely REMOVE this from category pages!

Problem 2: https://forum.tagdiv.com/topic/hide-category-on-post-page/
Hiding categories on post page is still broken and i want to REMOVE it and not hide it via css(thanks for your help TheMediumUTM, but this is not what i wanted)

Problem 3: Im using the MS category template and its just funny. http://i.imgur.com/hK5kz4O.jpg
1. Below every post title there is a breadcrumbs. How to remove it?
Also i want to remove the Author hyper link and show only the author name.

  • This topic was modified 11 years by kacsa1337.
Post count: 388

For problem 2, if you want, you can hack it out of the single template files. What you would do is first make sure you have a child theme set up and activated. (You could do this in the Newspaper them itself, but it would not survive a theme update. Then again, hopefully an update will allow you to disable categories via the panel.)

Then, for each of the following files in the Newspaper theme folder:

loop-single.php, loop-single-1.php, single_template_2.php, single_template_3.php, single_template_4.php, single_template_5.php

Copy and paste them into your child theme folder.

In each one, find the line:

<?php echo $td_mod_single->get_category();?>

and comment it out like this:

<?php // echo $td_mod_single->get_category();?>

Upload the files to your site. Your template files will no longer add the category element to your posts.

Happy editing and hope someone else stops by to help with the other problems!

Post count: 6600

Hi,

1. The time tag it’s added by get_date function which it’s called on every module. You can remove the date from from the module you are using for the category page, like this: http://screencast.com/t/nzttCraRaQuE or you can remove this completely from here: http://screencast.com/t/CtoAaM8Y0zd

2. Like @TheMediumUTM suggested.

3. For the breadcrumbs remove this: http://screencast.com/t/FPpVl0VOvAi
For the author remove this: http://screencast.com/t/EzAdQcMF

Result: http://screencast.com/t/XJgeevzK

Thanks

Post count: 22

Thanks.

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.