Michael
Forum Replies Created
-
Forum: Plugins
In reply to: [PixProof - Easy Photo Proofing for Photographers] DocumentationIn a theme, the plugin expects pixproof_gallery.php to be located within a “templates” folder, not in the root or a “views” folder.
Actually scraped the custom number, then I had an issue of duplicating the 1st “Load More…” set of posts, and that was fixed with a filter snippet I found somewhere. Here’s what my final code ended up looking like:
// Sort Power Portfolio Post Type function portfolio_posts( $query ) { if ( is_admin() || ! $query->is_main_query() ) return; if (is_tax('portfolio_category') ) { // $query->set( 'posts_per_page', 50); $query->set( 'orderby', 'menu_order'); $query->set( 'order', 'ASC'); return; } } add_action( 'pre_get_posts', 'portfolio_posts', 10); // Fixes duplicate first Load More Page function my_infinite_scroll_fix_paged( $args ) { $args['paged']++; return $args; } add_filter( 'infinite_scroll_query_args', 'my_infinite_scroll_fix_paged' );
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Front end NOT showing Admin Bar when Logged InYeah, when I launch my inspector none of the admin bar html is being executed, so that leaves me to believe WordPress just isn’t recognizing the mapped URL for admin detection. Definitely scratching my head on this one
Forum: Networking WordPress
In reply to: WordPress Admin Bar NOT Displaying when Logged InTested in: Chrome, Firefox, Safari, & IE on Windows & Mac
Forum: Networking WordPress
In reply to: Linking latest post from a Network Site TO that site?Thanks for the reply! I’ve been building custom themes for a couple years now, but this is my first real multi-site network.
Quick note, this does not OVERRIDE the time section in the WordPress interface, it is simply a modification. Be sure to clear browser cache/cookies, and try in multiple browsers.