yoav.aner
Forum Replies Created
-
Forum: Plugins
In reply to: [Ajaxize] use with pluginno problem, sorry I didn’t actually solve your problem, but hope you can manage. Let me know if there’s anything else specific to ajaxize.
Forum: Plugins
In reply to: [Ajaxize] use with pluginI’m not sure exactly, but as I said, if I were you, I’d leave any forms out of the cache anyway, and not risk having weird behaviour. Forms / shopping carts etc are meant to show or get unique user input so I would simply exclude them from any caching.
As for using ajax. You can if you really know what you’re doing. But if it’s a 3rd party plugin, I would be careful trying to play around too much with it.
Sorry I’m not of much help, but this seems like a pretty specific problem to this plugin / website.
Forum: Plugins
In reply to: [Ajaxize] use with pluginI had a quick look, but it’s hard to say exactly why it fails. I don’t know the plugin or how it handles form submissions, or how it works *without* ajaxize. To be honest, If I were you I would just put the form on the page as usual, and exclude the page with the form from your caching if you use any (I assume the reason to use ajaxize for the form is when the page might be cached? and otherwise, I don’t see a need to ajaxize this…).
I see that you’re using W3TC. It’s easy to exclude one page / url from the cache with this plugin. It’s much easier (and probably better) than trying to ajaxize just the form.
Forum: Plugins
In reply to: [Ajaxize] use with pluginCan you explain what’s not working exactly?
Forum: Plugins
In reply to: [Ajaxize] use with pluginAh, this plugin is not free, so I can’t check the source code and can’t find any documentation.
However, you can probably add a small function to your functions.php file:
function ajaxize_wpc_client_registration_form() { echo do_shortcode('[wpc_client_registration_form]'); }and then use
ajaxize_wpc_client_registration_formas the function name for ajaxize. This should hopefully work (untested)Forum: Plugins
In reply to: [Ajaxize] use with pluginthis was posted twice, so I’m marking this as resolved.
Forum: Plugins
In reply to: [Ajaxize] use with pluginHi neoseeyou,
Normally a shortcode is calling a function in the background, so to ‘ajaxize’ this shortcode, you would need to find the name of the function that the shortcode calls.
If you give me the name of the plugin and the shortcode that you use, I can try and have a look for you and see if it’s possible to ajaxize it.
Cheers
YoavForum: Plugins
In reply to: [Pingdom Status] Serious Security Exploit – Disable this plugin now!Thanks for the heads-up!
Looks like this plugin is no longer maintained on wordpress.org, which is a shame. Or maybe I just couldn’t find it?
To apply a quickfix for this. in wp-content/plugins/pingdom-status/php/wsproxy/PingdomStatus_wsmain.php you can comment out the line that echos the request
// Somehow write to wordpress error log. if($doEcho){ echo $toWrite; }… and change your username/password on pingdom of course.
Forum: Plugins
In reply to: [Ajaxize] [Plugin: Ajaxize] Not Working and Not Including js fileDidn’t hear back from OP for some time, so marking as resolved
Forum: Plugins
In reply to: [Ajaxize] [Plugin: Ajaxize] Whats the function namne for this plugin? HELPDidn’t hear back from OP for some time, so marking as resolved
Forum: Plugins
In reply to: [Ajaxize] [Plugin: Ajaxize] Infinite loopDidn’t hear back from OP for some time, so marking as resolved
Forum: Plugins
In reply to: [Ajaxize] [Plugin: Ajaxize] Whats the function namne for this plugin? HELPare you using nginx as your web server? If so, then take a look at a potential solution on the answer I gave here: http://wordpress.org/support/topic/plugin-ajaxize-infinite-loop
Forum: Plugins
In reply to: [Ajaxize] [Plugin: Ajaxize] Whats the function namne for this plugin? HELPI don’t know this plugin and haven’t tested it, but simply follow the instructions above, and use wp_days_ago as the function name on the settings->ajaxize page. Then copy&paste the div that ajaxize outputs to the appropriate php file for your theme. the output div would look something like:
<div id="ajaxize_this:wp_days_ago:b48260e95c5c15da55b33dfed6027ea17d33b478"></div>Forum: Plugins
In reply to: [Ajaxize] [Plugin: Ajaxize] Whats the function namne for this plugin? HELPWhat are you trying to do exactly? If you want to ‘ajaxize’ this function (or any function) you created, as long as it does not expect any parameters, simply do the following:
go to your wordpress admin, Settings->Ajaxize
Enter the function name in the ‘Function Name’ field, and click ‘Generate DIV’. Then you can copy&paste this div into any page/widget you want. You can also see the output below.If you’re still having trouble, you can also simply click on ‘Help’ and there’s much more information available.
Forum: Plugins
In reply to: [Ajaxize] [Plugin: Ajaxize] Not Working and Not Including js fileHey there,
Sorry to hear it’s not working for you. Are you able to provide more information? Your wordpress version, theme etc.
Does it work when you generate the div on the settings menu? What do you see if you use
ajaxize_testas your function on the settings->Ajaxize screen?