Title: rbird's Replies | WordPress.org

---

# rbird

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Featured Video Plus] Video plays on top of other elements – Set wmode](https://wordpress.org/support/topic/video-plays-on-top-of-other-elements-set-wmode/)
 *  Thread Starter [rbird](https://wordpress.org/support/users/rbird/)
 * (@rbird)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/video-plays-on-top-of-other-elements-set-wmode/#post-4794559)
 * Found the setting, right in front of my under “Featured Videos” on the Media 
   Settings panel.
 * Simply change YouTube wmode to “transparent” (or “opaque”) and this will resolve
   the layering issue in certain browsers.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Featured Video Plus] Compatbility with Headway Framework](https://wordpress.org/support/topic/compatbility-with-headway-framework/)
 *  [rbird](https://wordpress.org/support/users/rbird/)
 * (@rbird)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/compatbility-with-headway-framework/#post-3471801)
 * Here’s how I got FVP to work in Headway v3.5.x
 * You will need to edit the file “content-display.php” in the Headway Theme directory.
   Find it here:
 * /wp-content/themes/headway/library/blocks/content/content-display.php
 * You’re going to be looking for the code block that begins with “function display_thumbnail”–
   In my case that was on line 735.
 * Now a bit further down you will see the output code like this:
 *     ```
       echo '
       	<a href="' . get_permalink() . '" class="post-thumbnail post-thumbnail-' . $position . '">
       		<img src="' . esc_url($thumbnail_url) . '" alt="' . get_the_title() . '" width="' . $thumbnail_width . '" height="' . $thumbnail_height . '" />
       	</a>
       ';
       ```
   
 * Just before that block, initiate this test loop:
 *     ```
       if( has_post_video() ) {
       		the_post_video();
       		} else {
       ```
   
 * And, then, immediately after the “echo” block, close the loop:
 *     ```
       }
       ```
   
 * That’s it! Works like a charm. Here’s the entire block as I edited it in the 
   content display PHP:
 *     ```
       // RDB - Enables Featured Video Plus plugin in Headway
       // See http://wordpress.org/support/topic/compatbility-with-headway-framework
       		if( has_post_video() ) {
       		the_post_video();
       		} else {
       // The end of test loop initialization
   
       echo '
       	<a href="' . get_permalink() . '" class="post-thumbnail post-thumbnail-' . $position . '">
       		<img src="' . esc_url($thumbnail_url) . '" alt="' . get_the_title() . '" width="' . $thumbnail_width . '" height="' . $thumbnail_height . '" />
       	</a>
       ';
   
       // closing the Featured Video Plus loop
       }
       // 	That's it
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Menu Widget] Need siblings and children displayed only](https://wordpress.org/support/topic/need-siblings-and-children-displayed-only/)
 *  [rbird](https://wordpress.org/support/users/rbird/)
 * (@rbird)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/need-siblings-and-children-displayed-only/#post-3696297)
 * For everyone looking to do this, I achieved the above “siblings and children”
   result with these settings:
    - Hierarchy: Only related sub-items
    - Starting depth: 1
    - Unlimited depth
    - Display all
    - Filter: None
    - Include parents: unchecked
    - Post related parents: unchecked

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