Title: WillBG's Replies | WordPress.org

---

# WillBG

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [exploit/hack header.png and code added to config.php file](https://wordpress.org/support/topic/exploithack-headerpng-and-code-added-to-configphp-file/)
 *  [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/exploithack-headerpng-and-code-added-to-configphp-file/#post-4082807)
 * Tracysurf, did you find a solution? I am experiencing the same thing
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Echoing div when post meta has content](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/#post-3530652)
 * This has been resolved
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Echoing div when post meta has content](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/#post-3530651)
 * Keesie you are a genius!
 * Just so anyone else visits this thread with the same problem, this is my working
   code
 *     ```
       <?php
       $meta = get_post_meta( $post->ID, 'rg_wp_editor_sample', true );
       if(isset( $meta['es']) && $meta['es']) :
       ?>
       <img src="<?php echo get_stylesheet_directory_uri() ?>/images/top.png" />
       <div id="accordion">
         <?php echo isset($meta['es']) ? apply_filters('the_content', $meta['es']) : 'no Meta Box meta saved'; ?>
       </div>
       <img src="<?php echo get_stylesheet_directory_uri() ?>/images/bottom.png" />
       <?php endif; ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Echoing div when post meta has content](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/#post-3530649)
 * Did you manage to find a solution Keesie? I am stumped…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Echoing div when post meta has content](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/#post-3530504)
 * Yes, if I enter some text in the custom field it echos on the page. Please see
   the page now for an example. I just need the image borders to be hidden if the
   custom field is left empty.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Echoing div when post meta has content](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/#post-3530484)
 * Keesie,
 * Please see [this](http://dev.biggundigital.co.uk/pops/?page_id=19) URL as you
   can see the red border images are still on page where as if you see the other
   pages there is content in that meta box. I need the borders to not display if
   the meta box (custom field ) is left empty
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Echoing div when post meta has content](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/echoing-div-when-post-meta-has-content/#post-3530467)
 * Hi Keesie, the image borders are still displaying when the field is empty in 
   the admin window. I managed it with this on a previous project
 *     ```
       <?php
            $post_meta = get_post_meta($post->ID, "Accordion", true);
            if (!empty($post_meta)) {
           ?>
   
       <img src="images/bg-acc-top.png"/>
       <div id="accordion">
       <?php echo $post_meta; ?>
       </div>
       <img src="images/bg-acc-bottom.png"/>
       <?php
       }
       ?>
       ```
   
 * BUT I have a wysiwyg in the back end now so I have to echo it like the above 
   in my question
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meteor Slides] Making Description appear onhover](https://wordpress.org/support/topic/making-description-appear-onhover/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/making-description-appear-onhover/#post-3259615)
 * Is there a way to do it via the meteor-slideshow.php file using JQuery or echo
   syntax? I need it to be as compatible for all browsers as possible
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meteor Slides] Making Description appear onhover](https://wordpress.org/support/topic/making-description-appear-onhover/)
 *  Thread Starter [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/making-description-appear-onhover/#post-3259612)
 * Hi JLeuze,
 * Thank you for replying so fast. That worked! Thank you so much!
 * Is there a way to ease it in with a nice transition? Maybe fade in and out?
 * Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meteor Slides] text overlay titles?](https://wordpress.org/support/topic/text-overlay-titles/)
 *  [WillBG](https://wordpress.org/support/users/willbg/)
 * (@willbg)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/text-overlay-titles/#post-3159698)
 * Hi guys,
 * I have managed to overlay Description of each slide but I would like this to 
   only appear when the mouse is over the slide. Is there a way to do this? .onhover{}
   or something?
 * Regards
 * Will

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