Archives: Snippets
Untitled Snippet
EarnQuick đ āĻĄāĻŋāĻāĻŋāĻāĻžāϞ āϏāĻžāĻĢāϞā§āϝā§āϰ āϏāĻā§āĻā§ āĻāĻĒāύāĻžāϰ āĻŦā§āϝāĻŦāϏāĻžāĻā§ āĻĄāĻŋāĻāĻŋāĻāĻžāϞ āĻāϰā§āύ, āĻāĻŽāϰāĻž āĻĒā§āϰāĻĻāĻžāύ āĻāϰāĻŋ āĻĒā§āϰāĻŋāĻŽāĻŋāϝāĻŧāĻžāĻŽ āϏāϞāĻŋāĻāĻļāύāĨ¤ āĻāĻŽāĻžāĻĻā§āϰ āϏā§āĻŦāĻžāϏāĻŽā§āĻš đ đģ đ đĨ ⨠āĻāϝāĻŧā§āĻŦ āĻĄā§āĻā§āϞāĻĒāĻŽā§āύā§āĻ āĻāϧā§āύāĻŋāĻ āĻ responsive website developmentāĨ¤ đ āĻĄāĻŋāĻāĻŋāĻāĻžāϞ āĻŽāĻžāϰā§āĻā§āĻāĻŋāĻ SEO, Social Media Marketing, PPC CampaignsāĨ¤ đ āĻā§āϰāĻžāĻĢāĻŋāĻ āĻĄāĻŋāĻāĻžāĻāύ…Continue reading
Submission form online
Fix Formating of Buttons in Off Canvas
;(function($) { $(document).on(‘pp_offcanvas_after_init’, function(e, $scope) { $scope.find(‘.pp-offcanvas-body’).addClass(‘fl-page’); }); })(jQuery);Continue reading
Move WPCode “Status” Column from Last to First (WPCode)
Set Background Color for Active Snippets (WPCode)
Allow free shipping for EDD Simple Shipping
Conditionally disable Cloudflare Turnstile
/** * Conditionally disable Cloudflare Turnstile * * @param array $form_data Form data. * @return array Modified form data. */ function wpf_disable_turnstile( $form_data ) { // Disable CAPTCHA setting. $form_data[‘settings’][‘recaptcha’] = ‘0’; return $form_data; } add_filter( ‘wpforms_frontend_form_data’, ‘wpf_disable_turnstile’, 10, 1…Continue reading
Number slider validation for multi page forms
/** * Prevent moving to next page if Number Slider value is below a threshold. * * Outputs inline JS in the footer for the target form. */ add_action(‘wpforms_wp_footer_end’, function () { // where 1520 is the form ID and…Continue reading
Number slider validation for single page forms
/** * Validate Number Slider on submit and require a non-zero value. * * Runs after the form is submitted and before processing completes. * * @param int $field_id Current field ID being validated. * @param mixed $field_submit Submitted value.…Continue reading