Zen Cart Logo
Forums / All Other Contributions/Addons / Tabbed Products Pro (TPP) Contrib - Official Thread

Tabbed Products Pro (TPP) Contrib - Official Thread

Views: 397,309

Results 1,561 to 1,580 of 2,224
18 Aug 2011, 11:45
#1561
lazar avatar

lazar

Zen Follower

Join Date:
Feb 2011
Location:
Between London and Cetinje
Posts:
109
Plugin Contributions:
0

Tabbed Products Pro (TPP) Contrib - Official Thread

bonnit:

with regards to the post before about the double title tab, this is controlled in the TPP admin config is it not!?

Thank you.
Exactly as you said, in TPP admin the value of"Show tab headers" should be 0 (zero).

18 Aug 2011, 13:20
#1562
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

jagall:

hi I am back again about this. Is there a way of editing the tabbed_product.php file in module to add code to call in extra fields, looking at it you would think it could be done, would it not be same as the product info display and how it can be coded. Anyone??:mellow:Please don't take this the wrong way, but you've asked this question several times, and the fact that no one has answered would seem to indicate that no one knows the answer to your question..

Also as I stated earlier adding fields the product info display is really NOT a TPP question.. Though TPP modifies the product info to add the tabbed display code, you want to add fields to the product info display and THAT is really not a TPP support question..

This is not likely the first time adding fields to the product info display has been asked on this forum.. Suggest doing a search to see if somewhere else on the forum there is a solution for you already posted.. If you can't find a solution already posted, perhaps you might want to give some thought to hiring someone to code this up for you..

19 Aug 2011, 17:11
#1563
jagall avatar

jagall

Zen Follower

Join Date:
Mar 2011
Location:
Ireland
Posts:
286
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

No you prob right, think I need to get back to basics on this one, will let you know though if I get a solution. cheers.

21 Aug 2011, 18:46
#1564
rizla avatar

rizla

Zen Follower

Join Date:
Sep 2010
Posts:
449
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

I need some help...
I've just installed this on my live site and I am impressed with the look of this mod.

EXCEPT I have one problem regarding the 'Reviews'

I see there are some posts on duplicate buttons but my set up is placing all reviews within the reviews tab as it should, along with the buttons for read and write a review. All good so far!!

BUT, lower down the page... All my reviews are still displaying as they would WITHOUT TPP so it kind of defeats the object and looks a mess.

Any idea what may have gone wrong?

ww /metalpix.co.uk look in the lighters section

Thanks

21 Aug 2011, 20:19
#1565
rizla avatar

rizla

Zen Follower

Join Date:
Sep 2010
Posts:
449
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

I have managed a work arround... using the supplied info_displat.php now I'll ad back the missing mods

22 Aug 2011, 22:26
#1566
fashions avatar

fashions

New Zenner

Join Date:
Apr 2004
Location:
new mexico usa
Posts:
27
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

fashions:

Thank you in advance, for the very adaptable addon to zencart.

Problem 1:
"Reviews" tab is showing Additional Images information when selected.
Don't know where to start. Would you care to have a look?

Problem 2:
too, i am stuck on formating product page.
we want to have the purchase selections to right of the "productMainImage" using Tabbed Products Pro.

site heavily modified 1.3.8a site

Product test page with order information to right of main product image Here

Thanks,

Corrected Problem 2
alt_tpp_tabs13.css

WAS
.tabcontent{
clear: both;
float: right;
width:55%;

the header of the tabs was moved up under the product name , price , add to cart button
however
the content of the tabs, description paragraph, details paragraph, ecct, were floating right but spaced below the main image about 2 inches down.

NOW
.tabcontent{
clear: right;
float: right;
width:55%;

the header of the tabs was moved up under the product name , price , add to cart button
and
the content of the tabs, description paragraph, details paragraph, ecct, were floating right and correctly displayed under the tabs to the RIGHT of the main product image. YEA!

22 Aug 2011, 22:47
#1567
fashions avatar

fashions

New Zenner

Join Date:
Apr 2004
Location:
new mexico usa
Posts:
27
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

Review tab showing "additional images" ???

23 Aug 2011, 15:52
#1568
bonnit avatar

bonnit

Zen Follower

Join Date:
Jun 2009
Location:
Kent, UK
Posts:
350
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

Rizla:

ww /metalpix.co.uk

Thanks

Ah..... now i understand why you wouldn't give your web address to troubleshoot the error you had with my mod :blink:

24 Aug 2011, 00:55
#1569
jagall avatar

jagall

Zen Follower

Join Date:
Mar 2011
Location:
Ireland
Posts:
286
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

DivaVocals:

Please don't take this the wrong way, but you've asked this question several times, and the fact that no one has answered would seem to indicate that no one knows the answer to your question..

Also as I stated earlier adding fields the product info display is really NOT a TPP question.. Though TPP modifies the product info to add the tabbed display code, you want to add fields to the product info display and THAT is really not a TPP support question..

This is not likely the first time adding fields to the product info display has been asked on this forum.. Suggest doing a search to see if somewhere else on the forum there is a solution for you already posted.. If you can't find a solution already posted, perhaps you might want to give some thought to hiring someone to code this up for you..

Its me again, now before you say anything, got my custom tabs to partially work:

Product Code: NEBR3001
Delivery/Shipping Weight: 1.7kg
Manufactured by: Nestle
36 0.89 

The input code is as follows:
// Preload Details
if ($bDetailsOnTab != false) {
$fmtDOT = '<div style="width:100%;">' . "\n";
$fmtDOT .= '<ul id="productDetailsList" class="floatingBox back">';
$fmtDOT .= (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n";
$fmtDOT .= ($product_info->fields['products_count']). "\n";
$fmtDOT .= ($product_info->fields['products_unit_cost']). "\n";
$fmtDOT .= '</ul>';
$fmtDOT .= "\n" . '<br class="clearBoth" />';
$fmtDOT .= "\n" . '</div>';

The 36 is the Count and
The 0.89 is unit price, all that is missing is that field name, and just cannot seem to work it in. I am sure it can be done as it iust could be hard coded but I have tried so many different scenarios so not being a progammer it doesn't jump out at me. should read as follows:

Product Code: NEBR3001
Delivery/Shipping Weight: 1.7kg
Manufactured by: Nestle
Count: 36 
RRP: 0.89 

So near now.... please someone add the finishing touches!!!:yes:

24 Aug 2011, 01:12
#1570
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

I just discovered that my site breaks when I am using this mod with IE9. My site descriptions, and anything else tabbed does not show up. Has anyone else had this problem? I would love to continue using it but can't without showing descriptions to everyone :)
Thanks!

24 Aug 2011, 12:57
#1571
rizla avatar

rizla

Zen Follower

Join Date:
Sep 2010
Posts:
449
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

bonnit:

Ah..... now i understand why you wouldn't give your web address to troubleshoot the error you had with my mod :blink:

Ha ha ha.... Bonnit, I never refused to give you my URL and I certainly had not thought about it to be honest. The mod was not installed on the live site at that time (just on my local test site)

I congratulate you on yours BTW

Rizla

24 Aug 2011, 13:14
#1572
bonnit avatar

bonnit

Zen Follower

Join Date:
Jun 2009
Location:
Kent, UK
Posts:
350
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

Rizla:

Ha ha ha.... Bonnit, I never refused to give you my URL and I certainly had not thought about it to be honest. The mod was not installed on the live site at that time (just on my local test site)

I congratulate you on yours BTW

Rizla

and likewise :D nice job x

24 Aug 2011, 13:15
#1573
bonnit avatar

bonnit

Zen Follower

Join Date:
Jun 2009
Location:
Kent, UK
Posts:
350
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

helpme:

I just discovered that my site breaks when I am using this mod with IE9. My site descriptions, and anything else tabbed does not show up. Has anyone else had this problem? I would love to continue using it but can't without showing descriptions to everyone :)
Thanks!

if you post a link you will probably get a response much faster, there could be any number of reasons why it is not working in ie9?

24 Aug 2011, 22:37
#1574
alienz avatar

alienz

New Zenner

Join Date:
Aug 2011
Posts:
2
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

** Hi
My name is Alen . I installed TPP Yesterday, it was wonderful mod. But I suddenly found that the banner on home page stopped auto rolling ( 3 ADs), also the discount 20% section(right under banner) can not move left or right . I found the problem caused from over write the file html_header.php in commom folder( when I back up html_header.php every thing return to normal but tabs will not shows up). :shocking::shocking::wacko::wacko:

Really need your help !!!!!   Please!!**
25 Aug 2011, 05:38
#1575
alienz avatar

alienz

New Zenner

Join Date:
Aug 2011
Posts:
2
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

26 Aug 2011, 05:14
#1576
kamelion0927 avatar

kamelion0927

Zen Follower

Join Date:
Dec 2009
Posts:
208
Plugin Contributions:
1

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

alienz:

** Hi
My name is Alen . I installed TPP Yesterday, it was wonderful mod. But I suddenly found that the banner on home page stopped auto rolling ( 3 ADs), also the discount 20% section(right under banner) can not move left or right . I found the problem caused from over write the file html_header.php in commom folder( when I back up html_header.php every thing return to normal but tabs will not shows up). :shocking::shocking::wacko::wacko:

Really need your help !!!!!   Please!!**

This is probably due to the css/js loader files used in TPP 1.07 (the css/js loader will mess with any other jscripts you have). Try COMPLETELY uninstalling TPP 1.07 and install TPP 1.05.

26 Aug 2011, 09:37
#1577
jagall avatar

jagall

Zen Follower

Join Date:
Mar 2011
Location:
Ireland
Posts:
286
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

[QUOTE=jagall;1058466]

Hi All just to let ye know in case anyone comes across the same problem that I have got this sorted by using the following code allowed me to call in my custom fields:

$fmtDOT .= '<li>' .TEXT_PRODUCT_COUNT . $products_count .($product_info->fields['products_count']). "\n";
$fmtDOT .= '<li>' .TEXT_PRODUCT_UNIT_COST . $products_unit_cost .($product_info->fields['products_unit_cost']). "\n";

Sooo Happy, might have been a walk in the park for some but a mountain climbed for me!!!!:clap::clap::clap::clap::clap:

29 Aug 2011, 00:28
#1578
jagall avatar

jagall

Zen Follower

Join Date:
Mar 2011
Location:
Ireland
Posts:
286
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

Hi just wondering if anyone can help me on this. My product details e.g. manufacturer name, weight etc come on the details tab but they wrap at a certain point instead of using the full width of the tab. The text in the product description field is fine though. I know it is a css issue but have tried changing numerous settings and still no joy!:huh:

29 Aug 2011, 00:56
#1579
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

jagall:

Hi just wondering if anyone can help me on this. My product details e.g. manufacturer name, weight etc come on the details tab but they wrap at a certain point instead of using the full width of the tab. The text in the product description field is fine though.** I know it is a css issue but have tried changing numerous settings and still no joy**!:huh:
So why not ask the question in the most appropriate place on the forum..

http://www.zen-cart.com/forum/forumdisplay.php?f=15

29 Aug 2011, 12:41
#1580
jagall avatar

jagall

Zen Follower

Join Date:
Mar 2011
Location:
Ireland
Posts:
286
Plugin Contributions:
0

Re: Tabbed Products Pro (TPP) Contrib - Official Thread

okay then, I thought the TPP css controlled the layout of the tabs. Currently using alt_tpp_tabs9.css and thought that the changes could be made within this so that the text would not wrap. I have been looking through other threads and wondering whether I need to create a new div in the tpl_product_info_display page to get around this.