Panel Entry-Content not Active / not showing HTML content
-
Hi there, experiencing a bit of anomaly.
I am using the Custom Tabs plugin to display some Shipping info on the product page. I have 2 descriptions that are used Globally across 2 different product types. So for each product page 2 tabs should be displayed: 1) Features (default) and 2) Shipping (Custom Tab).
I just imported 3000 thousand products to my clients site and there seems to be a few products not displaying the HTML description content on the Shipping Tab (Custom Tab). The tab description seems to appear on most of the products, but there are approx 400 or so that are not showing any content on the Shipping Tab. I checked the back end, on some of the products that aren’t showing the shipping info, and the HTML content is in the Custom Tabs field – it’s there, it imported – it’s just not showing on the front end for some reason. ??
The HTML description content the Shipping tab is exactly the same as the other products that are working / displaying fine. The content was identical / copied across all products as a global description. Which has got me baffled. I even re-imported this data with content I can confirm is identical.
For the sake of testing,
1) I cut the HTML content out of the Text editor (as code), from the back end Custom Tabs field
2) Saved/updated the product with a blank description
3) Pasted the EXACT SAME HTML CODE (I cut from the field before saving blank) – pasted back into the Custom Tab field, saved the tab, updated the product and it appears in the front end –??!!!Now my issue is, I don’t want to go through and figure out what descriptions are showing / not showing and then change these manually with the above process. This method would take days and it would potentially be overridden within second, when a client performs another CSV import/update.
When I look at Inspect Element, the source code shows the HTML content is in there. It’s imported to the back end and it showing in the code. The CSS is just not handeling it the same way as the products where it does display. For example, when I click the Features Tab the “panel entry-content” appears “active” (see example below). However, when I click the Shipping (Custom Tab) the “panel entry-content” not appearing as “active”. With the Custom tabs that are displaying fine, these are showing as “active”. See below.
=========== PRODUCT TABS THAT ARE WORKING PROPERLY =============
When FEATURE tab is clicked:
<div class=”tab-panels”
<div class=”panel entry-content active” id=”tab-description”> … </div>
<div class=”panel entry-content” id=”tab-Shipping”> </div>When SHIPPING tab is clicked:
<div class=”panel entry-content” id=”tab-description”> … </div>
<div class=”panel entry-content active” id=”tab-Shipping”> </div><<! The tab-Shipping is showing as active >>
=========== PRODUCT TABS THAT ARE *NOT* WORKING PROPERLY =============
When FEATURE tab is clicked:
<div class=”tab-panels”
<div class=”panel entry-content active” id=”tab-description”> … </div>
<div class=”panel entry-content” id=”tab-Shipping”> </div>When SHIPPING tab is clicked:
<div class=”panel entry-content” id=”tab-description”> … </div>
<div class=”panel entry-content ” id=”tab-Shipping”> </div> <<<<<<<<< Not active<<! The ‘tab-Shipping’ div is not appearing to be active or have the “active” class applied. >>
Is there any way to resolve this issue? Please help!
The topic ‘Panel Entry-Content not Active / not showing HTML content’ is closed to new replies.