After installing a new theme, comparison with add to cart button link is riding on each other. Waiting for your help with this solution.
1) http://i.hizliresim.com/RYkGEj.jpg = add to cart and
2) http://i.hizliresim.com/ZDk5Gk.jpg = top menu
OpenCart version 2.0.1.1
It looks like there is some problem is css.You can add padding or margins and then see how it looks and then eventually you will be able to fix it.
Related
I want to show product image options (available colors) in category/manufacturer/special/modules templates. Not active clickable options but just images.
Any help would be highly appreciated :)
There's a similar question in SO How to add product options in category page in opencart 2.0 if you know PHP you can make it work, but if your noobie - just buy extension and save your time.
how do I add “contact page or custom link” at top menu bar in OpenCart?
i am using Version 2.1.0.2
how can i add "homepage and other page" at responsive menu in opencart?
Thanks
I generally add it to the header.tpl file which is in catalog/view/theme/{name of theme}/template/common/header.tpl
and look for the li item that corresponds to where you want to add the menu and add it in by adding a new line with the code
<li>{Name of Menu Item}</li>
Go to
catalog/view/theme/default/template/common/header.tpl
Add Following line before ul close, it may around line number 115.
<li>Contact Us<li>
On my opencart v2.3.0.2,
I just need to add new Links (contact page) at OC CMS Block (index.php?route=extension/module/occmsblock/cmslist&token=) then choose type as Link, fill links column to "index.php?route=information/contact", then after it created, just edit horizontal megamenu (in my theme) and add those new link (contact page) and it will be displayed at header.
I wish to add a new menu item/link (e.g. "Stack Overflow") at the end of the menu in the screenshot below.
The new link URL would end in the community_uuid e.g. http://example.stackoverflow.com/some-page#community_uuid
Is there any good documentation available to show how this is done?
Immediately I thought of three things:
1 - Custom CSS for a community, so you could somehow add/change or maybe create a landing spot for a dom manipulation event which adds it.
In order to change the CSS, You should look at:
http://infolib.lotus.com/resources/oneui/3.0/docPublic/components/menu.htm
It's the navbar role.
In a folder such as /local/con/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/installedApps/conServerCell/Communities.ear/comm.web.war/nav/common/styles/orangeTheme/
2 -
You may also want to look at /local/con/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/config/cells/conServerCell/LotusConnections-config/widgets-config.xml
specifically
you could add a StackOverflow widget, when loaded it automatically opens up a new window, and transfers the person back to the previous page. ... a little bit of a kluge...
3 - Look for /local/con/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/installedApps/conServerCell/Communities.ear/comm.web.war/nav/templates/page.jsp
find the line
<div class="lotusMenu" id="lotusMenu" style="display:none;" role="navigation" aria-label="Main navigation"><div class="lotusBottomCorner"><div class="lotusInner">
<div id="lotusMenuTree"></div>
</div></div></div>
You could modify the very end to add some custom link for you.
Just some quick thoughts...
I'm using the default menu in Joomla. So, I have the following structure :
Menu 1
--Submenu1
--Submenu2
--Submenu3
Menu 2
--Submenu1
--Submenu2
--Submenu3
The problem is that I want to include the submenus horizontally on the top of the page instead of displaying them just below the root menu. For example, if I click on "Menu2" :
Submenu1 Submenu2
Menu1
Menu2(selected)
Is it possible ?
Than you.
There you go: http://docs.joomla.org/Creating_a_submenu
I havent done this in a while, but using seperate menu modules is a pretty flexible solution. I'm not quite sure, but I think there are also extensions that do what your want. Either way, the above link should help.
i need to display an extrafield (virtuemart standard attribute) on flypage over the product image.
I need it as a "customization print option" to display what user want to write over product!
I need the field under other extrafield (as it is normally), but let it appear over image only when user write on it! Is it possible?
Or is there some other solution for this?
Here's the example:
I'm using:
Joomla V 1.5.14
Virtuemart V1.1.6
code are welcome, i'm not so expert!
thank you
The first solution that comes to mind is to use Mootools (since VM already loads it) to update a blank div that you position over the top of the image. This is a built in function in Mootools.
http://mootools.net/docs/core/Element/Element#Element%3areplaces