redsentence
Forum Replies Created
-
Forum: Plugins
In reply to: [Login No Captcha reCAPTCHA] reCAPTCHA on wp_login_form()Hi Robert,
I’ve created a custom login pop up, so not using the main wp-loginMany thanks
JasonForum: Plugins
In reply to: [Login No Captcha reCAPTCHA] reCAPTCHA on wp_login_form()Hi Robert
Thanks but when I remove that the form disappears, I only get the captcha box.
Thanks!
JasonForum: Plugins
In reply to: [Login No Captcha reCAPTCHA] reCAPTCHA on wp_login_form()Hi Robert,
I am getting the same issue as above. So I am calling the form then the captcha as follows:wp_login_form(); do_action('login_form');
But when trying to login, its redirecting me to the wp-login page with the error: Please check the ReCaptcha box.
Many thanks
JasonForum: Plugins
In reply to: [Ultimate WP Query Search Filter] Parent/child taxonomy termsIgnore me I fixed it! It had to be
if($type == 'dropdown'){
not
if($type == 'select'){
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Parent/child taxonomy termsThanks I have tried to get it to work for a dropdown but with no luck. Here is what I have tried:
add_filter('uwpqsf_tax_field_dropdown','custom_select_output','',12); function custom_select_output($html,$type,$exc,$hide,$taxname,$taxlabel,$taxall,$opt,$c,$defaultclass,$formid,$divclass){ $eid = explode(",", $exc); $args = array('hide_empty'=>$hide,'exclude'=>$eid, 'hierarchical' => true, 'parent' => 0 ); $taxoargs = apply_filters('uwpqsf_taxonomy_arg',$args,$taxname,$formid); $terms = get_terms($taxname,$taxoargs); $count = count($terms); if($type == 'select'){ $html = '<div class="jas '.$defaultclass.' '.$divclass.' tax-select-'.$c.'"><span class="taxolabel-'.$c.'">'.$taxlabel.'</span>'; $html .= '<input type="hidden" name="taxo['.$c.'][name]" value="'.$taxname.'">'; $html .= '<input type="hidden" name="taxo['.$c.'][opt]" value="'.$opt.'">'; if(!empty($taxall)){ $html .= '<select id="tdp-'.$c.'" class="tdp-class-'.$c.'" name="taxo['.$c.'][term]">'; $html .= '<option selected value="uwpqsftaxoall">'.$taxall.'</option>'; } if ( $count > 0 ){ foreach ( $terms as $term ) { $selected = $terms[0]->term_id; $html .= '<option value="'.$term->slug.'">'.$term->name.'</option>'; $args = array( 'hide_empty' => false, 'hierarchical' => true, 'parent' => $term->term_id ); $childterms = get_terms($taxname, $args); foreach ( $childterms as $childterm ) { $selected = $childterms[0]->term_id; $html .= "<option value='".$childterm->slug."'".">-" . $childterm->name . '</option>'; }} } $html .= '</select>'; $html .= '</div>'; return $html; } }
Hi Brian,
Thanks for the reply I did try that with no luck unfortunately.Thanks
JasonForum: Plugins
In reply to: [Auto Add Tags] Doesn't work on custom post typesIgnore me it works!
Forum: Themes and Templates
In reply to: [The Bootstrap] Invalid MarkupOnly just got round to this, works a charm! Thank you
Forum: Themes and Templates
In reply to: [The Bootstrap] Invalid MarkupHi, thanks for the replies. Yes it was from W3C validator, unfortunately its how my clients like to check for validation so I need to adhere as much as possible. Thanks siobhyb I will give it a try!
Jason
Forum: Plugins
In reply to: [Portfolio Slideshow] [Plugin: Portfolio Slideshow] Opacity ChangeLegend! Thank you. Css I’m fine with, JS gets me everytime.
Thanks again.
Forum: Plugins
In reply to: [Portfolio Slideshow] [Plugin: Portfolio Slideshow] Opacity ChangeSure here is a sample page: https://www.stephenburridge.com/lisa-ray-3/
I think it is the theme actually, just struggling to find the code.
Thanks