Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #1234521

    Hello,

    How can I remove or change Hn tag in the title “share this post” in bottom of posts ?
    just above social network button

    Best regard
    cm

    #1234642

    Hey ChrisCoach,

    Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .av-share-link-description {
        display: none;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1234666

    Hello,

    Gook idea but unfortunately not.
    in the source code you’ll see <h5> partager cet article </h5> but not display. It very bad for SEO.
    How can I remove tag Hx or this sentences, I don’t want to see in the code ?

    Brest regard
    cm

    #1234848

    Hi cm,

    I understand.
    You’ll need to remove this in the enfold theme files.
    Go to wp-content > themes > enfold > includes > helper-social-media.php (line 518-520 in Enfold 4.7.6.1) and remove this code:

    $this->html .= 		"<{$heading} class='av-share-link-description av-no-toc {$css}'>";
    $this->html .=			apply_filters( 'avia_social_share_title', $this->title , $this->args );
    $this->html .= 		"</{$heading}>";

    Best regards,
    Nikko

    #1237774

    Hi Nikko,

    Yes, thank you, it’is good.
    in the same idea, in the previous post my request to remove Time and date in the post you wrote :

    /*Add your own styles here:*/
    /* to remove post date */
    time,
    .av-masonry-date {
    display:none!important;
    };

    to not display it is ok but is it possible to remove complete the date time in the post because in the SERP I read in the metadescription the date and time of the post (in the result of search google)

    best regard
    cm

    #1238334

    Hi cm,

    Please add this code in your child theme’s functions.php:

    function enfold_post_format($key) {
        $key['date'] = '';
        return $key;
    }
    
    add_filter('post-format-gallery', 'enfold_post_format');
    add_filter('post-format-link', 'enfold_post_format');
    add_filter('post-format-image', 'enfold_post_format');
    add_filter('post-format-quote', 'enfold_post_format');
    add_filter('post-format-standard', 'enfold_post_format');
    add_filter('post-format-video', 'enfold_post_format');
    add_filter('post-format-audio', 'enfold_post_format');

    Let us know if this helps :)

    Best regards,
    Nikko

    #1239203
    This reply has been marked as private.
    #1239358

    Hi cmd,

    The date only appears when you use posts but not on others.
    If on posts I think it’s only logical because people would want to know when that post was published and on portfolio I think it shouldn’t appear because you showcase an item which date is irrelevant.
    The code I gave should work since I have already tested it.
    If it does not work on your site, please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1239813
    This reply has been marked as private.
    #1240225

    Hi cm,

    I have tried the credentials but it’s not working and I’m getting this error:

    Identifiant inconnu. Vérifiez l’orthographe ou essayez avec votre adresse e-mail.

    Can you try to clear the cache? if you don’t have a plugin cache, maybe there’s an internal caching from your server.

    Best regards,
    Nikko

    #1240709
    This reply has been marked as private.
    #1241091

    Hi ChrisCoach,

    Thanks, it works now.
    I tried to check again on your homepage and the code does work. The masonry there doesn’t have the av-masonry-date.

    Best regards,
    Nikko

    #1243702
    This reply has been marked as private.
    #1243862

    Hi cm,

    Can you give us a screenshot?
    I have checked the links you gave and could not see any dates.

    Best regards,
    Nikko

    #1243908
    This reply has been marked as private.
    #1243960

    Hi cm,

    Thanks for the screenshot.
    I think that’s because Google is fetching from meta data which is generated by some SEO plugin.

    Best regards,
    Nikko

    #1243963
    This reply has been marked as private.
    #1243967
    This reply has been marked as private.
    #1243969

    Hi cm,

    Yes, I haven’t checked the backend of your site that’s why I’m not sure which one you’re using and just refer to it as some SEO plugin. :)
    If it’s yoast and I believe there are individual settings in each post where you can change.

    Best regards,
    Nikko

    #1243972
    This reply has been marked as private.
    #1243979

    Hi cm,

    I’m not really familiar with that plugin and I’m also not an expert in SEO but I think you can also check it there.
    If it’s not in rich snippet, please check in one of your posts, then Yoast SEO metabox, then Google preview, you should see that it includes the published date, I’m not sure if this can be changed but it’s better to ask support from Yoast SEO.

    Best regards,
    Nikko

    #1243998
    This reply has been marked as private.
    #1244117

    Hi ChrisCoach,

    I see, then please follow Mike’s instructions.
    If you need this change to be permanent (or atleast until a major change is done in helper-markup.php) then you can copy the whole

    function av_blog_entry_markup_helper( $id , $exclude = array() ) { ... }

    in functions.php of your child theme (in Enfold 4.7.6.3 it should be from line 312-427, then tweak the function as instructed by Mike.

    Best regards,
    Nikko

Viewing 23 posts - 1 through 23 (of 23 total)
  • You must be logged in to reply to this topic.