Skip Navigation

[Resolved] Plugin Conflict with Tabby Responsive Tabs

This support ticket is created 6 years, 1 month ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

This topic contains 4 replies, has 2 voices.

Last updated by keithT-3 6 years, 1 month ago.

Assisted by: Nigel.

Author
Posts
#1155524

I am trying to: Suddenly my plugin Tabby Responsive Tabs stopped displaying the tabbed content properly

Link to a page where the issue can be seen: hidden link

I expected to see: this is a dev site where I have WP Views disabled - hidden link

Notes: On the dev site I disabled all plugins except for Tabby Responsive Tabs and WP Types (so I could get the debug report)

#1155575

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

Hi Keith

Let me add a copy of the plugin to a test site and see if I can reproduce the problem and identify the cause.

I'll update you when I have that set up.

#1155684

Thinking now it could be a combination of those two plugins AND the theme. On this dev site I have changed to a different theme, have Toolset Views active AND also the Tabby Responsive Plugins active - hidden link. I wish I could resolve the issue without switching themes. This site was working fine last week. At some point something changed and the three components stopped working together but not sure what the trigger point was.

#1156145

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

Hi Keith

If this is 3-way conflict involving your theme that may make it trickier to resolve (it may be that there is nothing we can do, it may or may not be on us).

Before going much further, is Bootstrap enabled on your site? Bootstrap comes with tabs, and it is just a question of outputting the markup in the required format, described in the docs: hidden link

Try copying and pasting the following into a test page and visit it on the front end to know whether it works or not:

<div>

  <!-- Nav tabs -->
  <ul class="nav nav-tabs" role="tablist">
    <li role="presentation" class="active"><a href="#home" aria-controls="home" role="tab" data-toggle="tab">Home</a></li>
    <li role="presentation"><a href="#profile" aria-controls="profile" role="tab" data-toggle="tab">Profile</a></li>
    <li role="presentation"><a href="#messages" aria-controls="messages" role="tab" data-toggle="tab">Messages</a></li>
    <li role="presentation"><a href="#settings" aria-controls="settings" role="tab" data-toggle="tab">Settings</a></li>
  </ul>

  <!-- Tab panes -->
  <div class="tab-content">
    <div role="tabpanel" class="tab-pane active" id="home">...some content</div>
    <div role="tabpanel" class="tab-pane" id="profile">...some other content</div>
    <div role="tabpanel" class="tab-pane" id="messages">...something else</div>
    <div role="tabpanel" class="tab-pane" id="settings">...not the same</div>
  </div>
</div>

(I'm not saying we won't look at the compatibility issue, but if Bootstrap tabs work it would be a quicker result for you.)

#1156487

My issue is resolved now. Thank you! My client decided to go with a different tab plugin and we were able to get that one to work without changing the theme and still using the Toolset plugins. I appreciate your perseverance.