-
AuthorPosts
-
Tech-xml Friend
Tech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
September 17, 2015 at 4:38 pm #686004I made a change to remove the IDs that appear in the URLs of Joomla articles.
I changed the following file:
/public_html/components/com_content/router.php
I changed the lines 34 and 287
$advanced = $params->get('sef_advanced_link', 0);
for
$advanced = $params->get('sef_advanced_link', 1);
I usual do this in my Joomla sites. However the problem Teline found in two places:
1 – Events articles
2 – And in the categories of Menus
How can I fix this?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 18, 2015 at 4:57 am #686098Hi,
If you want to remove ID from URL in Joomla, you can use this way
+ Rollback all code change above into components/com_content/router.php on your site.
+ Open administrator/components/com_content/config.xml file and add sef_advanced_link option like my screenshot
<field name="sef_advanced_link"
type="radio"
default="1"
label="Sef Advanced Mode"
description="Remove ItemID from Content URL?">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
+ Go to backend site -> and click Options button from Article Manager and click Save again
Let me know if it helps
Regards
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 18, 2015 at 4:57 am #748954Hi,
If you want to remove ID from URL in Joomla, you can use this way
+ Rollback all code change above into components/com_content/router.php on your site.
+ Open administrator/components/com_content/config.xml file and add sef_advanced_link option like my screenshot
<field name="sef_advanced_link"
type="radio"
default="1"
label="Sef Advanced Mode"
description="Remove ItemID from Content URL?">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
+ Go to backend site -> and click Options button from Article Manager and click Save again
Let me know if it helps
Regards
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
September 18, 2015 at 9:15 pm #686435@ninja Lead
1 – The problem in the events section was resolved, was the category menu that was replaced.
2 – However the problem with sub menu categories, I think it’s a bug. I simulated the same changes that called on demo Teline, a clean installation, and the same problem occurred.
I temporarily solved the problem by creating hidden menus in the style category blog.
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
September 18, 2015 at 9:15 pm #749032@ninja Lead
1 – The problem in the events section was resolved, was the category menu that was replaced.
2 – However the problem with sub menu categories, I think it’s a bug. I simulated the same changes that called on demo Teline, a clean installation, and the same problem occurred.
I temporarily solved the problem by creating hidden menus in the style category blog.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 21, 2015 at 2:27 am #687235<em>@insofticursos 492958 wrote:</em><blockquote>@Ninja Lead
1 – The problem in the events section was resolved, was the category menu that was replaced.
2 – However the problem with sub menu categories, I think it’s a bug. I simulated the same changes that called on demo Teline, a clean installation, and the same problem occurred.
I temporarily solved the problem by creating hidden menus in the style category blog.
</blockquote>
Hi,
About the problem #2 of you mentioned above, it’s not bug from our product(JA Teline V template), In Joomla, if you want to view article individually, that article must be assigned to a menu item, create a new menu item (or use an existing one) and assign article (or category that article belongs to) to this new menu item and also make sure that you don’t assign any module to this menu item.
<blockquote>
I temporarily solved the problem by creating hidden menus in the style category blog.
</blockquote>This solution is correct in this case.
Regards
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 21, 2015 at 2:27 am #749114<em>@insofticursos 492958 wrote:</em><blockquote>@Ninja Lead
1 – The problem in the events section was resolved, was the category menu that was replaced.
2 – However the problem with sub menu categories, I think it’s a bug. I simulated the same changes that called on demo Teline, a clean installation, and the same problem occurred.
I temporarily solved the problem by creating hidden menus in the style category blog.
</blockquote>
Hi,
About the problem #2 of you mentioned above, it’s not bug from our product(JA Teline V template), In Joomla, if you want to view article individually, that article must be assigned to a menu item, create a new menu item (or use an existing one) and assign article (or category that article belongs to) to this new menu item and also make sure that you don’t assign any module to this menu item.
<blockquote>
I temporarily solved the problem by creating hidden menus in the style category blog.
</blockquote>This solution is correct in this case.
Regards
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
Tech-xml FriendTech-xml
- Join date:
- October 2010
- Posts:
- 765
- Downloads:
- 39
- Uploads:
- 140
- Thanks:
- 106
- Thanked:
- 5 times in 2 posts
-
AuthorPosts
This topic contains 19 replies, has 2 voices, and was last updated by Tech-xml 9 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum