Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
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:
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
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:
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!
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
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
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
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
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
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?
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!!
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
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.
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: