-
AuthorPosts
-
August 1, 2020 at 7:35 pm #1234521
Hello,
How can I remove or change Hn tag in the title “share this post” in bottom of posts ?
just above social network buttonBest regard
cmAugust 2, 2020 at 4:14 pm #1234642Hey 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,
NikkoAugust 2, 2020 at 7:37 pm #1234666Hello,
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
cmAugust 3, 2020 at 1:45 pm #1234848Hi 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,
NikkoAugust 14, 2020 at 12:16 pm #1237774Hi 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
cmAugust 17, 2020 at 4:38 am #1238334Hi 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,
NikkoAugust 19, 2020 at 3:35 pm #1239203This reply has been marked as private.August 20, 2020 at 4:23 am #1239358Hi 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.- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- 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 ). - Click ” Submit “.
- 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,
NikkoAugust 21, 2020 at 3:43 pm #1239813This reply has been marked as private.August 24, 2020 at 3:45 am #1240225Hi 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,
NikkoAugust 25, 2020 at 5:07 pm #1240709This reply has been marked as private.August 27, 2020 at 6:17 am #1241091Hi 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,
NikkoSeptember 6, 2020 at 9:34 am #1243702This reply has been marked as private.September 7, 2020 at 8:06 am #1243862Hi cm,
Can you give us a screenshot?
I have checked the links you gave and could not see any dates.Best regards,
NikkoSeptember 7, 2020 at 11:15 am #1243908This reply has been marked as private.September 7, 2020 at 12:45 pm #1243960Hi 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,
NikkoSeptember 7, 2020 at 12:54 pm #1243963This reply has been marked as private.September 7, 2020 at 1:03 pm #1243967This reply has been marked as private.September 7, 2020 at 1:06 pm #1243969Hi 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,
NikkoSeptember 7, 2020 at 1:21 pm #1243972This reply has been marked as private.September 7, 2020 at 1:50 pm #1243979Hi 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,
NikkoSeptember 7, 2020 at 2:53 pm #1243998This reply has been marked as private.September 8, 2020 at 2:54 am #1244117Hi 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 wholefunction 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 -
AuthorPosts
- You must be logged in to reply to this topic.