test
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • Pankaj Sharma Moderator
    #917791

    Hi Blog layout has intro text limit .
    Changes :
    file "/html/com_content/category/blog_item.php" in template "ja_playstore".

    Find

    $this->item->introtext = substr(strip_tags($this->item->introtext), 0, 200);
            $this->item->introtext = substr($this->item->introtext, 0, strrpos($this->item->introtext, ' ')) . " ...";
            echo $this->item->introtext;

    replace it with

      $this->item->introtext = $this->item->introtext;
            echo $this->item->introtext;

    Save and check .

    smartmax Friend
    #917937

    Perfect Pankaj!!
    Is it also possible on the homepage?
    Cause there it still is

    Pankaj Sharma Moderator
    #917940

    Hi
    Yes Apply the same solution for Home page .
    Path of file : /html/com_content/featured/default_item.php

    smartmax Friend
    #918012

    ah!

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 2 voices, and was last updated by  smartmax 8 years, 8 months ago.

The topic ‘No (…) in intro text ?’ is closed to new replies.