Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • ivavia Friend
    #997129

    Hello, I’m having problem dealing with intro texts on gallery and video lists. Please check the attachment, I can’t find how to set the intro text limit. The slider always shows full intro text while some articles in container shows full length, but others only 10 or so words. What am I doing wrong? What I want to do is to always have FULL intro text below every article picture. Thanks for your help.

    URL is: http://kasovci.com/index.php/multimedija/galerija


    1. Untitled-1-2
    Ninja Lead Moderator
    #997261

    Hi,

    Kindly have a look at my screenshot: http://prntscr.com/dnw8it you can change the Introtext Limit option on your site

    Regards

    ivavia Friend
    #997416

    But I don’t have the module "Featured articles". My video and gallery lists are category lists and menu items, I don’t have any modules published. 🙁

    If it’s too much to customize intro text, can I hide intro texts completely?

    Ninja Lead Moderator
    #997520

    Hi,

    You can give me the admin login backend of your site via private reply. I will check it for you

    Regards

    ivavia Friend
    #997631
    This reply has been marked as private.
    ivavia Friend
    #997685
    This reply has been marked as private.
    Ninja Lead Moderator
    #997758

    Hi,

    You can find the code limit the intro text from gallery and movie on your site

    • Gallery
      Open templates/ja_moviemax/html/com_content/category/gallery_item.php file
    $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;
    • Movie

    Open templates/ja_moviemax/html/com_content/category/movie_item.php file

    $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;

    and you can change the number: 200 on that code

    Regards

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

This topic contains 6 replies, has 2 voices, and was last updated by  Ninja Lead 7 years, 10 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum