getrouty
Forum Replies Created
-
Forum: Plugins
In reply to: Chase Paymentech Orbital Gateway E-commerce SiteGood 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
Forum: Hacks
In reply to: Custom Log In, request for reauth on wp-adminYou 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; } }
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Disable Canonical URL'sYeah 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.
Forum: Plugins
In reply to: Shopping Cart with Chase Paymentech GatewayJust 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
Forum: Plugins
In reply to: Shopping Cart with Chase Paymentech GatewayI 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.