• Resolved zabot

    (@zabot)


    Hey Everyone! Just wanted to say thanks for everyone who reads this and tries to help! Posting on forums is always a last resort for me. I’ve been working on a wordpress site for a client for a little over 3 weeks now. I’m extremely new but know my way around code a bit so that helped. (used to run some custom servers for Ultima Online, for any oldschool vets out there!) Anywho, I do most of my searching on Google and reading plugin reviews using anything I can before I turn here. I’ve seen a few different responses out there and tried a couple but none seemed to work for me.

    So my question is, where do I edit in order to get rid of the “Bookmark the Permalink” line inside of my post pages. I’m utilizing them for something different and it needs to be gone. I’ve checked in the theme options and settings and nothing is given to remove them.

    I would think at this point it would either be the functions.php or content-single.php but I am unsure. I’ve seen lots of people utilizing this code but I don’t know where to put it!

    .entry-utility {
    display: none;
    }

    Thanks!

    • This topic was modified 7 years, 6 months ago by zabot.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter zabot

    (@zabot)

    I figured it out. For anyone else trying to figure out this issue here is what you do. Navigate to your zerif-lite folder and find the file “content-single.php” then find this line of code.

    $meta_text = __( 'Bookmark the <a href="%3$s" rel="bookmark">permalink</a>.', 'zerif-lite' );

    replace it with this:

    $meta_text = __( '<a href="%3$s">', 'zerif-lite' );

    Essentially you are just removing the text and bookmarking code, which just makes it “disappear.” worked very nice for me.

    Any questions feel free to ask!

    • This reply was modified 7 years, 6 months ago by zabot.

    Thank you! This also works with other themes, just look at the original $meta_text, and check the last section (in this case: 'zerif-lite' ); ) and leave that in. Then you only need to add: $meta_text = __( '<a href="%3$s">', in front of it to make it work.

    • This reply was modified 7 years, 2 months ago by danielboven.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Where do I remove “Bookmark the Permalink?”’ is closed to new replies.