- Posts: 2
- Thank you received: 0
Scroller show "enter contetn" message
13 years 11 months ago #13272
by ggspike
Scroller show "enter contetn" message was created by ggspike
In the backend:
I enterd 2 articles, set the "How Many Articles to get from Section/Category" field to 2.
On the front end i get the following msg after my 2 news:
Please enter content source in the module parameters (Joomla backend > Extensions > Module Manager > HOT Scroller). You can select category or enter articles IDs. If you'd like to enter articles IDs, please keep category field unselected.
How can i remove this message?
By the Way, the scroller don't stop on mouse over with IE8
Thks, GG
I enterd 2 articles, set the "How Many Articles to get from Section/Category" field to 2.
On the front end i get the following msg after my 2 news:
Please enter content source in the module parameters (Joomla backend > Extensions > Module Manager > HOT Scroller). You can select category or enter articles IDs. If you'd like to enter articles IDs, please keep category field unselected.
How can i remove this message?
By the Way, the scroller don't stop on mouse over with IE8
Thks, GG
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 11 months ago #13286
by ivan.milic
Replied by ivan.milic on topic Re: Scroller show "enter contetn" message
Open modules\mod_hot_scroller\tmpl\default.php
you will find this:
if (!$where_id) {
echo "Please enter content source in the module parameters (Joomla backend > Extensions > Module Manager > HOT Scroller). You can select category or enter articles IDs. If you'd like to enter articles IDs, please keep category field unselected.";
}
replace it with this:
if (!$where_id) {
echo "";
}
you will find this:
if (!$where_id) {
echo "Please enter content source in the module parameters (Joomla backend > Extensions > Module Manager > HOT Scroller). You can select category or enter articles IDs. If you'd like to enter articles IDs, please keep category field unselected.";
}
replace it with this:
if (!$where_id) {
echo "";
}
Please Log in to join the conversation.
Time to create page: 0.197 seconds