Title: Jason818's Replies | WordPress.org

---

# Jason818

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Global $post not echo'ing in p tag](https://wordpress.org/support/topic/global-post-not-echoing-in-p-tag/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/global-post-not-echoing-in-p-tag/#post-5195987)
 * Thank you for the help
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Global $post not echo'ing in p tag](https://wordpress.org/support/topic/global-post-not-echoing-in-p-tag/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/global-post-not-echoing-in-p-tag/#post-5195982)
 * output is string(3282)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Global $post not echo'ing in p tag](https://wordpress.org/support/topic/global-post-not-echoing-in-p-tag/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/global-post-not-echoing-in-p-tag/#post-5195972)
 * Sorry… I am calling the
 * $post->post_title & $post->post_content
 * but the content is in not rendering inside the p tag. I want to create a generic
   bio page that any one can use with out necessarily having to be an author.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HTML5 jQuery Audio Player] Player not working!! Need Help!](https://wordpress.org/support/topic/player-not-working-need-help/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/player-not-working-need-help/#post-4105016)
 * Thank You. I figured it out. If I create a play list with spaces in it the short
   code gets created with underscores which is causing an issue. I removed the spaces
   from my playlist name so the generated short code would not have any underscores
   and it worked. Any news on the responsive release?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Recent Tweets Widget] Including widget in theme](https://wordpress.org/support/topic/including-widget-in-theme/)
 *  [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/including-widget-in-theme/#post-3837011)
 * Thank sakib000 just was I was looking for. ThemePrince, great plug in. Many Thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Customized Recent Post WP Default Widget issue, need help.](https://wordpress.org/support/topic/customized-recent-post-wp-default-widget-issue-need-help/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/customized-recent-post-wp-default-widget-issue-need-help/#post-4134851)
 * The Parent construct name could not simply be modified it had to be completely
   be renamed.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Customized Recent Post WP Default Widget issue, need help.](https://wordpress.org/support/topic/customized-recent-post-wp-default-widget-issue-need-help/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/customized-recent-post-wp-default-widget-issue-need-help/#post-4134850)
 * okay i figured it out for those that are interested I changed the following:
 *     ```
       function __construct() {
       		$widget_ops = array('classname' => 'jr2_widget_recent_entries', 'description' => __( "The most recent posts on your site") );
       		parent::__construct('recent-posts', __('JR2 Recent Posts'), $widget_ops);
       		$this->alt_option_name = 'jr2_widget_recent_entries';
   
       		add_action( 'save_post', array($this, 'flush_widget_cache') );
       		add_action( 'deleted_post', array($this, 'flush_widget_cache') );
       		add_action( 'switch_theme', array($this, 'flush_widget_cache') );
       	}
       ```
   
 *     ```
       function __construct() {
       		parent::__construct(
       			'jr2_recent_post_widget', // Base ID
       			'JR2 Recent Post', // Name
       			array( 'description' => __( 'Most recent posts on your site'), ) // Args
       		);
       		$this->alt_option_name = 'widget_recent_entries';
       		add_action( 'save_post', array($this, 'flush_widget_cache') );
       		add_action( 'deleted_post', array($this, 'flush_widget_cache') );
       		add_action( 'switch_theme', array($this, 'flush_widget_cache') );
       	}
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Customized Recent Post WP Default Widget issue, need help.](https://wordpress.org/support/topic/customized-recent-post-wp-default-widget-issue-need-help/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/customized-recent-post-wp-default-widget-issue-need-help/#post-4134842)
 * I just realized by doing this it over rite the default widget and only displays
   mine even thought I created it into t separate file and renamed it. I wanted 
   to be able to display both.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom Post Type Page is showing archives?](https://wordpress.org/support/topic/custom-post-type-page-is-showing-archives/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/custom-post-type-page-is-showing-archives/#post-4007334)
 * Thanks graphical_force problem solved
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Notice from Time.ly](https://wordpress.org/support/topic/notice-from-timely/)
 *  [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/notice-from-timely/page/2/#post-3771774)
 * Do not use this plug in with version 3.6 it will brake your site. It was working
   fine until I had to upgrade the plug in and made my site go blank. I keep getting
   a pesty reminder that I need query 1.26 put i have the latest jquery and the 
   plug in wont recognize it. I have 1.10 I dont use 2.0 since I need my site to
   have support for ie 6 7 8. I will have to wait to buy this plug in. Can anyone
   say if tis truly worth the pro version? I really don’t want to disappoint my 
   client with a broken site.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Need Help! — Single Page Not working on Custom Post Type](https://wordpress.org/support/topic/need-help-single-page-not-working-on-custom-post-type/)
 *  Thread Starter [Jason818](https://wordpress.org/support/users/jason818/)
 * (@jason818)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/need-help-single-page-not-working-on-custom-post-type/#post-3995713)
 * Yes! I figured it out. I was registering taxonomy with the same name as my custom
   post type. That was throwing off my custom post type as they shared the same 
   name. I removed the taxonomy and revisited the permalinks and now it works.

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