Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
Ahhh read back through this thread.. (Look for my posts..) There is a small change you have to make to this mod to make that stop.. I would search for ya, but I'm at work right now..:smile:
Ah, well that figures :blink:
No biggie, I'll probably never use reviews anyway.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
CharInLasVegas
Ok, I getcha now. Yes, reviews still shows up even if you turn it off in tpp. I deleted the code from tpl_product_listing to get rid of it, I couldn't find any other way.
As far as the other...when I have tabs enable to show product description, my product title (name) shows up above the item price where it does normally. So, yes something is not right.
Do you have
Code:
<!--bof Product Name-->
<h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1>
<!--eof Product Name-->
above your "price block" code?
If you mean the tpl_product_info_display.php file, then yes, that code is present.
I can't find a file anywhere named tpl_product_listing.php...
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
[FONT=Arial]
Quote:
Originally Posted by
DBB1
If you mean the tpl_product_info_display.php file, then yes, that code is present.
I can't find a file anywhere named tpl_product_listing.php...
Your issue isn't caused by this mod at all, but an incorrect entry in your stylesheet. You've got this in your stylesheet:
Code:
/* Centerbox Category Title display */
h1 {
font-size: 1.5em;
color: #9a9a9a;
display: none; /* prevents category title from displaying */
}
This hides ANYTHING inside the H1 tag, not just the category title. I would suggest you try this:
Code:
h1 {
font-size: 1.5em;
color: #9a9a9a;
}
#productListHeading {
display: none; /* prevents category title from displaying */
}
[/FONT]
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DBB1
If you mean the tpl_product_info_display.php file, then yes, that code is present.
I can't find a file anywhere named tpl_product_listing.php...
Yes, tpl_product_info_display.php. If you haven't already done so, try uploading the page without the tpp code (just take out the code in between the tpp comments in the 3 spots, leave the comments so you know where to put it back in). If it still doesn't show up, post on the General forum to see if someone can figure out why.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
CharInLasVegas
Yes, tpl_product_info_display.php. If you haven't already done so, try uploading the page without the tpp code (just take out the code in between the tpp comments in the 3 spots, leave the comments so you know where to put it back in). If it still doesn't show up, post on the General forum to see if someone can figure out why.
DBB!'s problem is a stylesheet issue.. (Please see my post above)
FYI, USUALLY the very last thing you ever want to do is hack at core files just to make style changes.. For most of these issues it's USUALLY a stylesheet resolution that is at the heart of the problem..
I suggest getting the Firefox Web developer tools.. Very useful, and it's how I found out the answer..
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
wonderful addon...is it possible to get the Products URL (For more information, please visit this product's webpage.) in the details tab?
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
DBB!'s problem is a stylesheet issue.. (Please see my post above)
FYI, USUALLY the very last thing you ever want to do is hack at core files just to make style changes.. For most of these issues it's USUALLY a stylesheet resolution that is at the heart of the problem..
I suggest getting the Firefox Web developer tools.. Very useful, and it's how I found out the answer..
I didn't see your post -- I'm still kind of Osc-fied, used to ripping apart the core files to change anything :lamo:
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
CharInLasVegas
I didn't see your post -- I'm still kind of Osc-fied, used to ripping apart the core files to change anything :lamo:
I kinda figured the issue was that's how things work in the OSC world.. That's why this is called ZEN Cart.. So have some tea (or coffee, wine, beer.. whatever mellows you) and relax my friend.. :laugh:
In my experience with Zen Cart, I have found very few style or layout changes that requires ripping apart core files to achieve.. Now that said, I have run into a few layout changes that required some core file changes, but they are the exception truly and not the rule..
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
[FONT=Arial]Your issue isn't caused by this mod at all, but an incorrect entry in your stylesheet. You've got this in your stylesheet:
Code:
/* Centerbox Category Title display */
h1 {
font-size: 1.5em;
color: #9a9a9a;
display: none; /* prevents category title from displaying */
}
This hides ANYTHING inside the H1 tag, not just the category title. I would suggest you try this:
Code:
h1 {
font-size: 1.5em;
color: #9a9a9a;
}
#productListHeading {
display: none; /* prevents category title from displaying */
}
[/FONT]
Bada-Bing! Thank you, DivaVocals!
I, too use Firefox Web tools, but without knowing the tag naming conventions, it's can be next to impossible to find what you're looking for. And #productListHeading was not used in the sheet at all - how would I have known that, for example? I've been trying to comment things as I find them, but is there a master listing somewhere that describes all the possible classes and tags?
By the way, if I turn off the TPP Global Reviews, should reviews then show up above the tabbed pages, or would that be a tweak?
Anyway, thank you so much - you've earned your Diva status!
DBB1
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DBB1
Bada-Bing! Thank you, DivaVocals!
I, too use Firefox Web tools, but without knowing the tag naming conventions, it's can be next to impossible to find what you're looking for. And #productListHeading was not used in the sheet at all - how would I have known that, for example? I've been trying to comment things as I find them, but is there a master listing somewhere that describes all the possible classes and tags?
There are MANY styles in the code that are not in the stylesheet. You add them as you need them.. I believe in the FAQs or even the stylesheet forum there is a list of all possible styles.. other wise you have to use the Firefox tools to look..
Quote:
Originally Posted by
DBB1
By the way, if I turn off the TPP Global Reviews, should reviews then show up above the tabbed pages, or would that be a tweak?
Turning off the reviews in the admin should remove the reviews..
Quote:
Originally Posted by
DBB1
Anyway, thank you so much - you've earned your Diva status!
DBB1
Awwww shuckins.. I didn't do anything special..:blush: A view source of your product page revealed the ID in question, and on a hunch I took a quick look at your stylesheet because I suspected you had hidden the H1 tag, and bada bing bada boom:smartalec:.