Viewing 15 replies - 16 through 30 (of 33 total)
  • Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    You wont see updated in admin panel yet you need to detele previous plugin and reinstall fresh downloaded plugin previous settings will not be lost

    I am working to build a stable version then add a feature to notify for update in admin panel

    Thread Starter sasquatchms

    (@sasquatchms)

    Can I uninstall and then reinstall from the admin panel, or do I have to install via zip?

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    Once you Delete previous one and install current one(deleting plugin wont remove previous settings) i would like you to test a test product for $1USD in live mode so it helps me to know live transaction do work so i can maintain this plugin in a more better way through support of users like you.

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    You can install via zip directly downloaded one from repository I will add a update feature soon to it

    Thread Starter sasquatchms

    (@sasquatchms)

    Wonderful. Thanks. I won’t get to it until tonight, but will test and report back.

    Thread Starter sasquatchms

    (@sasquatchms)

    Just tested and works great! I like the metadata additions as well, nice work. Just curious did you implement the updater yet? Or should I check back here for updates for now?

    Thread Starter sasquatchms

    (@sasquatchms)

    Donation sent!

    I have another request. I’d like to replace the default credit card icon image with my own. With my other payment gateway plugins I use a snippet of code placed in the functions.php file of my child theme. Can you provide this snippet to properly override the default image?

    For example, with PayPal:

    /**
    * Custom icon for PayPal payment option on WooCommerce checkout page.
    */

    function isa_extended_paypal_icon() {
    // picture of accepted credit card icons for PayPal payments
    return ‘/URL-TO-CUSTOM-LOGO/credit_card_icons.png’;
    }
    add_filter( ‘woocommerce_paypal_icon’, ‘isa_extended_paypal_icon’ );

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    Thanks Very much for donation
    1-I believe Next time updates will be visible to you automatically
    2-I will provide the code to override the default icon

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    I just added following code to my function.php and got what you needed see here https://awesomescreenshot.com/0d64xbzma5 ( link expires in a month)

    /*Overide Stripe Icon on checkout*/
    function isa_extended_stripe_icon() {
    // picture of accepted credit card icons for PayPal payments
    return ‘/URL-TO-CUSTOM-LOGO/credit_card_icons.png’;
    }
    add_filter( ‘woocommerce_stripe_icon’, ‘isa_extended_stripe_icon’ );

    Thread Starter sasquatchms

    (@sasquatchms)

    Worked like a charm!

    Thanks for all the custom modifications! You’re one of the good ones. ?? Cheers! Keep up the great work.

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    Cheers!

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    I am about to release new version so above code would change as i have added feature to show dynamic card logo based on card type allowed in admin so code would be

    function isa_extended_stripe_icon() {
    	$icon = '';
    	$icon .= '<img src="https://localhost/waynemcdonell/wp-content/themes/twentyfourteen/images/authorizenet.png" alt="Stripe Payment Gateway" />';
    return $icon;
    }
    add_filter( 'woocommerce_stripe_icon', 'isa_extended_stripe_icon' );
    Thread Starter sasquatchms

    (@sasquatchms)

    How does the change affect refunds?

    I am running an unmodified version of the plugin, by the way.

    Plugin Author syednazrulhassan

    (@nazrulhassanmca)

    No the code above is not for refund it is for custom icon change on checkout that you added functions.php

    Thread Starter sasquatchms

    (@sasquatchms)

    Oh okay, cool, so I can remove the functions code since you are adding it by default? Thanks for the heads up!

Viewing 15 replies - 16 through 30 (of 33 total)
  • The topic ‘"This plugin does not support refunds in woocommerce interface."’ is closed to new replies.