oobedoob
Forum Replies Created
-
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Don’t include blog text in RSSI figured it out:
- Go to PowerPress and click on Settings
- Click on the Episodes tab on the top
- Check off iTunes Summary Field (Leave unchecked to use your blog post)
Then when you’re editing a blog entry there’s an additional box in the PowerPress section to add your own description.
Forum: Fixing WordPress
In reply to: Next/Previous page function not working after 3.4 updateNo problem zex2911. I actually got it to work again! I was looking around on the site from where I got the theme from and found a similar theme. The comments on the theme were about the same issue that I was having and they posted code to paste into the functions.php file. Put that in there and everything is working fine now! Thanks for your help.
Here’s the code that was put in:
function my_query_for_homepage( $query ) { if( $query->is_main_query() && $query->is_home() ) { $query->set( 'post_type', array( 'videos' ) ); } } add_action( 'pre_get_posts', 'my_query_for_homepage' );
Forum: Fixing WordPress
In reply to: Next/Previous page function not working after 3.4 updateJust wanted to update this, I’ve tried two other plugins (Simple Pagination and WP-PageNavi-LightWord) that do the same thing and am getting the same error.
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] wp-pagenavi throws error 404I’m having the same problem after upgrading to 3.4 I get a ‘Page not found’ error whenever I click on a number or the ‘Next’ button. Yet on another site that I have that is also running 3.4 and the same plugin it works fine.
Forum: Fixing WordPress
In reply to: Next/Previous page function not working after 3.4 updateAny other suggestions, or is there another page navigation plugin that might work?
Forum: Fixing WordPress
In reply to: Next/Previous page function not working after 3.4 updateI added what you posted above, it still doesn’t work and I get this line at the top of the page “Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘post_type_videos’ was given in /homepages/2/d130186665/htdocs/randomredbox/wp-includes/plugin.php on line 403”
Line 403 in the plugin.php is
call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));
Forum: Fixing WordPress
In reply to: Next/Previous page function not working after 3.4 updateTried changing
'rewrite' => array( 'slug' => 'genre' ),
to'rewrite' => array( 'slug' => 'genres', 'with_front' => true ),
and had no effect. Theflush_rewrite_rules();
is not under the register_post_type, is there any place in particular that line should go?register_post_type( 'videos', array( 'public' => true, 'publicly_queryable' => true, 'hierarchical' => false, 'menu_icon' => get_stylesheet_directory_uri() . '/images/video.png', 'labels'=>array( 'name' => _x('Videos', 'post type general name'), 'singular_name' => _x('Video', 'post type singular name'), 'add_new' => _x('Add New', 'video'), 'add_new_item' => __('Add New video'), 'edit_item' => __('Edit video'), 'new_item' => __('New video'), 'view_item' => __('View video'), 'search_items' => __('Search video'), 'not_found' => __('No videos found'), 'not_found_in_trash' => __('No videos found in Trash'), 'parent_item_colon' => '' ), 'show_ui' => true, 'menu_position'=>5, 'supports' => array( 'title', 'editor', 'author', 'post-thumbnails', 'excerpts', 'trackbacks', 'custom-fields', 'comments', 'revisions') ) );
Forum: Fixing WordPress
In reply to: Next/Previous page function not working after 3.4 updateFound the line:
‘rewrite’ => array( ‘slug’ => ‘genre’ ),
What do I do now?
Forum: Fixing WordPress
In reply to: Next/Previous page function not working after 3.4 updatezex2911: I do use custom posts the address to the site is randomredboxreviews.com, my other site that is running 3.4 and the plugin is geekitupradio.com,
Krishna: I would deactivate the plugin, but would have no way of testing without it since it is the only thing that I use for page navigation on the site.
If it helps I’m using a customized version of the Dione theme.
Forum: Themes and Templates
In reply to: Looking for a theme… can what I want it to do be done?Any help on this? I did some more searching and was reading up on taxonomies. It seems like that’s what I may want to use, but I’m still not quite sure.
Forum: Fixing WordPress
In reply to: Moving Blog to new URLThanks for the link. I actually found an easier way to do this within the General and Media settings in WordPress.
Forum: Fixing WordPress
In reply to: Question About Designing a ThemeThat’s what I wanted, the Front page option. I ended up finding out how to do it here https://codex.www.ads-software.com/Creating_a_Static_Front_Page and used the single column no sidebar template. Thanks for your help.
Forum: Fixing WordPress
In reply to: Question About Designing a ThemeThe code doesn’t seem to be making any sense to me for what I’m trying to do and I think there might be some misunderstanding. What I want the front page to look like is this: https://132productions.com/site_mockup.html and when someone click on the “BLOG LINK” on the top that will got to the the blog that had everything a normal blog would have. So is this possible to do this on the same installation of wordpress?
Forum: Fixing WordPress
In reply to: Question About Designing a ThemeI get that part, the part that I don’t know if it would work is, having the above code in the index.php file, but then have a fully functional blog on another “page”. Basically I want the “Featured Content Gallery” plugin (https://www.featuredcontentgallery.com/) in the header, below that will be one static blog post with a html table and images in it and below that will be the footer. Above the featured content gallery will be a menu that will have links as well as a link to a blog and here is where my question starts, as I stated above can I have that code in the index.php file yet still have a fully functional blog (multiple posts, header, footer, sidebars, etc…) within the same wordpress install or am I better off just coding a html page for the “index”?
Forum: Plugins
In reply to: Looking for a pluginLike that but for text instead of images.