Tagged: Portfolio
Hi, how do I get the ‘share with’ buttons that you have for blog posts to also display on the ‘portfolio’ custom post types?
Thanks, Richard
Hey Richard!
Please refer to Peter’s post here – https://kriesi.at/support/topic/share-icons-on-pages-and-portfolio-items/#post-260646
Best regards,
Yigit
Thanks, this works.
However, I would like these buttons to appear only on posts, not on all pages.
I tried changing
if($context == “page” || $context == “single-portfolio”)
to:
if($context == “single-portfolio”)
but the buttons still show on pages.
Thanks, Richard
Hey!
Please try the code Ismael posted here – https://kriesi.at/support/topic/set-social-share-icons-manually/#post-282080
Regards,
Yigit
Great, thanks Yigit.
Is there any control over the style of the social sharing icons, or where they appear on the page?
Thanks, Richard
Hi Richard!
What would you like to change exactly?
Regards,
Josue
I was thinking it would be good to have them as smaller icons closer to the page content, as they could be missed like that at the bottom of the page.
It would be useful to have a media element in your avia builder to allow ‘share’ icons to be placed anywhere on a post…
Thanks, Richard
Hey!
Try adding this code to the Quick CSS:
.av-share-box {
margin-top: 10px;
}
.av-share-box .av-share-link-description{
margin-bottom: 8px;
}
.av-share-box ul li a{
padding: 5px 0;
}
Cheers!
Josue
Thanks Josue