Re: Tabbed Products Pro (TPP) Contrib - Official Thread
not possible to run bot in same time? but i don't know why its works fine on wamp server :(
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
jennydutch
Thanks a lot ... when i turn off css/js loader it works .. can you tell me what is css and js loader do actually ?
Not the place for this discussion.. you need to ask the CSS/JS support folks..
Quote:
Originally Posted by
jennydutch
not possible to run bot in same time? but i don't know why its works fine on wamp server :(
Dunno either.. again, you REALLY need to pose this question in the support thread for the CSS/JS Loader module..
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
How I can add additional Tabs if needed other than already included?
Field should get information from create product page and each product have different information for this tab.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Not sure you can. I looked for a way to rearrange the order of the tabs and there was not any way to do it. I would be interested in finding out of this is possible.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
anklebiterwoodworks
Not sure you can. I looked for a way to rearrange the order of the tabs and there was not any way to do it. I would be interested in finding out of this is possible.
it's possible.. it's just that noone has shared the solution..
Quote:
Originally Posted by
jsarwar
How I can add additional Tabs if needed other than already included?
Field should get information from create product page and each product have different information for this tab.
possible if you are familiar with how the code is constructed.. there are instructions for adding additional tabs in the readme..
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
it's possible.. it's just that noone has shared the solution..
possible if you are familiar with how the code is constructed.. there are instructions for adding additional tabs in the readme..
Thank you. I am not sure how to do that but will try. Usually Supp fact table goes in description when creating product but having a separate tab for this should work?
Or do I have to create a separate field for SF on Create product page first?
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
jsarwar
Thank you. I am not sure how to do that but will try. Usually Supp fact table goes in description when creating product but having a separate tab for this should work?
Or do I have to create a separate field for SF on Create product page first?
You will have many options to do what you want but it depends on further information on what exactly you want. From what I read you are going to need this supp fact tab to display separate data for each product. So keep in mind that the best case for you is to use the plugin "numinix product fields" OR use it as a baseline for how to add an extra field. That mod gives fields like product desciption 2 and specifications. So these would make the data independent for each product. Once you get this setup, then you would add the fields you want to another tab. The main coding for TPP lies in the modules/tabbed_product_pro.php which pulls the relevant inform######## you want displayed. So you would start in that file to duplicate the coding of how it pulls the description field in a tab. There are many blocks of code that you want to copy and and paste it in the same order.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
yaritai
You will have many options to do what you want but it depends on further information on what exactly you want. From what I read you are going to need this supp fact tab to display separate data for each product. So keep in mind that the best case for you is to use the plugin "numinix product fields" OR use it as a baseline for how to add an extra field. That mod gives fields like product desciption 2 and specifications. So these would make the data independent for each product. Once you get this setup, then you would add the fields you want to another tab. The main coding for TPP lies in the modules/tabbed_product_pro.php which pulls the relevant inform######## you want displayed. So you would start in that file to duplicate the coding of how it pulls the description field in a tab. There are many blocks of code that you want to copy and and paste it in the same order.
Thank you. That's what I thought too. I have already installed and see description 2 on create product page. But any information entered here does not save in admin nor it appear on live site. Any idea?
I have upload all files and ran sql.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
jennydutch
Thanks a lot ... when i turn off css/js loader it works .. can you tell me what is css and js loader do actually ?
CSS/JS loader bascially has 2 main purposes which it loads css and js files in an order that is owner controlled and has the ability to minify those same files. I don't use the minify option but do use the autoload feature. Basically it solves the downfall of having to rename files alphabetically when you want to load it in a certain order such as loading jquery first. Another positive is that some plugins use links to js files as they want it to load at a specific location after other files which the css/js loader also solves by telling it when and which order to load in.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
jsarwar
Thank you. That's what I thought too. I have already installed and see description 2 on create product page. But any information entered here does not save in admin nor it appear on live site. Any idea?
I have upload all files and ran sql.
From my recall, I think that mod has the catalog (customer side) display in a separate folder that you would need to add the block of code to the tpl_product_info_display.php.
As far as the data not being saved to the database, I would suggest you relook at the collect_info.,php and the update.php files in admin. Make sure that those files are merged correctly OR uploaded directly from the mod if no customizations in the past. Those 2 files serve the purpose of updating the database. Another possiblity is that the other files such as the npf_sql folders were not loaded correctly? That mod tries to make it easier for users to upload as it separates the database calls in its own files.
Fix the admin side first then do the catalog side as no data saved in the database will not display in the catalog side.