I think Module 1 is the only module that displays the ENTIRE post content, is this right?
I like Module Search (td_module_search.php) for category pages but it’s not showing my entire post. I’m using the tab shortcode in each post with 3 tabs, but the Module Search is only showing the second tab text content and not the actual tabs.
What do I need to edit in td_module_search.php? Thanks.
In td_module_5.php replacing
$buffy .= $this->get_excerpt(td_util::get_option('tds_mod5_content_excerpt'));
with
$buffy .= $content = apply_filters('the_content', get_the_content());
$content = str_replace(']]>', ']]>', $content);
Makes the home page not load, I tried using just the_content but that doesn’t work.
Hi,
you can try this:
http://screencast.com/t/06pWbvHQZ
$content = get_the_content(__td('Continue', TD_THEME_NAME));
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
$buffy .= $content;
Radu O.
That worked, thanks!
What’s the reason you disabled the Accordion in Visual Composer? I think you need to update VC because I turned on the Accordion and there’s an issue with autoheight for the content of each accordion section, if the tallest content block is for example 200px then ALL accordion content is set to that same height no matter what, this is wrong & I think it was fixed in the latest version of VC. Also the plus/minus icons are not showing up.