Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #425104

    I searched but could not find an answer. Thanks in advanced.

    • This topic was modified 9 years ago by gtj007.
    #425489

    Hey gtj007!

    Try adding this to your custom CSS.

    .related-format-icon-inner:before {
      opacity: 0 !important;
    }

    Cheers!
    Elliott

    #425661

    Hello Elliott,
    That worked but it only removed the pencil mark and it still leaves a gross looking white circle. Is there another string of code I can use to remove that as well?

    Thanks.

    #425713

    Also, how can I delete the excerpt for a magazine? Right now I have a multi-language site and although it looks good on the English version, the character count is all out of whack with the Japanaese translation and looks bad. Can I edit the character count for Japanese only? Or how can I just turn the exceprt off?

    Thanks again.

    #426068

    Hey!

    1- Can you please post the link to your website where we can see the white circle?
    2- Please add following code to Functions.php file in Appearance > Editor and adjust excerpt lenght (100)

    add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
    function avf_magazine_excerpt_new_lenght($excerpt) {
    $excerpt = 100;
    return $excerpt;
    }

    Cheers!
    Yigit

    #427460

    1. Sorry I can’t post a link right now due to the site being under construction. But it just has the white circle for when you drag your mouse over it. The pencil mark is gone but the ugly circle remains.

    2. I added the code but I decided I just want to take the excerpt out completely, because I have my site translated into both Japanese and English and the Japanese character count is too long compared to the English. So could you please show me how to get rid of the magazine excerpt all together?

    Thanks

    #427746

    Hi!

    1- Please add following code to Quick CSS as well

    span.related-format-icon {
      display: none;
    }

    2- Please use the code i posted above and increase excerpt length a lot

    Cheers!
    Yigit

    #427962

    Thanks again Yigit. Problem one is solved but as for #2 even though I added the code and increased the length, it just made the excerpt longer, but still wouldn’t remove it.

    #428426

    Hi!

    If your just wanting to get rid of it then you can hide it with this CSS.

    .av-magazine-content {
      display: none;
    }

    Regards,
    Elliott

    #428590

    Perfect! That fixed it thanks Elliott! And thanks again Yigit for your help too. This is why I love Enfold and bought two copies!

    #428593

    Hi!

    You are welcome, we are always happy to help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Cheers!
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘How to get rid of pencil mark on "you may also like"’ is closed to new replies.