• Resolved Ataboy872

    (@ataboy872)


    Hi!

    Please tell me how to integrate Сaptcha in the WP Affiliates plugin.

    WP Affiliates has the following filters:

    /**
        * Returns captcha field markup.
        *
        * @return captcha field markup
        */
        static function captcha_get( $value ) {
            $style = 'display:none;';
            $field = '<input name="' . Affiliates_Utility::$captcha_field_id . '" id="' . Affiliates_Utility::$captcha_field_id . '" class="' . Affiliates_Utility::$captcha_field_id . ' field" style="' . $style . '" value="' . esc_attr( $value ) . '" type="text"/>';
            $field = apply_filters( 'affiliates_captcha_get', $field, $value );
            return $field;
        }
    
        /**
        * Validates a captcha field.
        *
        * @param string $field_value field content
        * @return true if the field validates
        */
        static function captcha_validates( $field_value = null ) {
            $result = false;
            if ( empty( $field_value ) ) {
                $result = true;
            }
            $result = apply_filters( 'affiliates_captcha_validate', $result, $field_value );
            return $result;
        }

    https://ww.wp.xz.cn/plugins/captcha/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    We have received your request and it is now being processed. We will get back to you on this forum as soon as we can.

    Regards,
    BestWebSoft Support Team

    Hi,

    Requested integration is a paid service. We need time to implement it. If you are interested in a paid plugin customization, we will consider the ability to integrate your WP Affiliates plugin with our plugin and make an assessment.

    Please, follow the next steps in order to request a paid customization service:
    1) Submit a private request here – http://support.bestwebsoft.com/hc/en-us/requests/new
    2) Make sure to include details about required changes.
    3) Our manager will contact you back with estimation (possible questions) and a payment link.
    4) Answer questions (if applicable) or complete the payment.
    5) We will contact you upon payment approvement.
    6) The work will be performed by our specialist.
    7) Usually it takes about 2 – 4 hours to complete the desired changes after receiving your payment (we start after 100% pre-payment only). However, the time depends on complexity of this task, number of desired changes and availability of our team.

    Regards,
    BestWebSoft Support Team

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Captcha WP AFFILIATES’ is closed to new replies.