ravimevcha
Forum Replies Created
-
any solution for this??Even after updating to latest version this problem is not solved.
I have similar problem. I am using %%cf_role%% and %%cf_cmp%% as custom variable for titles. However snippet view does not show actual value. Problem is in snippet view only, when I open up my actual post in browse Title is coming up properly.
Forum: Themes and Templates
In reply to: [Hueman] [Request] Support for Infinite ScrollHi,
I tried adding code given by Mithun in my function.php but its not working for me.
Do I need to make any changes to other files as well or just copying this code in function.php?
/** * Infinite Scroll */ function custom_infinite_scroll_js() { if( ! is_singular() ) { ?> <script> var infinite_scroll = { loading: { img: 'data:image/gif;base64,R0lGODlhAQABAHAAACH5BAUAAAAALAAAAAABAAEAAAICRAEAOw==', msgText: '<?php _e( '<i class="fa fa-cog fa-spin"></i>Fetching...', 'custom' ); ?>', finishedMsg: "<?php _e( 'All articles fetched.', 'custom' ); ?>" }, "nextSelector":".pagination a:last-child", "navSelector":".pagination", "itemSelector":".post-row", "contentSelector":".post-list" }; jQuery( infinite_scroll.contentSelector ).infinitescroll( infinite_scroll ); </script> <?php } } add_action( 'wp_footer', 'custom_infinite_scroll_js',100 );Forum: Plugins
In reply to: [WP VeriteCo Timeline] Number of timeline postsThanks a lot Josh. It’s working now. I can see all the timeline instead of just 10.
many thanks..
Forum: Plugins
In reply to: [WP VeriteCo Timeline] Number of timeline postsAnnekee, I tried multiple time, even on different machine where I was opening site for first time, still it shows only last 10 entries.
Is there any other way to solve it?
Forum: Plugins
In reply to: [WP VeriteCo Timeline] Number of timeline postsBelow solution doesn’t work for me.
$post_count = -1; // minus one = show all, or enter your max number
$last = $loop->post_count;Josh,
It would be great it if you can tell us when the next version will be available with this fix.