mrenrich
Forum Replies Created
-
Same problem here.
Feed 1 syncs ok
Feed 2 get “No results found”.
Help please
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] SNAP Pro Multiuserif I purchase SNAP Pro can I posto to multiple FB pages?
I can try…but the main problem is to mix it with your shortcode.
Any help?
i just asked to discover if there’s a conflict with some wordpress functions or filters, limit posts for example, that’s all.
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] multiple category offsetthanks for suggestion.
i did different queries and I merged them into one array.
it works perfectly now
??
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] multiple category offsetdo u mean something like this?
<?php // WP_Query arguments $args = array ( 'cat' => '2', 'pagination' => true, 'posts_per_page' => '6', 'order' => 'DESC', 'offset' => 4, ); $my_query = new WP_Query( $args ); ?> <ul> <?php if ( $my_query->have_posts() ) { while ( $my_query->have_posts() ) { $my_query->the_post(); ?> <li> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li> <?php } } ?> </ul> <?php wp_reset_postdata(); ?> ----- ----- <?php $args = array ( 'cat' => '3', 'pagination' => true, 'posts_per_page' => '6', 'order' => 'DESC', 'offset' => 4, ); $my_query = new WP_Query( $args ); ?> <ul> <?php if ( $my_query->have_posts() ) { while ( $my_query->have_posts() ) { $my_query->the_post(); ?> <li> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li> <?php } } ?> </ul> <?php wp_reset_postdata(); ?>
how to put the 3 merged queries into ALM shortcode?
thank youForum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] multiple category offsetoffset works only with one category and not with an array of them.
i well know how offset works. the problem is:
if i have 3 categories. i want offset for three of them not just one.
how to sort it out?
about option two (excluding posts).
How is it possible that loop ignores 4 posts I see on the homepage?Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] multiple category offseti mean, if i put this ALM shortcode:
[ajax_load_more post_type="post" category="football,tennis,boxe" offset="3"]
offset works only for football category.
i tried also doing this:
$post_ids = array(); while (have_posts()) : the_post(); $post_ids[] = get_the_ID(); endwhile; ?>
and
if($post_ids){ //Implode the posts and set a variable to pass to our exclude param. $postsNotIn = implode(",", $post_ids); } echo do_shortcode('[ajax_load_more post_type="post" exclude="'.$postsNotIn.'" button_label="load more posts"]');
it works but don’t know why main loop misses 4 posts even if i see them on homepage.
Please help me
Forum: Themes and Templates
In reply to: [Max Magazine] Max Mag Logounfortunately seems that this great theme doesn’t work with wordpress 4.1
try a previous version
try to remove or comment
jQuery(‘#sidebar’).masonry({
itemSelector: ‘.widget’
});line 34 file custom.js
Forum: Themes and Templates
In reply to: [Max Magazine] Removing Tagsput a comment // before function the_tags
Forum: Themes and Templates
In reply to: [Max Magazine] clickable custom background@groupewibi yes, i mean body background. I am trying to put some ads on the background for local companies of my area.
@andrew come on, it was just a lol.
Forum: Themes and Templates
In reply to: [Max Magazine] clickable custom backgroundis it an interview or a support forum? lol
anyway. good css, avg php.
Forum: Themes and Templates
In reply to: [Max Magazine] clickable custom backgroundwhen i put the background image i would insert a clickable link to another site. that’s all