• Resolved epigrapisa

    (@epigrapisa)


    How can I remove the title from the pages, leaving them in the menu, just removing the titles when I open the pages and also where to insert a template in order to create a tag cloud page?

    thank you

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi epigrapisa,
    If you want to remove the page title in page then go to Appearance->Theme Options->Design Options-> Custom CSS and paste these css

    .page .entry-title, .page .entry-title a{
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE7 */
    clip: rect(1px, 1px, 1px, 1px);}

    Now if you want to show tag cloud in page, create child theme of clean retina and create a template in the child theme. In your page template use this code <?php the_widget( ‘cleanretina_custom_tag_widget’); ?>.
    Regards,
    Rabin( Team Horse )

    Thread Starter epigrapisa

    (@epigrapisa)

    thank you so much!

    Thread Starter epigrapisa

    (@epigrapisa)

    Hi, I need help again ?? I want to cancel the visualization of author, date and category from the articles. I know that I should modify page.php but I can’t find those parts that let me erase author, date and cathegory. Thanks for the help, kind regards

    Hi epigrapisa,
    You can do the same as done for page title. Just replace the above code with this in your custom css

    .page .entry-title, .page .entry-title a, .entry-meta{
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE7 */
    clip: rect(1px, 1px, 1px, 1px);}

    Regards,
    Team Horse

    Thread Starter epigrapisa

    (@epigrapisa)

    thank you so much!

    Hi Rabin Shrestha,
    What I want to do is remove the page title from Home Page and preserve the modification even after the theme update. I know I sud use child theme but dont know how to configure the child theme for the purpose.
    Please help me with this..

    Thank you

    Actually from the home Page only..I can do it without a child theme but not in a child theme..

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘remove title and tag cloud page’ is closed to new replies.