Title: Saved tab is empty
Last modified: June 3, 2020

---

# Saved tab is empty

 *  Resolved [fiskebyxa](https://wordpress.org/support/users/fiskebyxa/)
 * (@fiskebyxa)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/saved-tab-is-empty/)
 * Hello,
 * I have a similar problem as this thread:
    [https://wordpress.org/support/topic/saved-tabs-not-working/](https://wordpress.org/support/topic/saved-tabs-not-working/)
 * I can click “Add a saved tab” and choose a saved tab, but it will show up empty.
   
   No tab title, no content.
 * There was no problems inserting saved tabs in the past.
    I can add and save tabs
   manually.
 * My system is:
    – WordPress 5.4.1 – Woocommerce 4.1.1 – Customs product tabs for
   woocommerce 1.7.1
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fsaved-tab-is-empty%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [Freddie](https://wordpress.org/support/users/fmixell/)
 * (@fmixell)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/saved-tab-is-empty/#post-12960624)
 * Hey [@fiskebyxa](https://wordpress.org/support/users/fiskebyxa/),
 * Could you open your browsers developer tools and copy out any error messages 
   you see in the console?
 * Here’s an article that explains how to find the developer tools if you’re unfamiliar:
   
   [https://balsamiq.com/support/faqs/browserconsole/](https://balsamiq.com/support/faqs/browserconsole/)
 * Cheers,
    Freddie
 *  Thread Starter [fiskebyxa](https://wordpress.org/support/users/fiskebyxa/)
 * (@fiskebyxa)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/saved-tab-is-empty/#post-12962880)
 * Hello [@fmixell](https://wordpress.org/support/users/fmixell/)
 * Thank you for getting back to me.
 * Please see screenshot here:
    [https://pasteboard.co/JcmpSzO.png](https://pasteboard.co/JcmpSzO.png)
 * Cheers
 *  [Freddie](https://wordpress.org/support/users/fmixell/)
 * (@fmixell)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/saved-tab-is-empty/#post-12965768)
 * Hey [@fiskebyxa](https://wordpress.org/support/users/fiskebyxa/),
 * Thanks for getting back to me with the screen shot that was very helpful! It 
   looks like the TinyMCE javascript isn’t being loaded. Most likely your theme 
   or a plugin is removing that code for some reason.
 * A way you could test this theory out is by going back to that console and pasting
   in this:
    `typeof window.tinymce.translate`
 * When you hit enter it should say “function” if that function is available like
   it should be and it will say “undefined” if it is not included.
 * You could also check if tinymce is available at all:
    `typeof window.tinymce`
 * That should say “object” if it is defined.
 * If it is missing like I suspect you can force it to load with a function:
 *     ```
       add_action( 'admin_init', 'yikes_add_tiny_mce' );
   
       function yikes_add_tiny_mce() {
           $check_post_type = get_post_type();
   
           // Make sure we're on the product edit page.
           if ( 'product' !== $check_post_type ) {
               return;
           }
   
           $js_src = includes_url('js/tinymce/') . 'tinymce.min.js';
           $css_src = includes_url('css/') . 'editor.css';
   
           // wp_enqueue doesn't seem to work at all
           echo '<script src="' . $js_src . '" type="text/javascript"></script>';
   
           wp_register_style( 'tinymce_css', $css_src );
           wp_enqueue_style( 'tinymce_css' );
       }
       ```
   
 * This code would go into your theme or child themes functions.php file. You could
   also contact the creator of your theme and ask them if they have an easy way 
   to turn TinyMCE back on.
 * I hope this helps!
 * Cheers,
    Freddie
 *  Thread Starter [fiskebyxa](https://wordpress.org/support/users/fiskebyxa/)
 * (@fiskebyxa)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/saved-tab-is-empty/#post-12968636)
 * [@fmixell](https://wordpress.org/support/users/fmixell/)
 * Thank you so much for your support!
 * I had disabled the TinyMCE editor for my wordpress user:
    Personal Options > 
   Visual Editor > Disable the visual editor when writing
 * The saved tabs can be used like normal as long as this setting is unchecked.
 * Cheers
 *  Plugin Contributor [Tracy Levesque](https://wordpress.org/support/users/liljimmi/)
 * (@liljimmi)
 * 🏳️‍🌈 YIKES, Inc. Co-Owner
 * [5 years, 11 months ago](https://wordpress.org/support/topic/saved-tab-is-empty/#post-12971170)
 * Great news.
 * We’re glad you figured it out.
 * Stay well!
    -Tracy

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Saved tab is empty’ is closed to new replies.

 * ![](https://ps.w.org/yikes-inc-easy-custom-woocommerce-product-tabs/assets/icon-
   256x256.png?rev=1558461)
 * [Custom Product Tabs for WooCommerce](https://wordpress.org/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/)
 * [Active Topics](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/reviews/)

## Tags

 * [empty](https://wordpress.org/support/topic-tag/empty/)

 * 5 replies
 * 3 participants
 * Last reply from: [Tracy Levesque](https://wordpress.org/support/users/liljimmi/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/saved-tab-is-empty/#post-12971170)
 * Status: resolved