Page 2 of 2
Re: How to add extra tab in product ?
Posted: Mon Jan 16, 2012 3:04 am
by straightlight
Send me a PM and I will assist you.
Re: How to add extra tab in product ?
Posted: Sat Jan 28, 2012 9:39 pm
by relatees
Thanks Eva! This worked out perfectly... A few quick edit's and you can change the title to whatever you want and embed pretty much ANY code without any issues... You can drop in an iFrame, or drop an entire page of HTML/PHP in there...
Thanks again

Re: How to add extra tab in product ?
Posted: Sun Jan 29, 2012 8:08 am
by markisonfire
And it supports Shoppica...
You're my hero.

Thanks for sharing.
Re: How to add extra tab in product ?
Posted: Thu Feb 09, 2012 7:44 pm
by pbenfield
This is a great mod for adding technical description.
How would the code be for verson 1.4.9.4
I can not find this in the forum
Re: How to add extra tab in product ?
Posted: Wed Feb 22, 2012 7:56 pm
by subhra44
Thanks Eva for sharing the link. Is there any other extension which provide the opportunities of adding more tabs?
Re: How to add extra tab in product ?
Posted: Thu Feb 23, 2012 5:33 am
by ann23262
Hi, Sorry but I need help. I have followed above method and have added the 'cute tab' but I need to know how I add info /description under it (just like I would add info under Description tab)
I would be grateful for any advice / help as I dont know what changes to make on the DB side.
Kind Regards
Annie
Re: How to add extra tab in product ?
Posted: Thu Mar 01, 2012 2:36 pm
by subhra44
ann23262 wrote:Hi, Sorry but I need help. I have followed above method and have added the 'cute tab' but I need to know how I add info /description under it (just like I would add info under Description tab)
I would be grateful for any advice / help as I dont know what changes to make on the DB side.
Kind Regards
Annie
Hey Annie,
You will need to modify your database also. Add one column in the product table like description column and copy and the same code of description in model, controller and view file.
Re: How to add extra tab in product ?
Posted: Wed Oct 02, 2013 5:58 pm
by spigz
Hi,
Old thread I know, but I have tried the cute tab method and have the delivery tab appear but no way of adding anything to the tab?
I have tried adding a column in the product table with a new field called delivery (also tried tab_extra) but nothing is coming up in admin for me to enter anything into the delivery tab?
Any direction would be greatly appreciated.
Spigz
Re: How to add extra tab in product ?
Posted: Thu Oct 31, 2013 6:04 pm
by Rabbitdigital
BEST CUSTOM OPENCART PRODUCT TAB SOLUTION
"Extra Product Tabs" :
http://www.opencart.com/index.php?route ... on_id=9594
It
Works Perfectly with OpenCart 1.5.6, even with database prefix's and a custom theme!
- • Really easy to install (even for a mere designer like me)
- • No need to mess with any code
- • Name the tabs inside the admin
- • Control where the tabs are displayed in relation to the built in system tabs
So don't forget to thank the developer for his great work.
Re: How to add extra tab in product ?
Posted: Sun Oct 26, 2014 4:19 am
by kasun0777
I hard corded of product.tpl file.
I added Extra Tab After #tab-description line.
Code: Select all
<a href="#tab-description"><span class="tab-title" ><?php echo $tab_description; ?></span></a>
Add this code after that line
Code: Select all
<a href="#tab-extra"><span class="tab-title" >Extra Tab</span></a>
And I added extra code after this line.
Code: Select all
<div id="tab-description" class="tab-content"><?php echo $description; ?></div>
Add this code after that line
Code: Select all
<div id="tab-extra" class="tab-content">
<!-- Tab Extra Details -->
Add any details.
</div>
You can add any details inside the tab like that.

Re: How to add extra tab in product ?
Posted: Thu May 14, 2015 6:46 pm
by barisky
i added extra tab but i want every product has content tab diffirence. How?