Forum Replies Created

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

    (@cspencepratt)

    So, I figured out that it was one of my tabs that is identical in regards to every other tab, but it has an EA Data Table in it. Is there any way to fix this without having to remove the EA Data Table?

    Thank you.

    • This reply was modified 3 years ago by cspencepratt. Reason: Resolved: See above post
    cspencepratt

    (@cspencepratt)

    Same issue here. Oddly the Saved Templates show in the tabs fine on the backend, but on the front end of my site nothing displays when I click through the Tab Headers ??

    • This reply was modified 3 years ago by cspencepratt. Reason: Solved: It was SVG Icons I had uploaded causing issues for some reason
    Thread Starter cspencepratt

    (@cspencepratt)

    For the time being I fixed the “Payment Method” dropdown by removing it from “functions.php”. I removed the following:

    $fieldHtml .= '<tr><th>Payment Method<span class="required">*</span></th><td><select name="paymentmethod" id="paymentmethod" required="required" class="form-field">
    						<option value="">Select any one</option>';
    
    		if(get_option('wpspfnet_enable_check')==1){
    			$fieldHtml .='<option value="">------- Credit/Debit Cards -------</option>';
    		}
    
    		$fieldHtml .= '<option value="VISA">VISA</option>
    	                    <option value="MasterCard">MasterCard</option>
    	                    <option value="AMEX">AMEX</option>
    						<option value="Discover">Discover</option>';
    
    		if(get_option('wpspfnet_enable_check')==1){
    			$fieldHtml .='<option value="">---- Checking/Savings Account ----</option>
    						<option value="CHECKING">Checking Account</option>
    						<option value="SAVINGS">Savings Account</option>';
    		}
    		$fieldHtml .= '</select></td></tr>';

    I also fixed the Credit Card Logos by uploading my own image and replacing the following code in “functions.php”:

    $fieldHtml .='<tr><td></td><td style="text-align:right;padding: 10px;"><IMG src="https://www.mysite.com/wp-content/plugins/wp-service-payment-form-with-authorizenet/img/cclogos.png" width="235" height="40" border=0 alt="Credit Card Logos" /></td></tr>';

    If an Update is released for the plugin in the future, I assume these changes will get wiped out though, so a more permanent fix is likely needed.

    Thanks!

    I am having the same issue. In my Google Merchant Center I see two sub-accounts with identical names as my website. I have disconnected them in WordPress, but they still remain in my Google Merchant Center.

    I can not delete them from the Google Merchant Center, because they state this every time I try to close them:

    This account is a sub-account. It is linked to a main account. To delete this sub-account, contact the administrator of the main account.

    I spent 2 hours yesterday trying to figure out how to remove these accounts and scoured Google to no avail. I tried using wp-admin/admin.php?page=connection-test-admin-page and it already shows my Merchant Center and Google Account as “disconnected”. I tried clicking Disconnect again anyways, but the two duplicate sub-accounts in Google Merchant Center remain.

    How the heck do I remove those sub-accounts from my Google Merchant Center linked to my Gmail account? I would like to have full control of my Merchant Center, and this has been highly frustrating that I can not remove accounts because the Administrator is someone other than myself.

    Any help would be greatly appreciated. Thank you!

    Debug Results:

    Merchant Center Status:

    `Request: GET /wc/gla/mc/connection
    Status: 200
    Response: {
    “id”: 0,
    “status”: “disconnected”
    }`

    Google Account Status:

    `GET https://api-vipgo.woocommerce.com/google/connection/google-mc
    array (
    ‘headers’ =>
    array (
    ‘Authorization’ => ‘X_JP_Auth token=”LULZB*Ad9z*whT&YfS)GtitnnJed2YFT:1:0″ timestamp=”1632929785″ nonce=”JBPTL0tQpU” signature=”lNr7JBOc4ShvaWsuDGI6GXV4LY8=”‘,
    ),
    ‘method’ => ‘GET’,
    )
    {“status”:”disconnected”}`

    Google Ads Status

    `Request: GET /wc/gla/ads/connection
    Status: 200
    Response: {
    “id”: 0,
    “currency”: “USD”,
    “status”: “disconnected”
    }`

    Thread Starter cspencepratt

    (@cspencepratt)

    I’m thinking I would just need to implement something like the following in the appropriate area of your PHP code. Any advice on where to add this, or guidance on a better solution to remove commas/special characters from the Amount field?

    $list = array(“,”);
    $clean = str_replace($list, “”, $_POST[‘payment_amount’]);
    echo $clean;

    Maybe add a function like?

    function clean_input($in) {
    $list = array(“,”);
    $clean = str_replace($list, “”, $in);
    return $clean;
    }
    $output = clean_input($_POST[‘payment_amount’]);
    echo $output;`

    Thank you!

    • This reply was modified 3 years, 9 months ago by cspencepratt.
    • This reply was modified 3 years, 9 months ago by cspencepratt.
Viewing 5 replies - 1 through 5 (of 5 total)