- Posts: 12
- Thank you received: 0
Featured Articles Double Show
-
SemperAndroid
Inactive member - Topic Author
- Offline
- New Member
-
Less
More
15 years 1 month ago #6473
by SemperAndroid
Featured Articles Double Show was created by SemperAndroid
Hi,
When I create a Featured Article, it shows twice on the home page. I am using the Sports template. Any idea what is causing this or how I can track it down?
Thanks
When I create a Featured Article, it shows twice on the home page. I am using the Sports template. Any idea what is causing this or how I can track it down?
Thanks
Please Log in to join the conversation.
-
SemperAndroid
Inactive member - Topic Author
- Offline
- New Member
-
Less
More
- Posts: 12
- Thank you received: 0
15 years 1 month ago #6475
by SemperAndroid
Replied by SemperAndroid on topic Re: Featured Articles Double Show
Fix for this is in SQL
file
components/com_content/models/articles.php
line 207 , is joining the item on user_id instead ID , if same user is selected for more than 1 contact the user_id will be same for both contacts
change
$query->join('LEFT','#__contact_details AS contact on contact.user_id = a.created_by');
to
$query->join('LEFT','#__contact_details AS contact on contact.id = a.created_by');
file
components/com_content/models/articles.php
line 207 , is joining the item on user_id instead ID , if same user is selected for more than 1 contact the user_id will be same for both contacts
change
$query->join('LEFT','#__contact_details AS contact on contact.user_id = a.created_by');
to
$query->join('LEFT','#__contact_details AS contact on contact.id = a.created_by');
Please Log in to join the conversation.
Time to create page: 0.157 seconds