Dear Team Enfold,
I love the updates! They provide solutions to problems I’ve struggled with in earlier versions.
My services are design and motion graphics and I use pages with portfolio assets on my site to showcase these skills, but in the last year I’ve been hired to write scripts and short fiction stories. What is best practices to showcase these, posts or portfolio or pages? I love the category and sortability of portfolios, but I want the social sharing aspects of posts. What is best for enduser and seo?
Please advise and keep up the great work.
JustinCGordon
Hi Justin!
You can enable sharing on portfolio posts as well. Please see – http://kriesi.at/documentation/enfold/enable-social-share-section-for-pages/ :)
Cheers!
Yigit
Yigit,
thanks for the response, but what file do I put this on? Can I just put it in a text box on the page I want to be shared or do I have to create a template for say “Fiction” portfolio pages and then add it to the template?
Please advise,
Justin C
Hey!
Add this to the functions.php file if you chose to use the portfolio items:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
function avia_add_social_toolbar_template_builder($content = "")
{
if(is_singular('portfolio')) {
$content .= avia_social_share_links(array(), false);
$content .= '';
}
return $content;
}
Best regards,
Ismael