×
Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues
Component URL Routing SEF
Luca Mainieri
New Member
Posts: 1
6 года 2 нед. назад #1904
от Luca Mainieri
Luca Mainieri создал тему: Component URL Routing SEF
Hallo
we need to create a component wich will create SEF url such as
[component_name] = my component
[category_1] = product category [not hierarchical] * required
[category_2] = product application [not hierarchical] * required
www.mysite.com/[component_name]/[category_1]/[category_2]/[item].html
Is that possible with component creator to achieve this?
Thank you
Luca
we need to create a component wich will create SEF url such as
[component_name] = my component
[category_1] = product category [not hierarchical] * required
[category_2] = product application [not hierarchical] * required
www.mysite.com/[component_name]/[category_1]/[category_2]/[item].html
Is that possible with component creator to achieve this?
Thank you
Luca
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.
Lee Collings
New Member
Posts: 1
5 года 11 мес. назад #1922
от Lee Collings
Lee Collings ответил в теме Component URL Routing SEF
I'd also like to know how something like this can be done.
By default it's setting each table try as /
By default it's setting each table try as /
-
/[view]/[id]
I'm building a simple Horoscopes section for a website, that consists of a blog like index page to show all of the clickable horoscope titles.
Out of the box, the links for each page are showing as /horoscopes/horoscopes/1/
I'd like this to be really simple, by using the Jooma aliases and by resulting in it showing as /horoscopes/aries/. I can't see anywhere in the creator how this can be done, so it looks like I'll completley have to re-code the generated code, which nulls the point of using the creator.
Any advice?
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.
Eoin Oliver
New Member
Posts: 5
5 года 9 мес. назад - 5 года 9 мес. назад #2011
от Eoin Oliver
Eoin Oliver ответил в теме Component URL Routing SEF
Not sure if this will help you but here's how I made the titles linkable.
First of all in component builder make sure you have selected "frontend detail" in the tables section.
This makes two views "items" and "item" (they would be called whatever you called them.
Now if you go to Joomla! backend and go to your template and create an override you will see "items" and "Item" in my case it was "products" and "product" because that is what I called it.
If you go to "products" (effectively the blog view) you can add some new code
You need to change "product" to whatever your view is called and "com_your_component" to whatever your component is called. That will link your titles to the individual item. I hope that helps you.
First of all in component builder make sure you have selected "frontend detail" in the tables section.
This makes two views "items" and "item" (they would be called whatever you called them.
Now if you go to Joomla! backend and go to your template and create an override you will see "items" and "Item" in my case it was "products" and "product" because that is what I called it.
If you go to "products" (effectively the blog view) you can add some new code
<a href="<?php echo JRoute::_('index.php?option=com_your_compnonent&view=product&id='.$item->id); ?>">
You need to change "product" to whatever your view is called and "com_your_component" to whatever your component is called. That will link your titles to the individual item. I hope that helps you.
Последнее редактирование: 5 года 9 мес. назад пользователем Eoin Oliver.
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.
Время создания страницы: 0.053 секунд