I have setup a opencart store. With the options in the category, How to add few custom links options as well?
I am using opencart version 3.0.2.0
You need to add that custom links in catalog/view/theme//template/common/menu.twig
add your link tag before tag in file.
Related
Can anyone guide me How to add new menu in a admin pannel of refinerycms in ruby on rails application.
I just add one more tab. Is there anyway.?
Admin pannel
It's call an Extension you can create generate a custom Extension and it will appears as a menu in the admin panel.
Also, when generating an Extension, make sure you pass the necessary switch, e.g. --i18n, to avoid manual updating them later.
I am using opencart 1.5.6.4. I have changed template and decided to edit some pages. But I realized that a link is missing in the admin catalog menu. It is called "information" link and there is a module link instead. Module name is "auto bulk quantity discounts".
screenshot
How can I get information link on that menu?
in opencart v2.X information is like this:
[admin url]/index.php?route=catalog/information
if it was right this url you can add this url to admin menu tpl file
in opencart v2 is this address i think it maybe same v1.5
/admin/view/template/common/menu.tpl
My doubt is about the urls:
In Joomla 3.0 I proceed steps for SEO, rename the .htaccess etc.
But example if I create one article with alias: article-url-teste.
I go the menu create one sub-menu item with the same alias for single article.
When I click in submenu item in fontend the article show me ok but the url site/article-url-teste not show, show me the alias the root menu.
I like show alias of the articles.
Joomla SEF urls are not magic bullets in that once enabled you can access any article using the alias. What you described is the correct behavior for how you configured the menu. If you want to be able to access the article directly using the alias you need to create a dedicated menu item.
I usually created a dedicated menutype called Placement or Hidden with articles and any other endpoint I need to be SEF alias accessible. The only major difference being you don't attach the menutype to a mod_menus module for display.
I would like to convert my existing website to Joomla. However, I need finer control over URLs than I seem to be able to control with Joomla. Assuming that Joomla is installed in the base public_html directory of my user, I would like these pages to keep their URLs:
http://dotancohen.com/howto/rtl_right_to_left.html
http://dotancohen.com/eng/genealogy.php
http://dotancohen.com/heb/contact_info.html
I am aware that I could use a 301 redirect via .htaccess however I would prefer to actually configure the canonical URL of the page. Is this possible in Joomla or with an extension?
Unquestionably, the defacto standard extension is At http://extensions.joomla.org/extensions/site-management/sef/10134. It's highly configurable, well supported, and ver well rated.
In Joomla! 2.5 you can use the built-in Redirect component to catch old URLs and send them to the right content without fiddling with the .htaccess.
You can also create menu's and menu items that will match the old paths then all you need is to place the content of your .html files into suitable articles. Remember you can create a menu (and thus a path to the content) but not display the menu anywhere on the site.
The genealogy.php appears to be a separate application so you can approach that by doing two things, first have a /eng/ directory on your new website with the genealogy.php application in it that way it will have the same URL. Then if you want to create a menu item in a Joomla! menu then you can link to it using a menu item of type 'External Link' - you can read more about the menu types by clicking on the help button in the toolbar.
[EDIT]
For external pages if you want to wrap the external application in your template use a menu item type of Iframe Wrapper this will place them in the main component area of the template. With a good Joomla! 2.5 template you can use a template style specific (i.e. layout settings) for that page.
Hi I am new in joomla and have a question about href tag on custom module.
record1
I have this on my view file and how can i give a link on this href?
the link must be support while i change the url type suppose seo friendly urls by global configuration. I have no idea about it. is link from database or statically? and how?
Take a look at JRoute, simple way to write Joomla URLs. Your urls will be rewritten automatically if you use Joomla SEF urls or 3rd party SEF components like sh404SEF.