Landon
Forum Replies Created
-
Sure can.
https://highschoolaerospace.org/donate/
I have confirmed that my Paypal email address is correct.
Thanks.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Hooks ExampleFantastic. This works very well.
One thing that is missing from the code example above is returning $html.
Here is what I have:
function customize_checkbox($html,$type,$exc,$hide,$taxname,$taxlabel,$taxall,$opt,$c,$defaultclass,$formid,$divclass) { $eid = explode(",", $exc); $args = array('hide_empty'=>$hide,'exclude'=>$eid ); $terms = get_terms($taxname,$taxoargs); //get the terms $count = count($terms); if ( $count > 0 ){ //make sure the taxonomy has terms $html = ''; //clear the original checkbox html $html = '<div class="'.$defaultclass.' '.$divclass.' togglecheck" id="tax-check-'.$c.'"><span class="taxolabel-'.$c.'">'.$taxlabel.'</span >'; $html .= '<input type="hidden" name="taxo['.$c.'][name]" value="'.$taxname.'">';//this is must $html .= '<input type="hidden" name="taxo['.$c.'][opt]" value="'.$opt.'">';//this is must if(!empty($taxall)){ $checkall = (isset($_GET['taxo'][$c]['call']) && $_GET['taxo'][$c]['call'] == '1' ) ? 'checked="checked"' : ''; $html .= '<label><input type="checkbox" id="tchkb-'.$c.'-0" class="tchkb-'.$c.' chktaxoall" name="taxo['.$c.'][call]" value="1" '.$checkall.'>'.$taxall.'</label>'; } $i = 1; foreach ( $terms as $term ) { $value = $term->slug; $checked = (isset($_GET['taxo'][$c]['term']) && in_array($value, $_GET['taxo'][$c]['term'])) ? 'checked="checked"' : ''; $html .= '<label><input type="checkbox" id="tchkb-'.$c.'-'.$i.'" class="tchkb-'.$c.'" name="taxo['.$c.'][term][]" value="'.$value.'" '.$checked.'>'.$term->name.'</label>'; $i++; } } return $html; } add_filter( 'uwpqsf_tax_field_checkbox', 'customize_checkbox', '', 12);
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Hooks ExampleBeautiful reply. I’ll give this a go.
Thanks.
No. I’m using Base by Graph Paper Press. Only past events are not appearing for me.
Forum: Plugins
In reply to: [Accordion Archive Widget] Using the widget on a PageHi Nicola,
this response is probably way too late to be helpful, but you can use a plugin like Stag Custom Sidebars (https://www.ads-software.com/plugins/stag-custom-sidebars/) to create a custom widget area and place it with a shortcode inside your page.I have the same problem.
This is happening with me also. Is anyone else who is experiencing this using Yoast SEO alongside this plugin?
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Askimet and Gravity Forms problemThe Gravity Forms guys will say that this is an ajax issue (probably true). I was experiencing this on one of my sites using Gravity Forms and traced it to my Cloudflare SSL plugin. Only fix I found was removing the Cloudflare plugin.
Forum: Plugins
In reply to: [Lazyest Gallery] Website Slow downHi,
this is more of a hosting question. Here is a basic idea of what is going on:– The more images you have on your site, the more requests you are going to receive to those images. The more requests you have, the better hosting you will need.
OK, I figured out the issues. After looking at my error log, I found that the website was having issues with it’s PHP sessions. Looking a little further, I found that sessions were being saved in a non-default location. After verified that there was no need for this, I changed the site to save PHP sessions in the default location. This immediately fixed my problem.
Forum: Plugins
In reply to: [Awesome Weather Widget] location change by pageI was also looking for the ability to do this and found this previous post. It answered my question, hopefully it will answer yours as well.
https://www.ads-software.com/support/topic/localizing-weather-by-post-location
I’m running into the same problem. When I try to navigate to Types, it tries to take me to /wp-admin/wpcf-cpt instead of /wp-admin/admin.php?page=wpcf-cpt . Also, in Access Manager > Backend Menu > Clicking any of the dropdown options automatically bounces right back up not allowing me to make a selection.
Edit: In addition to that, debug bar shows:
Uncaught TypeError: $j(…).accordion is not a function
/wp-content/themes/bridge/js/admin/default.js?ver=1.0.0 line 294Forum: Plugins
In reply to: [Image Gallery - Responsive Photo Gallery] Problems with Gallery displaysHi,
I am also experiencing this same issue? Anyone have suggestions here?Hi glooorya,
I’d check that you have correct permissions on your plugins folder.Also, AAM’s latest update just stopped supporting PHP 3.2. You might check to see if you have PHP 3.3 + .
Forum: Plugins
In reply to: [Photospace Gallery] Open image in lightboxThank you very much. That is very close to what I was looking for.