Viewing 14 replies - 1 through 14 (of 14 total)
  • Can you please post a link to your site instead of a picture? It’s easier to examine the site with a web debugging tool and see what the underlying structure is. Thanks.

    Thread Starter gamejump

    (@gamejump)

    its a adult site guys

    i am using twenty twelve theme

    Please help by see ing that theme code to remove

    Look in the functions.php file for the word “tagged” and you should be able to see where to make the change.

    Thread Starter gamejump

    (@gamejump)

    that functions.php removed tahs from all pages

    i want to remove only from home and keep the tags as it is on single post

    OK, change your functons.php back to the original state, then add this CSS rule to either your child theme’s style.css file (if you created a child theme) or use a CSS plugin like Jetpack or Custom CSS Manager:

    .home .entry-meta {
       display: none;
    }

    This will hide that line completely on the home page.

    Thread Starter gamejump

    (@gamejump)

    Thanks for quick reply

    but its not working

    Are you using some sort of caching plugin or SEO plugin? You’ll want to deactivate any such plugins while you’re making changes, then reactivate them. You’ll also want to clear your own browser’s cache by hitting Ctrl-F5.

    Thread Starter gamejump

    (@gamejump)

    just did that no changes of anything i can see

    Hmm, well, that CSS worked on my TwentyTwelve test site, so I’m not sure what to tell you without being able to actually visit your site. Did you add it through a custom CSS plugin or to a child theme style.css file?

    Thread Starter gamejump

    (@gamejump)

    See added your line in child css

    Looks OK. So your child theme is active, I assume. Can you also try changing it to look like this:

    .home footer.entry-meta {
       display: none;
    }

    Thread Starter gamejump

    (@gamejump)

    Still the same no change

    Thanks again

    Can you open your site in Chrome, right-click on that line, then select Inspect element from the pop-up menu. Chrome DevTools will open up at the bottom of the browser window. Does the line that’s highlighted on the left look like this:

    <footer class="entry-meta">...</footer>

    Thread Starter gamejump

    (@gamejump)

    Hello

    i think the footer one is fixed the issue

    Thanks alot

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Remove Tags From Index Page Twenty Twelve’ is closed to new replies.