Title: Shortcode doesn&#039;t create tabs (need help)
Last modified: August 21, 2016

---

# Shortcode doesn't create tabs (need help)

 *  Resolved [amcmasters](https://wordpress.org/support/users/amcmasters/)
 * (@amcmasters)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/)
 * [http://www.ryerestaurant.com/rye/tab-test/](http://www.ryerestaurant.com/rye/tab-test/)
 *     ```
       [­tabby title="Thanksgiving"­]
   
       [caption id="attachment_302" align="alignnone" width="192"]<img class="size-medium wp-image-302" alt="Rye Thanksgiving Menu 2013" src="http://www.ryerestaurant.com/rye/wp-content/uploads/2013/11/full_menu_1_thanksgiving-192x300.jpg" width="192" height="300" /> Rye Thanksgiving Menu 2013[/caption]
   
       [­tabbyending­]
       ```
   
 * [http://wordpress.org/plugins/tabby-responsive-tabs/](http://wordpress.org/plugins/tabby-responsive-tabs/)

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/page/2/?output_format=md)

 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344256)
 * Is the plugin showing as activated on the plugins admin page?
 * Do you have any other plugins installed & active?
 * To check, go to plugins -> installed plugins in admin and find ‘tabby responsive
   tabs’ Then, in the list of plugins, when you hover over the plugin title, a link
   should appear which will can activate or deactivate the plugin depending on its
   current state.
 *  Thread Starter [amcmasters](https://wordpress.org/support/users/amcmasters/)
 * (@amcmasters)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344307)
 * YEs it is active – I deactivated any weird plugins to no effect…
    It may be a
   path/permission problem? thanks for your help.
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344316)
 * To troubleshoot, what happens if you temporarily deactivate all other plugins
   and activate the twentytwelve theme instead of the child theme?
 *  Thread Starter [amcmasters](https://wordpress.org/support/users/amcmasters/)
 * (@amcmasters)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344325)
 * I will try the nuke tonight.
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344328)
 * If this does make the plugin work as expected, the next step will be to reactivate
   your child theme, and if it is still working then, activate your other plugins
   one-by one, checking the site each time. then when activating one causes it to
   break again, you should an indication of what is causing the problem.
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344346)
 * Actually scratch that. I believe I have found the issue preventing the shortcodes
   from being processed. It does not appear to be caused by the theme or another
   plugin, so the troubleshooting steps previously suggested are not necessary.
 * You have some invisible ‘`­`‘ characters in your code. When I copied the shortcode
   block from ‘view source’ on your page and pasted it into a text editor, the result
   looked like this
 *     ```
       [-­tabby title="Thanksgiving"-­]
       stuff
       [­-tabby title="White Wine"-­]
       stuff
       [­-tabby title="Red Wine"­-]
       morestuff
       [­-tabbyending­-]
       ```
   
 * These invisible charactes are intended to prevent the shortcodes from being processed
   in the page in the example on my site are surviving being copied & pasted into
   your site.
 * The fix will be to delete that block and retype the shortcodes manually.
 * I have changed how I format the the example shortcodes on my site to use character
   codes for the square brackets rather than typing them with the invisible character,
   so this shouldn’t happen again if anyone copies the code rather than typing it.
 * Please let me know whether this fixes it.
 *  Thread Starter [amcmasters](https://wordpress.org/support/users/amcmasters/)
 * (@amcmasters)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344353)
 * Better, console tells me the site [http://www.ryerestaurant.com/rye/tab-test/](http://www.ryerestaurant.com/rye/tab-test/)
 * ReferenceError: Can’t find variable: jQuery
 * so maybe I need to install or fix the path for the $ (jquery?) library?
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344355)
 * That’s a different problem & means your site isn’t loading the version of jQuery
   included in WordPress, which is a dependency of the script within the plugin.
 * I’ve just noticed you are using a cache plugin, so you empty the cache & also
   try the troubleshooting steps outlined earlier to identify if the theme or a 
   plugin is preventing WordPress from loading jQuery.
 *  Thread Starter [amcmasters](https://wordpress.org/support/users/amcmasters/)
 * (@amcmasters)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344448)
 * I tried putting the jquery call in the header and in a functions.php file with
   the following code
 * // smart jquery inclusion
    if (!is_admin()) { wp_deregister_script(‘jquery’);
   wp_register_script(‘jquery’, (“[http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221](http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221);),
   false); wp_enqueue_script(‘jquery’); }
 * Still working…
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344463)
 * Did you try it with all other plugins deactivated & with the default theme?
 * The plugin enqueues the script the correct way by listing jQuery as a dependency.
   If you deregister jQuery and use a version other than the version included within
   WordPress, I have no idea whether it might work, so please don’t do that. I suspect
   either a plugin or theme incompatibility.
 * Troubleshooting on a site with a cache plugin installed is probably not a good
   idea as changes are not always reflected immediately on the front-end display.
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344520)
 * I suspect that there is another plugin, or possibly the theme, that is doing 
   something to prevent jQuery from loading. The plugin enqueues its included javascript
   correctly with the version of jQuery that is included in the latest version of
   WordPress as a dependency.
 * Your site is currently loading up an old version of jQuery, not from WordPress
   but from google.
 * As you have not replied I am setting this as resolved. If I hear back from you
   with details of the results from the troubleshooting steps, I will unset the 
   resolved flag and will be able to offer to further help.
 *  [SEAllgood](https://wordpress.org/support/users/seallgood/)
 * (@seallgood)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344569)
 * Hello,
 * I’m also having this problem. My site is local right now so can’t show anything,
   but I’ve checked the console and tabby.js as well as the stylesheet are being
   loaded without problem. The plugin is activated and I’ve tried isolating the 
   plugin to no avail.
 * It’s apparent that the tab titles are pulling in a default style, but just not
   creating tabs as [tabbyending] shows on the frontend. Not sure if it’s incompatible
   with the theme, but also not sure where to start.
 * Thanks in advance!
 *  [klipklopp](https://wordpress.org/support/users/klipklopp/)
 * (@klipklopp)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344575)
 * I am also having a problem. This plugin is only displaying one tab as opposed
   to all I have set to appear on my page:
 * [http://www.westminstertech.com/tabby/](http://www.westminstertech.com/tabby/)
 * Thoughts?
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344579)
 * This topic is already set to resolved and if your issue was the same you would
   be able to resolve it in the same way as the user who started the topic. If you
   require support please start a new topic and give as much information about your
   site as possible and include a working link to a page showing the issue.
 *  [dnandhak](https://wordpress.org/support/users/dnandhak/)
 * (@dnandhak)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/#post-4344591)
 * Hi, i copy pasted the below code in my php file and executed. no tabs are shown
   except the the text. Am i doing something wrong? Kindly help how to use it .php
   file.
 * [tabby title=”Products”]
    Display all products
 * [tabby title=”Links”]
    Display all links
 * [tabbyending]

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/page/2/?output_format=md)

The topic ‘Shortcode doesn't create tabs (need help)’ is closed to new replies.

 * ![](https://ps.w.org/tabby-responsive-tabs/assets/icon-256x256.jpg?rev=2682041)
 * [Tabby Responsive Tabs](https://wordpress.org/plugins/tabby-responsive-tabs/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tabby-responsive-tabs/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tabby-responsive-tabs/)
 * [Active Topics](https://wordpress.org/support/plugin/tabby-responsive-tabs/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tabby-responsive-tabs/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tabby-responsive-tabs/reviews/)

## Tags

 * [Short Code](https://wordpress.org/support/topic-tag/short-code/)
 * [zombie](https://wordpress.org/support/topic-tag/zombie/)

 * 16 replies
 * 5 participants
 * Last reply from: [cubecolour](https://wordpress.org/support/users/numeeja/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/shortcode-doesnt-create-tabs-need-help/page/2/#post-4344592)
 * Status: resolved