Hi guys! New to the forum, have a few problems.
The main one - info pages linked to the top menu - could you please post the full solution.
I'd like to have buttons in the top menu for the pages like "about". We have service departments without "items for sale", so I'd like them look like info pages (no price, qty, etc.), but to be accessible from the top menu bar(I would also move the "home" link there, but don't know how...)
Thanks a lot!
The main one - info pages linked to the top menu - could you please post the full solution.
I'd like to have buttons in the top menu for the pages like "about". We have service departments without "items for sale", so I'd like them look like info pages (no price, qty, etc.), but to be accessible from the top menu bar(I would also move the "home" link there, but don't know how...)
Thanks a lot!
I have posted example code before to manually code your menu bar. You might try a search for my posts.
Running Opencart v3.0.3.9 with multi-stores and the default template from https://www.labeshops.com which has links to all my stores.
I didn't ask to customize my site, I'm not dumb... I just asked for help to link the page to the menu bar...JAY6390 wrote:"could you please post the full solution" are you serious? That is custom to your site, and to your theme, and you'd be lucky to find anyone that will just do that for you for free
Thanks a lot! Great forum! I've found it. It's manually managed, but will work fine for me. Do you know if there is any option of the auto generated call ? Thanks again.labeshops wrote:I have posted example code before to manually code your menu bar. You might try a search for my posts.
One more thing. You can combine manually and auto generated options by adding your "<li>s" into original code in the place and order you need: Thanks again labeshops ! It's exactly what I needed! You made my day!
Code: Select all
<div id="menu">
<ul>
<!--manually -->
<li><a href="/index.php?route=common/home">Home</a></li>
<!-- auto generated -->
<?php foreach ($categories as $category) { ?>
<li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php if ($category['children']) { ?>
<div>
<?php for ($i = 0; $i < count($category['children']);) { ?>
<ul>
<?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
<?php for (; $i < $j; $i++) { ?>
<?php if (isset($category['children'][$i])) { ?>
<li><a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a></li>
<?php } ?>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
</li>
<?php } ?>
<!--manually -->
<li><a href="/index.php?route=information/information&information_id=4">About Us</a></li>
</ul>
</div>
how can i make it change to a different language when selecting to switch?
example english: About Us
example spanish: De Nosotros
example english: About Us
example spanish: De Nosotros
My Extensions
OpenCart Developer (OCD) Tools
Donate - If I ever helped you.
I remixed my store to only catalog mode:
www.lipnenski-bg.com/opencart
See the top header link bar - is this that you want?????
www.lipnenski-bg.com/opencart
See the top header link bar - is this that you want?????
Very cool design inspirio!
Wish I could speak Bulgarish
What I want, and I think what everybody else wants is to simply see the INFORMATION Menu that is in the footer to show in the Top Menu Bar:
About Us
Delivery Information
Privacy Policy
Terms & Conditions
Of course we do NOT want to add static links, because we want these links to show the text in Different Language in the Top Menu, just as they show up in the footer in different language.
Warmest regards,
Arames T.
Wish I could speak Bulgarish

What I want, and I think what everybody else wants is to simply see the INFORMATION Menu that is in the footer to show in the Top Menu Bar:
About Us
Delivery Information
Privacy Policy
Terms & Conditions
Of course we do NOT want to add static links, because we want these links to show the text in Different Language in the Top Menu, just as they show up in the footer in different language.
Warmest regards,
Arames T.
I think we have finally the answer:
http://www.opencart.com/index.php?route ... on_id=5839
We can change this post to RESOLVED
http://www.opencart.com/index.php?route ... on_id=5839
We can change this post to RESOLVED

Who is online
Users browsing this forum: No registered users and 16 guests