shokinro wrote:@kike
You should not delete any line as I said before.
In order to hide menu 3, you need make changes in following file
/modules/agilemultipleseller/views/templates/front/products/product_top.tpl
replace following line
- Code: Select all
{foreach from=$product_menus item=menu}
<option value="{$menu.id}" {if $menu.id==$product_menu}selected{/if}>{$menu.name}</option>
{/foreach}
With following lines
- Code: Select all
{foreach from=$product_menus item=menu}
{if $menu.id !== 3}
<option value="{$menu.id}" {if $menu.id==$product_menu}selected{/if}>{$menu.name}</option>
{/if}
{/foreach}
thanks. It works fine
We have bought the module in order for a registered seller can sell or rent their own articles. this is the reason than we want to do it as easy as possible because the registered seller is a private individual no a professional.
as you have said to us it works perfect. We have hidden number 3,4,5,8. The menu appears as follows now:
1- information
2- images
6- quantity
...
is there any way that we can renumber or hide the numbers?