chrisamacdonald
Forum Replies Created
-
I found this – works great and looks so much better than most right out of the box and is responsive https://codecanyon.net/item/calendarize-it-for-wordpress/full_screen_preview/2568439
I am using Chrome on a mac, using Gravity Forms Developer Edition version 1.6.3.2 and the option to enable salesforce is not showing in the advanced area and I installed the latest version of the SF plugin.
Ideas?
I am using the same script files you are (cycle,jQuery, etc.) my experience has always been that script files in conflict is what causes this issue. But same problem for me, but I have a client that requested this plugin, sigh . . .
Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] Unable to get page number and advanceHere is a link to the code moderated above:
https://pastebin.com/embed_js.php?i=Bxs0WZtQI have also tried:
if(have_posts()){ $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts($query_string . "&cat=4"); while(have_posts()){ the_post(); global $more; $more = 0;
Forum: Themes and Templates
In reply to: Pagination and Set Current Page Link$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts($query_string . “cat=-4&paged=$paged”);looks like this did it – I was always leaving out the $query_string part . . .sigh. But I am checking with WP to see if this is the answer I need.