Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter getrouty

    (@getrouty)

    Good News! We have also developed a Chase Paymentech Gateway Plugin for use with the WooCommerce platform! Come check it out at our website, https://www.getrouty.com

    You sir, are a gentlemen and a scholar. Thanks! =) Just for kicks, here is a working example after receiving the post from the login form:

    if ($_POST) {
    
        $errors = array();
    
        $username = $wpdb->escape($_REQUEST['username']);
        $password = $wpdb->escape($_REQUEST['password']);
        $remember = $wpdb->escape($_REQUEST['rememberme']);
        $remember = ($remember) ? "true" : "false";
    
        $login_data = array();
        $login_data['user_login'] = $username;
        $login_data['user_password'] = $password;
        $login_data['remember'] = $remember;
        $user_verify = wp_signon($login_data, true);
    
        if (is_wp_error($user_verify)) {
            $errors[] = 'Invalid username or password. Please try again!';
        } else {
            wp_set_auth_cookie($user_verify->ID);
    
            if(isset($_POST['redirect_to'])){
                $go_to = $_POST['redirect_to'];
            } else {
                $go_to = home_url();
            }
    
            wp_redirect($go_to);
            exit;
        }
    
    }
    Thread Starter getrouty

    (@getrouty)

    Yeah I modified the plugin by passing false as the value for the echo param where it is calling the canonical function.. either way, it’s a hack and as you said will be over-written once upgraded. Thanks for your response, hopefully Yoast will add some options.

    Just an update – the plugin is complete and a merchant has been successfully certified using it. Individual merchant certification is required using this plugin. I can complete certification for you or your client if interested, there will obviously be a considerably higher cost for doing so. Anyone interested, just shoot me an email – nick at getrouty.com

    I have developed a gateway plugin for chase paymentech for the Shopp wordpress plugin. Shoot me an email at nick at getrouty.com if you are interested in purchasing the plugin for $25.00. It is currently going through final testing with chase and will be available shortly.

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