Jason818
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Global $post not echo'ing in p tagThank you for the help
Forum: Themes and Templates
In reply to: Global $post not echo'ing in p tagoutput is string(3282)
Forum: Themes and Templates
In reply to: Global $post not echo'ing in p tagSorry… 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
In reply to: [HTML5 jQuery Audio Player] Player not working!! Need Help!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
In reply to: [Recent Tweets Widget] Including widget in themeThank sakib000 just was I was looking for. ThemePrince, great plug in. Many Thanks.
Forum: Fixing WordPress
In reply to: Customized Recent Post WP Default Widget issue, need help.The Parent construct name could not simply be modified it had to be completely be renamed.
Forum: Fixing WordPress
In reply to: Customized Recent Post WP Default Widget issue, need help.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
In reply to: Customized Recent Post WP Default Widget issue, need help.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
In reply to: Custom Post Type Page is showing archives?Thanks graphical_force problem solved
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Notice from Time.lyDo 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
In reply to: Need Help! — Single Page Not working on Custom Post TypeYes! 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.