- Posts: 75
- Thank you received: 0
carousel
-
Mike1
Inactive member - Topic Author
- Member
Less
More
11 years 2 weeks ago #35341
by Mike1
Im trying to add another item to the carousel i have looked at the demo and tried to add an article it does not appear do you have instructions anywhere also wen i click on the demo article in the carousel it doesnt open to a new page the article appears below the inset location ----how can i make it open to its own page thank you )
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 1 week ago #35355
by ivan.milic
Replied by ivan.milic on topic carousel
If you have it set up as by default - content source is category, you just need to add article to that category. Also what may be the cause of not displaying it is article count limit parameter and parameter that controls wither front page articles are shown or not.Check them
Please Log in to join the conversation.
-
Mike1
Inactive member - Topic Author
- Member
Less
More
- Posts: 75
- Thank you received: 0
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 11 months ago #35688
by ivan.milic
Replied by ivan.milic on topic carousel
You would need to edit:
modules\mod_hot_joomla_carousel_pro\mod_hot_joomla_carousel_pro.php
this:
modify it like this:
modules\mod_hot_joomla_carousel_pro\mod_hot_joomla_carousel_pro.php
this:
Code:
if ($display != 0 || $more) {
if ($display != 0) {
$output .= '<div>'.$row->text.'</div>';
$output .= "\n"; //line break
}
if ($more) {
$output .= '<a class="readon" href="'.$link.$customItemIDHTML.'">'.JText::sprintf('Read more...').'</a>';
$output .= "\n"; //line break
}
}
modify it like this:
Code:
if ($display != 0 || $more) {
if ($more) {
$output .= '<a class="readon" href="'.$link.$customItemIDHTML.'">'.JText::sprintf('Read more...').'</a>';
$output .= "\n"; //line break
}
if ($display != 0) {
$output .= '<div>'.$row->text.'</div>';
$output .= "\n"; //line break
}
}
Please Log in to join the conversation.
-
Mike1
Inactive member - Topic Author
- Member
Less
More
- Posts: 75
- Thank you received: 0
Time to create page: 0.082 seconds