<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Converting from Simple Checkout to Accept Hosted in Wordpress in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70274#M43123</link>
    <description>&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/34985"&gt;@pokerxanadu&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;This code&lt;BR /&gt;&lt;BR /&gt;// Decide which URL to post to&lt;BR /&gt;$environment_url = ( "FALSE" == $environment )&lt;BR /&gt;? '&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;'&lt;BR /&gt;: '&lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;';&lt;BR /&gt;&lt;BR /&gt;if(isset($_POST['wpspf_authorizenet_card-number']) &amp;amp;amp;&amp;amp;amp; $_POST['wpspf_authorizenet_card-number']!=''){&lt;BR /&gt;$wpspf_card_number = sanitize_text_field(str_replace( array(' ', '-' ), '', $_POST['wpspf_authorizenet_card-number'] ));&lt;BR /&gt;}else{ $wpspf_card_number =''; }&lt;BR /&gt;&lt;BR /&gt;if(isset($_POST['wpspf_authorizenet_card-cvc']) &amp;amp;amp;&amp;amp;amp; $_POST['wpspf_authorizenet_card-cvc']!=''){&lt;BR /&gt;$wpspf_cvc = intval($_POST['wpspf_authorizenet_card-cvc']);&lt;BR /&gt;}else{ $wpspf_cvc =''; }&lt;BR /&gt;&lt;BR /&gt;if(isset($_POST['wpspf_authorizenet_card-expiry'])){&lt;BR /&gt;$x_exp_date = str_replace( array( '/', ' '), '', sanitize_text_field($_POST['wpspf_authorizenet_card-expiry'] ));&lt;BR /&gt;}else{&lt;BR /&gt;$x_exp_date='';&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Your web app is sending http post requests with CC data. It doesn’t matter if you store it in a db for PCI purposes. You will get fined less if you fail an audit, probably, but you do not fall under SAQ A or SAQ A-EP, which means you by default are SAQ D and subject to all of the requirements of that scope.&lt;BR /&gt;&lt;BR /&gt;You May have a different idea of what posting data means. I mean http post requests. Your PHP code has $_POST[‘authorize_card_number’], etc. That post variable is used to intercept data that is being posted to your website. Some other page on your app (or maybe the same page) is posting that data to the page in question.&lt;BR /&gt;&lt;BR /&gt;This is the mechanics of how what you are doing is accomplished behind the scenes. There may be no significant difference in the front end user experience than whatever else you were using or had in mind. Also note that even if you directly post data to auth.net, the fact that the payment page is on your server and the cc data isn’t tokenized means you are SAQ D. The two ways to decrease your compliance scope are to a) have any cc data entered on your site tokenized in the browser or b) have your payment page completely outsourced to the payment gateway. That is how you get to A-EP and A, respectively.&lt;BR /&gt;&lt;BR /&gt;As for what to do, I’m sticking with my original answer- nothing. Just keep using your same process. I was unaware that simple checkout uses the same form format as SIM. For your purposes this is a non issue. You do not make an API call to get your form for simple checkout. You post data to that url in the html form from your first post. When they update the SIM type form on your simple checkout, it won’t make a difference. Your app will still work. The customer will just see a different page. The only thing that will break your app is if the url to post to changes, which it probably will not, and if it does all you do is copy and paste a block of HTML.</description>
    <pubDate>Tue, 07 Jan 2020 09:19:07 GMT</pubDate>
    <dc:creator>Renaissance</dc:creator>
    <dc:date>2020-01-07T09:19:07Z</dc:date>
    <item>
      <title>Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70147#M43019</link>
      <description>&lt;P&gt;I have read through all the documentation at Authorize.net to implement Accept Hosted, and all the related threads I could find in this community. Being a novice as a programmer, I'm quite confused and still don't know how to convert my payment buttons in WordPress from Simple Checkout to Accept Hosted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have three payment buttons on my web page:&amp;nbsp;&lt;A href="https://pokerdawgs.net/upcoming-events/#registertampa" target="_blank"&gt;https://pokerdawgs.net/upcoming-events/#registertampa&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Two are for fixed amounts ($65 and $85), and one is for a variable donation amount as selected by the donor (to Special Olympics Florida).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't need to capture any customer/donor information into a database. All I need is an email notification of the payment from Authorize.net with name and amount, like what I get currently with Simple Checkout.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the coding I currently have in my WordPress page for one of the fixed amount buttons (added to the WordPress page through WordPress Code Editor):&lt;/P&gt;&lt;PRE&gt;&amp;lt;form action="https://Simplecheckout.authorize.net/payment/CatalogPayment.aspx" method="post" name="PrePage"&amp;gt;&amp;lt;span style="color: #ff0000; font-size: medium;"&amp;gt; &amp;lt;input name="LinkId" type="hidden" value="*****"&amp;gt; &amp;lt;input alt="Register for Tampa Bay Charity Tournament w/add-on" height="75" name="I1" src="http://pokerdawgs.net/wp-content/uploads/registerhere85.jpg" type="image" width="150"&amp;gt; &amp;lt;strong&amp;gt;&amp;amp;nbsp; &amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span style="color: #ff0000; font-size: medium;"&amp;gt;&amp;lt;strong&amp;gt;$65.00 Entry + $20.00 Charity Add-on, for 10,000 units.&amp;lt;/strong&amp;gt;
&amp;lt;strong&amp;gt;(Add-on funds donated to charities.)&amp;lt;/strong&amp;gt;
&amp;lt;/span&amp;gt;&amp;lt;/form&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;The other two payment buttons are simliar, just different 'value' to correspond to my Simple Checkout settings in Authorize.net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If someone could give me an exact example of the code I need to replace my existing code in the WordPress page for the buttons, and any additional steps I need to do to convert to Accept Hosted, it would be GREATLY appreciated. Please be simple and explicit in the explanation and assume that I know nothing about coding, file locations, etc.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2019 15:07:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70147#M43019</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2019-12-28T15:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70152#M43024</link>
      <description>&lt;P&gt;I found a free WordPress addon to use for now. It's working fine and I've been able to customize it. I just don't know if this is written in one of the APIs that is being retired. Does someone know? Here is the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php
/**
 *
 * @since             1.0.1
 * @package           WP_Service_Payment_Form_With_Authorize.net
 * 
 * @wordpress-plugin
 * Plugin Name:       WP Service Payment Form With Authorize.net
 * Plugin URI:        https://github.com/shivprakash210/wp-service-payment-form-with-authorizenet
 * Description:       WP Service Payment Form With Authorize.net allows to accept payments from credit/debit cards using Authorize.net Gateway with captcha.
 * Version:           1.2.1
 * Author:            Shiv Prakash Tiwari
 * Author URI:        https://github.com/shivprakash210/
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       wpspf_with_authorize.net
 * Domain Path:       /languages/
 */

// Exit if accessed directly
defined( 'ABSPATH' ) || die( 'Wordpress Error! Opening plugin file directly' );

define( 'PLUGIN_PATH', plugins_url( __FILE__ ) );

/************************************************** 
* Activation function
***************************************************/
function wpspf_on_activation()
{
    if ( ! current_user_can( 'activate_plugins' ) )
        return;
    $plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : '';
    global $wpdb;
    require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
    
    check_admin_referer( "activate-plugin_{$plugin}" );     
}

/**************************************************
* Deactivation function
***************************************************/
function wpspf_on_deactivation()
{
    if ( ! current_user_can( 'activate_plugins' ) )
        return;
    $plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : '';
    global $wpdb;   
    require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
    
    check_admin_referer( "deactivate-plugin_{$plugin}" );  
    
}

/**************************************************
* Uninstall function
***************************************************/
function wpspf_on_uninstall()
{
    if ( ! current_user_can( 'activate_plugins' ) )
        return;
    check_admin_referer( 'bulk-plugins' );
    if ( __FILE__ != WP_UNINSTALL_PLUGIN )
        return;
}

/**************************************************
* Register activation, deactivation and unistall hook
***************************************************/
register_activation_hook(   __FILE__, 'wpspf_on_activation' );
register_deactivation_hook( __FILE__, 'wpspf_on_deactivation' );
register_uninstall_hook(    __FILE__, 'wpspf_on_uninstall' );


add_action('admin_menu', 'wpspf_plugin_create_menu');

function wpspf_plugin_create_menu() {
    add_menu_page('Service Payment', 'Service Payment', 'administrator', __FILE__, 'wpspf_plugin_settings_page'  );
    add_action( 'admin_init', 'register_wpspf_plugin_settings' );
}

function register_wpspf_plugin_settings() {
    //register our settings
    register_setting( 'wpspf-plugin-settings-group', 'wpspfnet_enable' );
    register_setting( 'wpspf-plugin-settings-group', 'wpspf_apiloginid' );
    register_setting( 'wpspf-plugin-settings-group', 'wpspf_transactionkey' );
    register_setting( 'wpspf-plugin-settings-group', 'wpspf_transactionmode' );
}

function wpspf_plugin_settings_page() {
    
    if(isset($_POST['submit']) &amp;amp;&amp;amp; wp_verify_nonce($_REQUEST['wpspf_nonce'], 'wpspf_nonce_action')){
        $wpspfnet_enable        = intval($_POST['wpspfnet_enable']);
        $wpspf_apiloginid       = sanitize_text_field($_POST['wpspf_apiloginid']);
        $wpspf_transactionkey   = sanitize_text_field($_POST['wpspf_transactionkey']);
        $wpspf_transactionmode  = intval($_POST['wpspf_transactionmode']);
        $wpspf_paymentheading   = sanitize_text_field($_POST['wpspf_paymentheading']);
        $wpspf_servicetype      = sanitize_text_field($_POST['wpspf_servicetype']);
        
        $wpspf_sitekey       = trim($_POST['wpspf_sitekey']);
        $wpspf_secretekey    = trim($_POST['wpspf_secretekey']);
        
        $wpspfnet_enable_servicetype = intval($_POST['wpspfnet_enable_servicetype']);
        
        $deprecated = null;
        $autoload = 'no';
        
        if ( get_option( 'wpspf_sitekey' ) !== false ) {

            update_option( 'wpspf_sitekey', $wpspf_sitekey );

        } else {
             
            add_option( 'wpspf_sitekey', $wpspf_sitekey , $deprecated, $autoload );
        }
        
            
        if ( get_option( 'wpspf_secretekey' ) !== false ) {

            update_option( 'wpspf_secretekey', $wpspf_secretekey );

        } else {
             
            add_option( 'wpspf_secretekey', $wpspf_secretekey , $deprecated, $autoload );
        }
            
        if ( get_option( 'wpspfnet_enable_servicetype' ) !== false ) {

            update_option( 'wpspfnet_enable_servicetype', $wpspfnet_enable_servicetype );

        } else {
             
            add_option( 'wpspfnet_enable_servicetype', $wpspfnet_enable_servicetype , $deprecated, $autoload );
        }
        
            
        if ( get_option( 'wpspf_servicetype' ) !== false ) {

            update_option( 'wpspf_servicetype', $wpspf_servicetype );

        } else {
             
            add_option( 'wpspf_servicetype', $wpspf_servicetype , $deprecated, $autoload );
        }
        
            
        if ( get_option( 'wpspf_paymentheading' ) !== false ) {

            update_option( 'wpspf_paymentheading', $wpspf_paymentheading );

        } else {
             
            add_option( 'wpspf_paymentheading', $wpspf_paymentheading , $deprecated, $autoload );
        }
        
        
        if ( get_option( 'wpspfnet_enable' ) !== false ) {

            update_option( 'wpspfnet_enable', $wpspfnet_enable );

        } else {
             
            add_option( 'wpspfnet_enable', $wpspfnet_enable , $deprecated, $autoload );
        }
        
        if ( get_option( 'wpspf_transactionmode' ) !== false ) {

            update_option( 'wpspf_transactionmode', $wpspf_transactionmode );

        } else {
             $deprecated = null;
             $autoload = 'no';
            add_option( 'wpspf_transactionmode', $wpspf_transactionmode , $deprecated, $autoload );
        }
        
        if ( get_option( 'wpspf_apiloginid' ) !== false ) {

            update_option( 'wpspf_apiloginid', $wpspf_apiloginid );

        } else {
             $deprecated = null;
             $autoload = 'no';
            add_option( 'wpspf_apiloginid', $wpspf_apiloginid , $deprecated, $autoload );
        }
        
        if ( get_option( 'wpspf_transactionkey' ) !== false ) {

            update_option( 'wpspf_transactionkey', $wpspf_transactionkey );

        } else {
             $deprecated = null;
             $autoload = 'no';
            add_option( 'wpspf_transactionkey', $wpspf_transactionkey , $deprecated, $autoload );
        }
    }
     
?&amp;gt;
&amp;lt;div class="wrap"&amp;gt;
&amp;lt;h3&amp;gt;&amp;lt;?php echo esc_html_e( 'WP Service Payment Form With Authorize.net Plugin For Wordpress', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/h3&amp;gt;
&amp;lt;p&amp;gt;&amp;lt;?php echo esc_html_e( 'Please use "[wpspf-paymentform]" shortcode for payment form.', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;form method="post" action=""&amp;gt;
    &amp;lt;table class="form-table"&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Payment Heading', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="text" style="width:100%;" name="wpspf_paymentheading" value="&amp;lt;?php echo esc_attr(get_option( 'wpspf_paymentheading' )); ?&amp;gt;" required="required" /&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Enable/Disable', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="checkbox" name="wpspfnet_enable_servicetype" value="1" &amp;lt;?php if ( trim(get_option( 'wpspfnet_enable_servicetype' ))==1 ){ echo 'checked'; } ?&amp;gt; /&amp;gt;&amp;lt;?php esc_html_e( 'Check to show service type on front end', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Service type', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;textarea name="wpspf_servicetype" style="width:100%;" required="required" placeholder="seperate service type by | e.g. type one | type two | type three"&amp;gt;&amp;lt;?php echo esc_html_e(get_option( 'wpspf_servicetype' )); ?&amp;gt;&amp;lt;/textarea&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Enable/Disable', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="checkbox" name="wpspfnet_enable" value="1" &amp;lt;?php if ( trim(get_option( 'wpspfnet_enable' ))==1 ){ echo 'checked'; } ?&amp;gt; /&amp;gt;&amp;lt;?php echo esc_html_e( 'Enable Authorize.Net', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
         
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'API Login ID', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="text" name="wpspf_apiloginid" value="&amp;lt;?php echo esc_attr( get_option('wpspf_apiloginid') ); ?&amp;gt;" required="required" /&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Transaction Key', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="text" name="wpspf_transactionkey" value="&amp;lt;?php echo esc_attr( get_option('wpspf_transactionkey') ); ?&amp;gt;" required="required" /&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;   
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Transaction Mode', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="checkbox" name="wpspf_transactionmode" value="1" &amp;lt;?php if ( trim(get_option( 'wpspf_transactionmode' ))==1 ){ echo 'checked'; } ?&amp;gt; /&amp;gt;&amp;lt;?php echo esc_html_e( 'Enable Authorize.Net sandbox (Live Mode if Unchecked)', 'wpspf_with_authorize.net' ); ?&amp;gt;
        &amp;lt;?php wp_nonce_field('wpspf_nonce_action', 'wpspf_nonce'); ?&amp;gt;   
        &amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row" colspan="2"&amp;gt;&amp;lt;h1&amp;gt;&amp;lt;?php echo esc_html_e( 'Google reCAPTCHA Details'); ?&amp;gt;&amp;lt;/h1&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;/tr&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Site key'); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="text" style="width:100%;" name="wpspf_sitekey" value="&amp;lt;?php echo get_option( 'wpspf_sitekey' ); ?&amp;gt;" required="required" /&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        
        &amp;lt;tr valign="top"&amp;gt;
        &amp;lt;th scope="row"&amp;gt;&amp;lt;?php echo esc_html_e( 'Secret key'); ?&amp;gt;&amp;lt;/th&amp;gt;
        &amp;lt;td&amp;gt;&amp;lt;input type="text" style="width:100%;" name="wpspf_secretekey" value="&amp;lt;?php echo get_option( 'wpspf_secretekey' ); ?&amp;gt;" required="required" /&amp;gt;&amp;lt;/td&amp;gt;
        &amp;lt;/tr&amp;gt;
        
    &amp;lt;/table&amp;gt;
    
    &amp;lt;p class="submit"&amp;gt;&amp;lt;input name="submit" id="submit" class="button button-primary" value="Save Changes" type="submit"&amp;gt;&amp;lt;/p&amp;gt;

&amp;lt;/form&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;?php }


function wpspf_paymentform(){
    if(!isset($_GET['action'])){
    $publickey = get_option( 'wpspf_sitekey' );
    $privatekey = get_option( 'wpspf_secretekey' );
    # the response from reCAPTCHA
    $resp = null;
    //check for form submit         
    if(isset($_POST['wpspf_payment']) &amp;amp;&amp;amp; wp_verify_nonce($_REQUEST['wpspf_billpay_nonce'], 'wpspf_nonce_billpay_action')){
        //check for google captcha
        if(isset($_POST['spGoogleCaptchaRes']) &amp;amp;&amp;amp; trim($_POST['spGoogleCaptchaRes'])!='' &amp;amp;&amp;amp; $_POST['spGoogleCaptchaRes']==$_POST['g-recaptcha-response']){
                    // Testing, is it a real transaction
                    $environment = ( intval(get_option( 'wpspf_transactionmode' ))==1 ) ? 'TRUE' : 'FALSE';


                    // Decide which URL to post to
                    $environment_url = ( "FALSE" == $environment ) 
                                       ? 'https://secure.authorize.net/gateway/transact.dll'
                                       : 'https://test.authorize.net/gateway/transact.dll';

                    if(isset($_POST['wpspf_authorizenet_card-number']) &amp;amp;&amp;amp; $_POST['wpspf_authorizenet_card-number']!=''){
                            $wpspf_card_number = sanitize_text_field(str_replace( array(' ', '-' ), '', $_POST['wpspf_authorizenet_card-number'] ));
                    }else{ $wpspf_card_number =''; }

                    if(isset($_POST['wpspf_authorizenet_card-cvc']) &amp;amp;&amp;amp; $_POST['wpspf_authorizenet_card-cvc']!=''){
                            $wpspf_cvc = intval($_POST['wpspf_authorizenet_card-cvc']);
                    }else{ $wpspf_cvc =''; }

                    if(isset($_POST['wpspf_authorizenet_card-expiry'])){
                        $x_exp_date = str_replace( array( '/', ' '), '', sanitize_text_field($_POST['wpspf_authorizenet_card-expiry'] ));
                    }else{
                        $x_exp_date='';
                    }


                    $payload = array(
                        // Authorize.net Credentials and API Info
                        "x_tran_key"            =&amp;gt; esc_attr( get_option('wpspf_transactionkey') ),
                        "x_login"               =&amp;gt; esc_attr( get_option('wpspf_apiloginid')),
                        "x_version"             =&amp;gt; "3.1",

                        // Order total
                        "x_amount"              =&amp;gt; floatval($_POST['payment_amount']),

                        // Credit Card Information              
                        "x_card_num"            =&amp;gt; $wpspf_card_number,              

                        "x_card_code"           =&amp;gt; $wpspf_cvc,

                        "x_exp_date"            =&amp;gt; $x_exp_date,

                        "x_type"                =&amp;gt; 'AUTH_CAPTURE',
                        "x_invoice_num"         =&amp;gt; str_replace( "#", "", sanitize_text_field($_POST['invoice_number'])),
                        "x_test_request"        =&amp;gt; $environment,
                        "x_delim_char"          =&amp;gt; '|',
                        "x_encap_char"          =&amp;gt; '',
                        "x_delim_data"          =&amp;gt; "TRUE",
                        "x_relay_response"      =&amp;gt; "FALSE",
                        "x_method"              =&amp;gt; "CC",

                        // Billing Information
                        "x_first_name"          =&amp;gt; sanitize_text_field($_POST['customer_first_name']),
                        "x_last_name"           =&amp;gt; sanitize_text_field($_POST['customer_last_name']),
                        "x_address"             =&amp;gt; (isset($_POST['service_address'])) ? sanitize_text_field($_POST['service_address']) : '',
                        "x_city"                =&amp;gt; sanitize_text_field($_POST['service_city']),
                        "x_state"               =&amp;gt; sanitize_text_field($_POST['service_state']),
                        "x_zip"                 =&amp;gt; sanitize_text_field($_POST['service_zipcode']),
                        "x_country"             =&amp;gt; sanitize_text_field($_POST['service_country']),
                        "x_phone"               =&amp;gt; sanitize_text_field($_POST['customer_phone']),
                        "x_email"               =&amp;gt; sanitize_text_field($_POST['customer_email']),
                        "x_description"         =&amp;gt; sanitize_text_field($_POST['servicetype']),

                        // Shipping Information
                        "x_ship_to_first_name"  =&amp;gt; sanitize_text_field($_POST['customer_first_name']),
                        "x_ship_to_last_name"   =&amp;gt; sanitize_text_field($_POST['customer_last_name']),
                        "x_ship_to_company"     =&amp;gt; '',
                        "x_ship_to_address"     =&amp;gt; (isset($_POST['service_address'])) ? sanitize_text_field($_POST['service_address']) : '',
                        "x_ship_to_city"        =&amp;gt; sanitize_text_field($_POST['service_city']),
                        "x_ship_to_country"     =&amp;gt; sanitize_text_field($_POST['service_country']),
                        "x_ship_to_state"       =&amp;gt; sanitize_text_field($_POST['service_state']),
                        "x_ship_to_zip"         =&amp;gt; sanitize_text_field($_POST['service_zipcode']),

                        // Some Customer Information
                        "x_cust_id"             =&amp;gt; mt_rand(),
                        "x_customer_ip"         =&amp;gt; $_SERVER['REMOTE_ADDR'],

                    );

                    // Send this payload to Authorize.net for processing
                    $response = wp_remote_post( $environment_url, array(
                        'method'    =&amp;gt; 'POST',
                        'body'      =&amp;gt; http_build_query( $payload ),
                        'timeout'   =&amp;gt; 90,
                        'sslverify' =&amp;gt; false,
                    ) );

                    if ( is_wp_error( $response ) ) 
                        throw new Exception( esc_html_e( 'We are currently experiencing problems trying to connect to this payment gateway. Sorry for the inconvenience.', 'wpspf_with_authorize.net' ) );

                    if ( empty( $response['body'] ) )
                        throw new Exception( esc_html_e( 'Authorize.net\'s Response was empty.', 'wpspf_with_authorize.net' ) );

                    // Retrieve the body's resopnse if no errors found
                    $response_body = wp_remote_retrieve_body( $response );

                    // Parse the response into something we can read
                    foreach ( preg_split( "/\r?\n/", $response_body ) as $line ) {
                        $resp = explode( "|", $line );
                    }


                    // Get the values we need
                    $r['response_code']             = $resp[0];
                    $r['response_sub_code']         = $resp[1];
                    $r['response_reason_code']      = $resp[2];
                    $r['response_reason_text']      = $resp[3];

                    // Test the code to know if the transaction went through or not.
                    // 1 or 4 means the transaction was a success
                    if ( ( $r['response_code'] == 1 ) || ( $r['response_code'] == 4 ) ) {
                        // Payment has been successful
                        $customername = sanitize_text_field($_POST['customer_name']);
                        $servicetype = sanitize_text_field($_POST['servicetype']);
                        echo  '&amp;lt;div class="success"&amp;gt;Thanks! '.$customername.',  Your payment has been successfully completed for service "'.$servicetype.'"&amp;lt;/div&amp;gt;';         
                    } else {
                        // Transaction was not succesful            
                        $error = $r['response_reason_text'];
                        echo  '&amp;lt;div class="error"&amp;gt;'.$error.'&amp;lt;/div&amp;gt;';
                    }
                }else{
                    echo  '&amp;lt;div class="error"&amp;gt;Invalid captcha. Please try again.&amp;lt;/div&amp;gt;';        
                } 
            }                   
        
        ?&amp;gt;
        &amp;lt;style&amp;gt;
            .wc-credit-card-form{ width:100%;}
            .form-field{ width: 100%; padding: 5px; }
            .success{ padding: 10px;border: 1px solid rgb(6, 149, 6);color: rgb(24, 180, 24);}
            .error{ padding: 10px;border: 1px solid #ed0a0a;;color: #ed0a0a;;}
            .wc-credit-card-form th {
                    width: 260px;
             }
            .required {
                color: #ed0a0a;
            }
         &amp;lt;/style&amp;gt;
        &amp;lt;div class="payment_box payment_method_authorizenet_lightweight"&amp;gt;
        &amp;lt;form method="post" id="wpspf_form" onsubmit="return wpspfCheckGrecaptcha();" name="payment" action=""&amp;gt;
            &amp;lt;h4&amp;gt;&amp;lt;?php echo esc_attr( get_option('wpspf_paymentheading') ); ?&amp;gt;&amp;lt;/h4&amp;gt;

        &amp;lt;table id="wc-authorizenet_lightweight-cc-form" class="wc-credit-card-form wc-payment-form"&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt;&amp;lt;?php echo esc_html_e( 'First Name', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="customer_first_name" id="customer_first_name" placeholder="First Name" class="form-field" value="&amp;lt;?php if(isset($_POST['customer_first_name'])){ echo $_POST['customer_first_name']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'Last Name', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="customer_last_name" id="customer_last_name" placeholder="Last Name" class="form-field" value="&amp;lt;?php if(isset($_POST['customer_last_name'])){ echo $_POST['customer_last_name']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;

            &amp;lt;?php if( intval(get_option( 'wpspfnet_enable_servicetype' ))==1 ){ 
            $wpspf_servicetypes = esc_attr( get_option('wpspf_servicetype') );
            if($wpspf_servicetypes!=''){   $wpspf_servicetypes = explode('|',$wpspf_servicetypes); }
               if(!empty($wpspf_servicetypes)){
            ?&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt;  &amp;lt;?php echo esc_html_e( 'Donation Type', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;select name="servicetype" id="servicetype"required="required" class="form-field"&amp;gt;
                    &amp;lt;option value=""&amp;gt;Select any one&amp;lt;/option&amp;gt;
                    &amp;lt;?php 
                          foreach($wpspf_servicetypes as $wpspf_servicetype){
                    ?&amp;gt;
                    &amp;lt;option value="&amp;lt;?php echo $wpspf_servicetype;?&amp;gt;"&amp;gt;&amp;lt;?php echo $wpspf_servicetype;?&amp;gt;&amp;lt;/option&amp;gt;
                    &amp;lt;?php }  ?&amp;gt;
                    &amp;lt;/select&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;?php } } ?&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;
		&amp;lt;th&amp;gt;&amp;lt;?php echo esc_html_e( 'Enter dollar amount below from your Donation Type selection above:', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;/th&amp;gt;
               
            &amp;lt;/tr&amp;gt;            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt;&amp;lt;?php echo esc_html_e( 'Payment Amount ', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="payment_amount" id="payment_amount" placeholder="Payment Amount" class="form-field" value="&amp;lt;?php if(isset($_POST['payment_amount'])){ echo $_POST['payment_amount']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt;&amp;lt;?php echo esc_html_e( 'Street Address', 'wpspf_with_authorize.net' ); ?&amp;gt; &amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="service_address" id="service_address" placeholder="Address" class="form-field" value="&amp;lt;?php if(isset($_POST['service_address'])){ echo $_POST['service_address']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'City', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="service_city" id="service_city" placeholder="City" class="form-field" value="&amp;lt;?php if(isset($_POST['service_city'])){ echo $_POST['service_city']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'State', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="service_state" id="service_state" placeholder="State" class="form-field" value="&amp;lt;?php if(isset($_POST['service_state'])){ echo $_POST['service_state']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'Zip Code', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="service_zipcode" id="service_zipcode" placeholder="Zip Code" class="form-field" value="&amp;lt;?php if(isset($_POST['service_zipcode'])){ echo $_POST['service_zipcode']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;

            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'Phone', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="customer_phone" id="customer_phone" placeholder="Phone" class="form-field" value="&amp;lt;?php if(isset($_POST['customer_phone'])){ echo $_POST['customer_phone']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'Email', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="text" name="customer_email" id="customer_email" placeholder="Email" class="form-field" value="&amp;lt;?php if(isset($_POST['customer_email'])){ echo $_POST['customer_email']; }?&amp;gt;" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            
  
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt;  &amp;lt;?php echo esc_html_e( 'Payment Method”', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;select name="paymentmethod" id="paymentmethod" required="required" class="form-field"&amp;gt;
                    &amp;lt;option value=""&amp;gt;Select any one&amp;lt;/option&amp;gt;
                    &amp;lt;option value="VISA"&amp;gt;VISA&amp;lt;/option&amp;gt;
                    &amp;lt;option value="MasterCard"&amp;gt;MasterCard&amp;lt;/option&amp;gt;
                    &amp;lt;option value="AMEX"&amp;gt;AMEX&amp;lt;/option&amp;gt;
                    &amp;lt;option value="Discover"&amp;gt;Discover&amp;lt;/option&amp;gt;
                    &amp;lt;/select&amp;gt;
                &amp;lt;/td&amp;gt;
                &amp;lt;/tr&amp;gt;
            
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php  echo esc_html_e( 'Credit Card Number', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input id="authorizenet_lightweight-card-number" value="&amp;lt;?php if(isset($_POST['wpspf_authorizenet_card-number'])){ echo $_POST['wpspf_authorizenet_card-number']; }?&amp;gt;" class="form-field"   maxlength="20" autocomplete="off" placeholder="•••• •••• •••• ••••" name="wpspf_authorizenet_card-number" type="text" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
                &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'Expiration Date” (MM/YY)', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input id="authorizenet_lightweight-card-expiry" class="form-field" maxlength="5"  autocomplete="off" placeholder="MM / YY" name="wpspf_authorizenet_card-expiry" value="&amp;lt;?php if(isset($_POST['wpspf_authorizenet_card-expiry'])){ echo $_POST['wpspf_authorizenet_card-expiry']; }?&amp;gt;" type="text" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            &amp;lt;tr&amp;gt;
            &amp;lt;th&amp;gt; &amp;lt;?php echo esc_html_e( 'Security Code”', 'wpspf_with_authorize.net' ); ?&amp;gt;&amp;lt;span class="required"&amp;gt;*&amp;lt;/span&amp;gt;&amp;lt;/th&amp;gt;
            &amp;lt;td&amp;gt;&amp;lt;input id="authorizenet_lightweight-card-cvc" class="form-field" autocomplete="off" placeholder="CVC" name="wpspf_authorizenet_card-cvc" value="&amp;lt;?php if(isset($_POST['wpspf_authorizenet_card-cvc'])){ echo $_POST['wpspf_authorizenet_card-cvc']; }?&amp;gt;" type="text" required="required"&amp;gt;&amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            
            &amp;lt;tr&amp;gt;
                &amp;lt;td&amp;gt;&amp;lt;input type="hidden" id="spGoogleCaptchaRes" name="spGoogleCaptchaRes" value="" required="required"&amp;gt;&amp;lt;/td&amp;gt;
                &amp;lt;td&amp;gt;
                    &amp;lt;div id="spGoogleCaptcha"&amp;gt;&amp;lt;/div&amp;gt;    
                &amp;lt;/td&amp;gt;
            &amp;lt;/tr&amp;gt;
            
            &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td style="text-align:right;padding: 10px;"&amp;gt;
                &amp;lt;IMG src="//payments.intuit.com/payments/landing_pages/LB/default.jsp?c=VMAD&amp;amp;l=H&amp;amp;s=2&amp;amp;b=FFFFFF" width="235" height="35" border=0 alt="Credit Card Logos" /&amp;gt; 
                &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
            &amp;lt;tr id="wpspf_submit_btn" style="display: none"&amp;gt;    &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;       
            &amp;lt;td&amp;gt;
                &amp;lt;?php wp_nonce_field('wpspf_nonce_billpay_action', 'wpspf_billpay_nonce'); ?&amp;gt;
                &amp;lt;input type="submit" name="wpspf_payment" class="btn button form-field" value="Submit Your Donation"&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
            &amp;lt;/table&amp;gt;
        &amp;lt;/form&amp;gt;
        &amp;lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"&amp;gt;&amp;lt;/script&amp;gt;
        &amp;lt;script type="text/javascript"&amp;gt;
            function wpspfCheckGrecaptcha(){
                var spGoogleCaptchaRes = jQuery('#spGoogleCaptchaRes').val();
                if(spGoogleCaptchaRes==''){
                    return false;
                }else{
                    return true;
                }                
            }
      var verifyCallback = function(token) {
        jQuery('#wpspf_submit_btn').show();
        jQuery('#spGoogleCaptchaRes').val(token);
      };

      var expiredCallback = function() {
        jQuery('#wpspf_submit_btn').hide();
        var tokenBlank = '';
        jQuery('#spGoogleCaptchaRes').val(tokenBlank);
      };
      
      var captchaTheme = 'light';
      var sitekey = '&amp;lt;?php echo $publickey; ?&amp;gt;';
      var onloadCallback = function() {        
        grecaptcha.render('spGoogleCaptcha', {
          'sitekey' : sitekey,
          'callback' : verifyCallback,
          'expired-callback' : expiredCallback,
          'theme' : captchaTheme
        });
      };
    &amp;lt;/script&amp;gt;
        &amp;lt;script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&amp;amp;render=explicit"
        async defer&amp;gt;
    &amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
    jQuery(document).ready(function(){ 
        jQuery('#authorizenet_lightweight-card-number').on('keyup', function() {
          var foo = jQuery(this).val().split(" ").join(""); 
          if (foo.length &amp;gt; 0) {
            foo = foo.match(new RegExp('.{1,4}', 'g')).join(" ");
          }
          jQuery(this).val(foo);
        });
        
        jQuery('#authorizenet_lightweight-card-expiry').on('keyup', function() {
          var foo = jQuery(this).val().split("/").join(""); 
            
          if (foo.length &amp;gt; 0) {
            foo = foo.match(new RegExp('.{1,2}', 'g')).join("/");
          }
          jQuery(this).val(foo);
        });
    });
&amp;lt;/script&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;?php
}
}
add_shortcode('wpspf-paymentform','wpspf_paymentform');
?&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 29 Dec 2019 16:52:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70152#M43024</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2019-12-29T16:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70198#M43060</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class=""&gt;&lt;A id="link_3" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/34985" target="_self"&gt;pokerxanadu&lt;/A&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;I'm not all that familiar with the WP plug-in you have chosen, however it &lt;EM&gt;appears&lt;/EM&gt; to be using a mixture of API methods. The AIM POST method is being used it appears, but it also uses terminology related to Authorize.Net API (that which is found and documented in the &lt;A href="https://developer.authorize.net/api/reference/index.html" target="_self"&gt;API Reference Guide&lt;/A&gt;). The AIM POST method is a deprecated API and would suggest that you use Authorize.Net API over AIM as a result.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;If the plug-in you have chosen doesn't provide details on what API methods it is using and you are not sure, I would suggest reaching out to the developer of the plug-in for clarification as needed. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;I hope this information is helpful to you.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Regards, &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Elaine&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2020 19:10:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70198#M43060</guid>
      <dc:creator>ElaineM</dc:creator>
      <dc:date>2020-01-02T19:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70212#M43074</link>
      <description>&lt;P&gt;Thanks, Elaine. Unfortunately, the plugin developer isn't available so I have to try to do it myself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To use the Authorize.net API, which code example in the online reference guide should I be looking to use? Is it the PHP example under "Charging a Credit Card"? Which part of my plugin code that I posted is the AIM POST method that I need to replace with the Authorize.net API?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2020 22:27:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70212#M43074</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2020-01-02T22:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70223#M43083</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class=""&gt;&lt;A id="link_1" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/34985" target="_self"&gt;pokerxanadu&lt;/A&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;I really couldn't comment on another software's plug-in functionality. I would only be guessing. Have you tried the Word Press forums? That would be my recommendation.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Regards, &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Elaine&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 16:54:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70223#M43083</guid>
      <dc:creator>ElaineM</dc:creator>
      <dc:date>2020-01-03T16:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70227#M43087</link>
      <description>&lt;P&gt;Hi Elaine,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you at least answer this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;To use the Authorize.net API, which code example in the online reference guide should I be looking to use for compatability with WordPress? Is it the PHP example under "Charging a Credit Card"?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 23:36:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70227#M43087</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2020-01-03T23:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70228#M43088</link>
      <description>&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/34985"&gt;@pokerxanadu&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;You would want the getAnAcceptPaymentPage. I think that is what it is called. You are in for one heck of an exercise. I’ve done this type of work on CMS before and I would expect to spend minimum 100 hours on this, if I were you.&lt;BR /&gt;&lt;BR /&gt;The accept hosted form is called using a token. You make an API call that gets you a token. Then you submit a form (meaning the user does with a button or your website does with JavaScript, automatically) to auth.net with the token value. There will be a redirect. The customer completes the purchase. Sounds like you might be good as soon as the customer pays, with no more data needed from auth.net. If that isn’t the case, you will have to set up a webhooks endpoint with a server side programming script. Your merchant interface on the auth.net login will have all the info, it is just that your website won’t know the difference without a webhooks endpoint set up and working.&lt;BR /&gt;&lt;BR /&gt;The thing that makes this hard is the massive CMS infrastructure. It is very hard to figure out what content is driven by what script. I fixed a plugin like this for another CMS. The plugin developer told the client what the client wanted was impossible, one day before I had working code and a fully working app. I ended up having to do everything outside of the CMS as if the CMS infrastructure didn’t exist.&lt;BR /&gt;&lt;BR /&gt;I strongly advise you to stay far, far away from the chargeCreditCard script, if you are on Wordpress or if your site makes less than $200k net income. That is an SAQ D scope integration and PCI expects you to follow a security protocol that is literally 65+ pages of bullet points. If someone reports to MasterCard that they think their info was compromised through your site, whether true or not, if you get audited they will check you against this ultra expensive to implement ream of bullet points and if you don’t comply, they will find you $200 to $400 for each order you have processed.&lt;BR /&gt;&lt;BR /&gt;That script is for larger merchants who can handle the overhead and get enough benefit out of having their own checkout form to justify the cost. The costs include hiring specially trained and certified people to scan and pen test your site, which I would say you would be very lucky to get for $4,000 per year, and that’s just a handful of the endless bulletpoints for that method. Short story - stay away.&lt;BR /&gt;&lt;BR /&gt;I’ve just given you a mountain of very hard to digest info. For you I say do it. This will be something that will have you ready to pull your hair out but you will learn something in the process. At the end of it you will be very happy with what you’ve accomplished.</description>
      <pubDate>Sat, 04 Jan 2020 02:17:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70228#M43088</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-04T02:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70233#M43090</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26959"&gt;@Renaissance&lt;/a&gt;&amp;nbsp;Thanks for the detailed reply! Seems this is way too big a project for me. I'm not a programmer by trade. I volunteer to do the website for a small non-proft.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The sales/donation through the website run about 10K per year, with the large majority of that going towards goods given in exchange (auction items, door prizes, etc.). Spending a chunk of money for a developer to write the necessary code is just not affordable for the organization. It is unfortunate that Authorize.net is retiring the very simple solution of Simple Checkout, which requires insertion of just one line of code for our needed transactions. I guess I'll just hold out for as long as Authorize.net continues to make Simple Checkout or AIM API available, and look for another service provider that can provide a similar simple solution in the meantime.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jan 2020 12:31:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70233#M43090</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2020-01-04T12:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70234#M43091</link>
      <description>&lt;P&gt;By the way, the reason I am looking to switch from Simple Checkout to an API solution is that Trent F. at Authorize.net Customer Support wrote this to me in a support case I submitted:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;SPAN&gt;I would highly recommend considering other integration methods as we are updating our system in the future and Simple Checkout will not be available at that time. Here are some links on different integration methods..."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Looking now at other service providers like Square and Stripe, I see they all offer payment buttons comparable to Simple Checkout. And I see that Authorize.net itself still promotes Simple Checkout as a solution on their website. So maybe Trent steered me in the wrong direction! Is it true or not that Authorize.net is retiring Simple Checkout in the near future?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jan 2020 12:53:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70234#M43091</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2020-01-04T12:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70235#M43092</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/34985"&gt;@pokerxanadu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure but that doesn't sound right.&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/25006"&gt;@ElaineM&lt;/a&gt;&amp;nbsp;would be the one to answer that. I do not think I have seen anything at all about simple checkout being deprecated, and if it were they would probably replace it with a new product that works the same.&amp;nbsp; Note that even when integrations are deprecated they still work for years before being retired. SIM has been deprecated for years and there are&amp;nbsp; still a zillion of those up and running. I wouldn't worry if I were you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jan 2020 13:02:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70235#M43092</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-04T13:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70236#M43093</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26959"&gt;@Renaissance&lt;/a&gt;&amp;nbsp;Thank you so much! That's a relief!!&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jan 2020 13:28:57 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70236#M43093</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2020-01-04T13:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70237#M43094</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/34985"&gt;@pokerxanadu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sure thing. Could you mark this thread as solved? Best of luck.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jan 2020 13:45:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70237#M43094</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-04T13:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70238#M43095</link>
      <description>&lt;P&gt;If you don't mind, I'd rather wait to see if&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/25006"&gt;@ElaineM&lt;/a&gt;&amp;nbsp;chimes in to confirm what you said about Simple Checkout before marking this thread solved.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jan 2020 14:05:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70238#M43095</guid>
      <dc:creator>pokerxanadu</dc:creator>
      <dc:date>2020-01-04T14:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70239#M43096</link>
      <description>Yep that’s fine. Glad you’re getting it worked out.</description>
      <pubDate>Sat, 04 Jan 2020 16:55:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70239#M43096</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-04T16:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70255#M43104</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class=""&gt;&lt;A href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/34985" target="_self"&gt;pokerxanadu&lt;/A&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Yes, it is true that both SIM (Server Integration Method) and Simple Checkout, which both use the legacy Authorize.Net hosted payment form, are deprecated and both are on the docket for end-of-life, there are no set dates when this will occur yet however my suspicion is that it will be sometime later this year. The &lt;A href="https://developer.authorize.net/api/upgrade_guide/" target="_self"&gt;Upgrade Guide&lt;/A&gt; has stated for many years that the SIM hosted payment form users should upgrade to Accept Hosted. I do see a &lt;A href="https://wordpress.org/plugins/authorizenet-payment-gateway-for-woocommerce/" target="_self"&gt;WP Accept Hosted&lt;/A&gt; solution on the WP site, although it is for WooCommerce powered sites.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;You may continue using Simple Checkout for as long as it is available to you however. It won't be disabled without notice. Please note that the SIM hosted payment form, and Simple Checkout as a result, do not receive updates for card network mandates, new features and as a reslut may be out of compliance.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Regards,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;Elaine&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 17:02:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70255#M43104</guid>
      <dc:creator>ElaineM</dc:creator>
      <dc:date>2020-01-06T17:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70256#M43105</link>
      <description>&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/25006"&gt;@ElaineM&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Is there a reason simple checkout isn’t on the list of deprecated products? And what would the merchant have to do when it expires? I</description>
      <pubDate>Mon, 06 Jan 2020 17:23:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70256#M43105</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-06T17:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70257#M43106</link>
      <description>And why is the simple checkout still advertised as a solution on the main auth.net page? I know of no other potential EOL product that is offered this way?</description>
      <pubDate>Mon, 06 Jan 2020 17:26:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70257#M43106</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-06T17:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70258#M43107</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class="login-bold"&gt;&lt;A id="link_1" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/26959" target="_self"&gt;Renaissance&lt;/A&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Simple Checkout uses SIM, so they are considered to be one in the same, and SIM has been on the deprecated list for quite some time. In alignment with the Upgrade Guide recommendations, I would suggest upgrading to the Accept Hosted solution.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Regards,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Elaine&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 17:29:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70258#M43107</guid>
      <dc:creator>ElaineM</dc:creator>
      <dc:date>2020-01-06T17:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70263#M43112</link>
      <description>&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/34985"&gt;@pokerxanadu&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;I just looked at your code. This is from the WP app in question? That is not simple checkout. That looks like a DPM or AIM integration, and it looks like you are posting raw cc data on your server.</description>
      <pubDate>Mon, 06 Jan 2020 18:15:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70263#M43112</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-06T18:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Converting from Simple Checkout to Accept Hosted in Wordpress</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70264#M43113</link>
      <description>Ok, I see. That is your new plugin. Get rid of that ASAP.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/25006"&gt;@ElaineM&lt;/a&gt;, I think all this poster cares about is that the application works. And it will work until the simple checkout endpoint to post to changes. I do not think that endpoint will ever change, even after the payment form is update. Simple checkout is not an API based integration so I do think that for this users needs it is fine to just do nothing with the app at all. I imagine this is why this solution is still on the main sales page of auth.net. I am sure they will update the appearance for the hosted form, but as long as the post url doesn’t change it will not impact the app.</description>
      <pubDate>Mon, 06 Jan 2020 18:20:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Converting-from-Simple-Checkout-to-Accept-Hosted-in-Wordpress/m-p/70264#M43113</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2020-01-06T18:20:46Z</dc:date>
    </item>
  </channel>
</rss>

