-
AuthorPosts
-
zorroh Friend
zorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
May 26, 2015 at 4:25 am #206631is there any way how to list my articles with link (user my articles)
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 26, 2015 at 5:17 pm #571798Your question is difficult to understand.
A illustrated screenshot of what you are trying to do would be of help for me to understand and I would be able to help you out then.
zorroh Friendzorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
May 26, 2015 at 9:07 pm #571827in multiuser system every user posts some articles…
how to make menu link where you see your own articles what is posted by you? so every user can list his/her own articles.
zorroh Friendzorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
May 26, 2015 at 9:07 pm #736873in multiuser system every user posts some articles…
how to make menu link where you see your own articles what is posted by you? so every user can list his/her own articles.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 27, 2015 at 4:30 pm #572000I’m afraid that at this moment Joomla doesn’t support to list articles for specific user like that.
You can use CCK component for Joomla like K2… to have that feature
zorroh Friendzorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
June 5, 2015 at 7:11 pm #573085k2?:confused: you must be joking? Teline V is build without K2! tell me please what is the point of Teline V if i will now use K2? what was the point then to create that extra cool content CCK for Teline V if we cant use it?
news magazine means lot of users, columnists, bloggers, editors etc.
where they can manage their own articles?zorroh Friendzorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
June 5, 2015 at 7:11 pm #738118k2?:confused: you must be joking? Teline V is build without K2! tell me please what is the point of Teline V if i will now use K2? what was the point then to create that extra cool content CCK for Teline V if we cant use it?
news magazine means lot of users, columnists, bloggers, editors etc.
where they can manage their own articles?Arvind Chauhan ModeratorArvind Chauhan
- Join date:
- September 2014
- Posts:
- 3835
- Downloads:
- 74
- Uploads:
- 92
- Thanks:
- 1240
- Thanked:
- 1334 times in 848 posts
June 8, 2015 at 10:21 am #573279Hi Zorroh,
Hope the solution below works for you, thats what we are using on Joomlart.com . I am checking if we can extend this option as a easy to use feature instead of hacking files.
Regards
Arvind Chauhan ModeratorArvind Chauhan
- Join date:
- September 2014
- Posts:
- 3835
- Downloads:
- 74
- Uploads:
- 92
- Thanks:
- 1240
- Thanked:
- 1334 times in 848 posts
June 8, 2015 at 10:21 am #738307Hi Zorroh,
Hope the solution below works for you, thats what we are using on Joomlart.com . I am checking if we can extend this option as a easy to use feature instead of hacking files.
Regards
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 8, 2015 at 11:33 am #573240I mean the list articles for specific user does not support under com_content by JOOMLA default and you can use CCK component for joomla, I will help you to do that.
If you want to run JA Teline V with the list articles for specific user, you can work with category blog, you can try to use temporary the solution below
Open plugins/system/jacontenttype/models/items.php file and under getListQuery function and add script below
// Add filter by author_id
$filter = explode('_', JFactory::getApplication()->input->get('filter'));
if (count($filter)<2) $filter[1] = '';
$this->setState('filter.author_id', $filter[0]=='author' ? $filter[1] : '');
$this->setState('filter.tag_id', $filter[0]=='tag' ? $filter[1] : '');
// end filter
see the screenshot
and you call it from URL of your site with format: your_domain/category_name?filter=author_
-
1 user says Thank You to Ninja Lead for this useful post
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 8, 2015 at 11:33 am #738268I mean the list articles for specific user does not support under com_content by JOOMLA default and you can use CCK component for joomla, I will help you to do that.
If you want to run JA Teline V with the list articles for specific user, you can work with category blog, you can try to use temporary the solution below
Open plugins/system/jacontenttype/models/items.php file and under getListQuery function and add script below
// Add filter by author_id
$filter = explode('_', JFactory::getApplication()->input->get('filter'));
if (count($filter)<2) $filter[1] = '';
$this->setState('filter.author_id', $filter[0]=='author' ? $filter[1] : '');
$this->setState('filter.tag_id', $filter[0]=='tag' ? $filter[1] : '');
// end filter
see the screenshot
and you call it from URL of your site with format: your_domain/category_name?filter=author_
1 user says Thank You to Ninja Lead for this useful post
zorroh Friendzorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
June 8, 2015 at 2:42 pm #573314Ok. thank. Can you please guide me a bit. I modifed this file as you showed it here.
how exactly you call it from url?
i have root category for articles, it is named “Articles” – it contains several subcategories. i made menu link for root articles category, menu item type is category blog… link alias is now my-articles
so real link would be like this:
joomlart.com/my-articles?filter=Ninja-Lead_[45]anyway… i tryed different ways and it is not working for me 🙁
it shows articles, but it shows everyone articles…
zorroh Friendzorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
June 8, 2015 at 2:42 pm #738342Ok. thank. Can you please guide me a bit. I modifed this file as you showed it here.
how exactly you call it from url?
i have root category for articles, it is named “Articles” – it contains several subcategories. i made menu link for root articles category, menu item type is category blog… link alias is now my-articles
so real link would be like this:
joomlart.com/my-articles?filter=Ninja-Lead_[45]anyway… i tryed different ways and it is not working for me 🙁
it shows articles, but it shows everyone articles…
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 9, 2015 at 3:59 am #573387You can see the sample from joomlart site with with author name: http://www.joomlart.com/blog/arvind and http://www.joomlart.com/blog/hung-dinh
with author id: your_domain/category_name?filter=author_
author id: you can check from
+ Author:
+ User Profile
Ex: your_domain/category_name?filter=author_42
-
zorroh Friend
zorroh
- Join date:
- November 2006
- Posts:
- 422
- Downloads:
- 20
- Uploads:
- 43
- Thanks:
- 88
- Thanked:
- 80 times in 1 posts
June 22, 2015 at 1:10 pm #575059yes, i know how to get user name and id. but its not working.
i have made category blog under menu link http://mydomain.com/articles
so i add for that link ?filter=author_73
complete link is http://mydomain.com/articles?filter=author_73
i also tested this link http://mydomain.com/articles?filter=zorrroh_73i also tried with subcategory “eesti”
http://mydomain.com/articles/eesti?filter=author_73
http://mydomain.com/articles/eesti?filter=zorroh_73
http://mydomain.com/eesti?filter=author_73
http://mydomain.com/eesti?filter=zorroh_73
—-
@ninja Lead, You example is: your_domain/category_name?filter=author_id-nr
“category_name” – is it a menu link or not? -
AuthorPosts
This topic contains 16 replies, has 3 voices, and was last updated by zorroh 9 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum