slickorange
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Using URL parametersThanks NeoBean, I managed (your initial post did steer me in the right direction) but I am sure your code will help somebody else.. My requirements were a bit more basic. The code I used is this:
jQuery(document).ready(function($) { $('[id^=tdp-] option[value="<?php echo $select_value?>"]').attr("selected", "selected"); function loadAjax(){ var obj = $("[id^=uwpqsffrom_]");//remember to replace the form id process_data(obj); return false; } window.onload = loadAjax; });The nice thing is that even if I add another taxonomy dropdown filter the code will need no adjustment. You can see it in use here: http://www.movingintoaction.co.za/category/directory
Not exactly what you are asking – but it might help:
http://ww.wp.xz.cn/support/topic/post-expiry-based-on-custom-field-solution?replies=1#post-5812670
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Search automatic without the Search ButtonHi friiiick,
When the button is hidden jQuery(‘#uwpqsffrom_842 .usfbtn ‘).click(); wont work since there is no button to “click”.
Try this: ($(“[id^=uwpqsffrom_]”) uses a wild card selector to select all objects with classes starting with uwpqsffrom_, in other words this code will work even if you switch the form.)
jQuery(document).ready(function($) {
function loadAjax(){
var obj = $(“[id^=uwpqsffrom_]”);process_data(obj);
return false;
}
window.onload = loadAjax;});Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Using URL parametersHi NeoBean! I am looking to do exactly the same thing, is it possible to share your code?
Forum: Plugins
In reply to: [Press Permit Access Codes] Fatal ErrorHi Sarah,
Sorry for only getting back to you now – I thought I would get an email when users post topics here but I did not. Only saw it now.
Do you have Press Permit installed?
https://ww.wp.xz.cn/plugins/press-permit-core/Ok, I have determined that BadgeOS is causing the issue… Any ideas on how I could solve this?
I know, but they are mostly well known large plugins that I all need:
– BBPRess
– BuddyPress
– SabaiDirectory
– LearnDash
– BadgeOS
– EventEspresso
…I was hoping you were not going to say that 🙂
Hi, I am having the exact same issue… Please assist.
Turning on debugging did not make me any wiser. If you give me the instructions I can fix it myself…
[UPDATE Oh I see in another thread plugin conflicts can cause this… any suggestions on how I can find out which plugin is causing the issue.. I really have a lot of plugins installed – all of which I need..)
Thanks.
Forum: Plugins
In reply to: [WP Parallax Content Slider] Am I missing something?Don’t worry, you are not the only one.. I am feeling really dumb because I can’t figure out how to add a slide..