openbayou
Forum Replies Created
-
Good to know about the footer. I added a height and background and that fixed with the default settings.
Thanks for the help.
Here’s the loop:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); // End the loop. endwhile; echo do_shortcode('[ajax_load_more post_type="post" posts_per_page="20" offset="20"]'); endif;?>
No, I’m not. Thanks.
I found a fix. Apparently there’s a bug in JS file I use where it won’t serve an image past page 2 on infinite scroll. The fix was to use Javascript to change the image URL based on the browser’s width.
Got it working:
function jetpack_infinite_scroll_query_args( $args ) { $args['post_type'] = array('announcements','post'); $args['posts_per_page'] = 10; return $args; } add_filter( 'infinite_scroll_query_args', 'jetpack_infinite_scroll_query_args' ); add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'footer_widgets' => false, 'posts_per_page' => 10, ) );
Got it working!
<?php echo jetpack_photon_url ($bgraw . '-1280x450.jpg', 'quality=70') ;?>
I think the problem has been fixed, not seeing those articles in that category.
Also, I’m using W3 Total Cache. Does this caching plugin interfere with Jetpack?
Forum: Plugins
In reply to: [Content Syndication Toolkit Reader] Doesn't work on MultisiteThanks for checking the issue.
I’m using Three WP broadcast plugin and that works. I will try your plugin again on a different install.
Forum: Plugins
In reply to: [W3 Total Cache] Can't create configuration fileSolved it!
The directories ‘cache’ and ‘w3tc-config’ had 705 config and I chrmd it 755.
Forum: Plugins
In reply to: [Broadcast] Force broadcast to blogNever mind. Got it working. Thanks for the code! This is exactly what I’ve been looking for!
One more question, do you know the checkbox for the ‘link this post to its children’?
Forum: Plugins
In reply to: [Broadcast] Force broadcast to blogDidn’t work.
Forum: Plugins
In reply to: [Broadcast] Force broadcast to blogCan you share your code? I’m looking for a way to automatically add checkboxes to broadcast when a user click publish.
Forum: Fixing WordPress
In reply to: Anything better than WordPress export?I went ahead and copy the DB. Wasn’t as complex as I thought it would be.
Thanks.
Forum: Fixing WordPress
In reply to: Anything better than WordPress export?Copy the entire database is the last resort because of the complexity of messing with DBs. Is it better than using a plugin like Duplicator?
Forum: Plugins
In reply to: [Fancy Excerpt] Messes up schedule posts on WP 4.0Well, turns out it’s me. I have a custom theme and that was the problem. Thanks!