monweb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pagination does not workHello,
sorry for my poor english, i’m french.I had this problem with the same code after excluding a category from the loop :
query_posts('cat=-2');I found a solution here : https://wordpress.org/support/topic/excluding-category-from-the-loop-prevents-paged-index
Then i changed my query by :
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-2&paged=$paged");and it works fine.
Hope it helps you.Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] Need help with adding Input Text fieldHello mhoard8110,
The 2 jQuery.ajax functions you have to modify are in the “// Process Poll (User Click “Vote” Button)” section (line 80/100).
You just have to add+ '&pollip_name=' + pollip_name + '&pollip_email=' + pollip_email etc.afterpoll_id + '_nonce=' + poll_nonceinto the functions.Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] Need help with adding Input Text fieldJust to say you forgot to tell me to add the data in the jQuery.ajax function in polls-js.dev.js 😉
It work fine thank you.Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] Need help with adding Input Text fieldThanks a lot digitalrub.
I gonna try this in the afternoon.Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] Need help with adding Input Text fieldI’m looking to do the exact same thing too. :\