Hi,
Is there any way of configuring portfolio pages to allow shortcodes to work?
I've tried using the example accordion and tabs but both just render the content as text when viewing the portfolio item.
Any help would be appreciated
Cheers
Simon
This issue is come from template file of portfolio details page.
Please open node--dexp_portfolio.tpl.php file under templates/node folder then replace <?php print $node->body[$language][0]["value"]; ?> (line 34) by <?php print render($content['body']);?>
Now you can use shortcode in the body field.
Thanks!
<?php print $node->body[$language][0]["value"]; ?>
(line 34) by<?php print render($content['body']);?>
Now you can use shortcode in the body field. Thanks!