Title: Michelle Panulla's Replies | WordPress.org

---

# Michelle Panulla

  [  ](https://wordpress.org/support/users/mpanulla/)

 *   [Profile](https://wordpress.org/support/users/mpanulla/)
 *   [Topics Started](https://wordpress.org/support/users/mpanulla/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mpanulla/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mpanulla/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mpanulla/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mpanulla/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mpanulla/favorites/)

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/mpanulla/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mpanulla/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/mpanulla/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TBTestimonials] issues when moving site](https://wordpress.org/support/topic/issues-when-moving-site/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/issues-when-moving-site/#post-4193359)
 * My pleasure! I hope it works for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TBTestimonials] issues when moving site](https://wordpress.org/support/topic/issues-when-moving-site/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/issues-when-moving-site/#post-4193355)
 * I really love this plugin, Travis – and believe me, I completely understand the
   lack of spare time. If the code above helps in the future, please feel free to
   use it. Keep up the great work!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TBTestimonials] issues when moving site](https://wordpress.org/support/topic/issues-when-moving-site/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/issues-when-moving-site/#post-4193351)
 * I had the same problem on a site after migrating from one hosting company to 
   another. The values have been mangled by the migration. You will need to fix 
   this directly in the database.
 * I wrote a code snippet you can use in your functions.php file if you are not 
   comfortable access your database directly. No guarantees on this, but it should
   work. It is listed below these instructions for accessing your database directly.
 * INSTRUCTIONS FOR CHANGING VALUE IN DATABASE
    ——– Open your database as you normally
   would (such as using phpMyAdmin via cPanel or Plesk).
 * In the wp_options table (may have a different prefix than “wp_”), search for 
   the row with the option_name of “tbt_templates” (without the quotation marks).
 * Change the option_value of this row to:
 *     ```
       a:3:{s:6:"widget";O:27:"Testimonial_Output_Template":3:{s:8:"*_name";s:6:"widget";s:10:"*_syntax";s:468:"<li class="testimonial">
           <div class="testimonial-gravatar">{{ gravatar }}</div>
           <div class="testimonial-data">
               <p class="testimonial-content">{{ testimonial_excerpt }}</p>
               <p class="testimonial-author">{{ author_prefix }}{{ author }}</p>
               {% if  company_url %}
                   <p class="testimonial-company"><a href="{{ company_url }}">{{ company_name }}</a></p>
              {% endif %}
           </div>
           <div class="tbtclear"></div>
       </li>";s:15:"*_description";s:21:"Default widget syntax";}s:9:"shortcode";O:27:"Testimonial_Output_Template":3:{s:8:"*_name";s:9:"shortcode";s:10:"*_syntax";s:475:"<div class="in-content-testimonial">
           <div class="testimonial-gravatar">{{ gravatar }}</div>
           <div class="testimonial-data">
               <p class="testimonial-content">{{ testimonial }}</p>
               <p class="testimonial-author">{{ author_prefix }}{{ author }}</p>
               {% if  company_url %}
                   <p class="testimonial-company"><a href="{{ company_url }}">{{ company_name }}</a></p>
              {% endif %}
           </div>
           <div class="tbtclear"></div>
       </div>
       ";s:15:"*_description";s:24:"Default shortcode syntax";}s:7:"listing";O:27:"Testimonial_Output_Template":3:{s:8:"*_name";s:7:"listing";s:10:"*_syntax";s:475:"<div class="in-listing-testimonial">
           <div class="testimonial-gravatar">{{ gravatar }}</div>
           <div class="testimonial-data">
               <p class="testimonial-content">{{ testimonial }}</p>
               <p class="testimonial-author">{{ author_prefix }}{{ author }}</p>
               {% if  company_url %}
                   <p class="testimonial-company"><a href="{{ company_url }}">{{ company_name }}</a></p>
              {% endif %}
           </div>
           <div class="tbtclear"></div>
       </div>
       ";s:15:"*_description";s:22:"Default listing syntax";}}
       ```
   
 * Save this change. The default output templates should now appear in your admin
   area.
 * CODE SNIPPET for those who cannot or do not wish to access the database directly
   ———**
   IMPORTANT: delete this snippet after you restore the defaults, or it will rewrite
   every time you load a page.**
 * In your theme’s functions.php file, add the following code snippet. You may need
   to add opening and closing php tags, but they will most likely already be in 
   the file.
 * Once the snippet is in your functions.php file, browse any page of your site.
   Then **delete the snippet** from your functions.php file. The default output 
   templates should now appear in your admin area.
 *     ```
       // BEGIN Revert TB Testimonials output templates to default values (remove code snippet after repair)
       add_action( 'wp_loaded', 'mip_reverttbttemplates' );
       function mip_reverttbttemplates(){
       	global $wpdb;
   
       	$defaulttemplatevalue = 'a:3:{s:6:"widget";O:27:"Testimonial_Output_Template":3:{s:8:"*_name";s:6:"widget";s:10:"*_syntax";s:468:"<li class="testimonial">
           <div class="testimonial-gravatar">{{ gravatar }}</div>
           <div class="testimonial-data">
               <p class="testimonial-content">{{ testimonial_excerpt }}</p>
               <p class="testimonial-author">{{ author_prefix }}{{ author }}</p>
               {% if  company_url %}
                   <p class="testimonial-company"><a href="{{ company_url }}">{{ company_name }}</a></p>
              {% endif %}
           </div>
           <div class="tbtclear"></div>
       </li>";s:15:"*_description";s:21:"Default widget syntax";}s:9:"shortcode";O:27:"Testimonial_Output_Template":3:{s:8:"*_name";s:9:"shortcode";s:10:"*_syntax";s:475:"<div class="in-content-testimonial">
           <div class="testimonial-gravatar">{{ gravatar }}</div>
           <div class="testimonial-data">
               <p class="testimonial-content">{{ testimonial }}</p>
               <p class="testimonial-author">{{ author_prefix }}{{ author }}</p>
               {% if  company_url %}
                   <p class="testimonial-company"><a href="{{ company_url }}">{{ company_name }}</a></p>
              {% endif %}
           </div>
           <div class="tbtclear"></div>
       </div>
       ";s:15:"*_description";s:24:"Default shortcode syntax";}s:7:"listing";O:27:"Testimonial_Output_Template":3:{s:8:"*_name";s:7:"listing";s:10:"*_syntax";s:475:"<div class="in-listing-testimonial">
           <div class="testimonial-gravatar">{{ gravatar }}</div>
           <div class="testimonial-data">
               <p class="testimonial-content">{{ testimonial }}</p>
               <p class="testimonial-author">{{ author_prefix }}{{ author }}</p>
               {% if  company_url %}
                   <p class="testimonial-company"><a href="{{ company_url }}">{{ company_name }}</a></p>
              {% endif %}
           </div>
           <div class="tbtclear"></div>
       </div>
       ";s:15:"*_description";s:22:"Default listing syntax";}}';
   
       	$revertquery = "UPDATE {$wpdb->options} SET option_value = {$defaulttemplatevalue} WHERE option_name = 'tbt_templates'";
   
       	$wpdb->query($revertquery);
       }
       // END Revert TB Testimonials output templates to default values
       ```
   
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[JP's Get RSS Feed] Worked like a charm!](https://wordpress.org/support/topic/worked-like-a-charm-20/)
 *  Thread Starter [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/worked-like-a-charm-20/#post-7786100)
 * Happy to help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Logic] how to show widget on blog page](https://wordpress.org/support/topic/how-to-show-widget-on-blog-page/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/how-to-show-widget-on-blog-page/#post-3919252)
 * I had the same thought when I did it, but yep – it worked. =)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to import only 1 post from backup?](https://wordpress.org/support/topic/how-to-import-only-1-post-from-backup/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/how-to-import-only-1-post-from-backup/#post-3775188)
 * I needed to import a single post and found this plugin:
    [http://wordpress.org/plugins/advanced-export-for-wp-wpmu/](http://wordpress.org/plugins/advanced-export-for-wp-wpmu/)
 * No need to manually recreate it if you use the plugin.
 * BUT, if you want to do it manually, you can find the tags and categories under
   the wp_terms/wp_term_taxonomy/wp_term_relationships tables. Viewing them will
   make it clearer how the tags/categories are associated with your post. (The post
   ID is listed as the object_id in the wp_term_relationships table.)
 * Hope that helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Logic] how to show widget on blog page](https://wordpress.org/support/topic/how-to-show-widget-on-blog-page/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/how-to-show-widget-on-blog-page/#post-3919245)
 * souleye – I was having the same problem when using a Genesis theme. Even though
   it was not my home page, I had to use is_home() to make the the widget show up
   on my blog page. Nothing else would work (I tried the page ID, the page template
   and the page slug). Perhaps is_home() will work for you as well.
 * Good luck!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Random Text] [Plugin: Random Text] This isn't random?](https://wordpress.org/support/topic/plugin-random-text-this-isnt-random/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/plugin-random-text-this-isnt-random/#post-2938704)
 * Are you using a shortcode in a page? If so, add random=”1″ within it.
 * Example:
    [randomtext category=”testimonials” random=”1″]
 * Otherwise, it will rotate through all of them in ID order, as you suspected.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPaudio MP3 Player] [Plugin: WPaudio MP3 Player] Does not work in WP 3.4.1](https://wordpress.org/support/topic/plugin-wpaudio-mp3-player-does-not-work-in-wp-341/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-wpaudio-mp3-player-does-not-work-in-wp-341/#post-2909847)
 * [@rawdolphe](https://wordpress.org/support/users/rawdolphe/) It is safe until
   the next plugin update, which hopefully fixes the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broken Link Checker] Broken Link Checker unable to activate in MultiSite install](https://wordpress.org/support/topic/broken-link-checker-unable-to-activate-in-multisite-install/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/broken-link-checker-unable-to-activate-in-multisite-install/#post-2483940)
 * I was wondering if anyone has an update to this. I’d love to use the plugin on
   multisite. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photonic Gallery & Lightbox for Flickr, SmugMug & Others] [Plugin: Photonic Gallery for Flickr, Picasa, SmugMug and 500px] Bottom of slider being cut off with](https://wordpress.org/support/topic/plugin-photonic-gallery-for-flickr-picasa-smugmug-and-500px-bottom-of-slider-being-cut-off-with-picasa-album/)
 *  Thread Starter [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-photonic-gallery-for-flickr-picasa-smugmug-and-500px-bottom-of-slider-being-cut-off-with-picasa-album/#post-2588646)
 * Again, thank you for such a fast response! I will see if my client likes that
   idea. I know I do. =)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photonic Gallery & Lightbox for Flickr, SmugMug & Others] [Plugin: Photonic Gallery for Flickr, Picasa, SmugMug and 500px] Bottom of slider being cut off with](https://wordpress.org/support/topic/plugin-photonic-gallery-for-flickr-picasa-smugmug-and-500px-bottom-of-slider-being-cut-off-with-picasa-album/)
 *  Thread Starter [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-photonic-gallery-for-flickr-picasa-smugmug-and-500px-bottom-of-slider-being-cut-off-with-picasa-album/#post-2588644)
 * Oh, and I forgot to follow up: is there any way to skip that slider and go directly
   to the first photo in the gallery slideshow?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photonic Gallery & Lightbox for Flickr, SmugMug & Others] [Plugin: Photonic Gallery for Flickr, Picasa, SmugMug and 500px] Bottom of slider being cut off with](https://wordpress.org/support/topic/plugin-photonic-gallery-for-flickr-picasa-smugmug-and-500px-bottom-of-slider-being-cut-off-with-picasa-album/)
 *  Thread Starter [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-photonic-gallery-for-flickr-picasa-smugmug-and-500px-bottom-of-slider-being-cut-off-with-picasa-album/#post-2588638)
 * The JQuery Tooltip option didn’t work, but forcing the height in the stylesheet
   did. Thank you for your fast response! =)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp_users –> user status](https://wordpress.org/support/topic/wp_users-user-status/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/wp_users-user-status/#post-1959031)
 * I had the same question today. From what I could glean from my search, it is 
   a deprecated field. However, it seems the BuddyPress plugin has utilized it to
   distinguish between active (with a value of 0) and inactive (with a value of 
   2) users.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] [Plugin: The Events Calendar] Data not saving in fields](https://wordpress.org/support/topic/plugin-the-events-calendar-data-not-saving-in-fields/)
 *  [Michelle Panulla](https://wordpress.org/support/users/mpanulla/)
 * (@mpanulla)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-the-events-calendar-data-not-saving-in-fields/#post-2417391)
 * Same problem here. Event location fields are not saving. Anyone know a workaround?

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

1 [2](https://wordpress.org/support/users/mpanulla/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mpanulla/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/mpanulla/replies/page/2/?output_format=md)