Show entire post content in module search?

Posted in: Newspaper
Post count: 13

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.

Post count: 13

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.

Post count: 13

And I’ve set all my Excerpts in the theme options to 999999 so it’s not that.

Post count: 13

Can I get a little help here? I really can’t move forward until this is done. Thanks.

Post count: 780

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.

Post count: 13

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.

Post count: 13

never mind, thought I fixed the accordion issues but I didn’t

  • This reply was modified 12 years by nate.
  • This reply was modified 12 years by nate.
Post count: 780

Hi,

We want to support all the shortcodes from the visual composer soon. But we need more time.

Viewing 8 posts - 1 through 8 (of 8 total)
The forum ‘Newspaper’ is closed to new topics and replies.