Kiran

Forum Replies Created

Viewing 15 posts - 181 through 195 (of 238 total)
  • Author
    Posts
  • in reply to: subscription payments not renewing listings #585

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Stripe Test Payment Stuck on Pending #567

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Strip License Key Unable to be Activated #566

    Kiran
    Moderator
    Post count: 7069

    I asked for FTP here https://wpinvoicing.com/support/topic/all-payments-methods-visible/#post-565
    Once we get it we look into more.

    in reply to: All payments methods visible #565

    Kiran
    Moderator
    Post count: 7069

    Hi Lauren,

    I have looked into backend and there are two checkout pages, seems something workng.

    Please provide FTP credentials, i have to do some debugging to find what causing this.

    Kiran

    in reply to: Billing Information Necessary? #533

    Kiran
    Moderator
    Post count: 7069

    Hi There,

    Use following snippet code to hide billing details from checkout form. Execute this snippet code via any snippet plugin.

    
    
    function _wpi_custom_init() {
        remove_action( 'wpinv_checkout_billing_info', 'wpinv_checkout_billing_info' );
    
        if ( wpinv_use_taxes() ) {
            global $wpinv_euvat;
            if ( !empty( $wpinv_euvat ) ) {
                remove_filter( 'wpinv_checkout_error_checks', array( $wpinv_euvat, 'checkout_vat_validate' ), 10, 2 );
            }
            add_filter( 'wpinv_checkout_required_billing_details', '_wpi_custom_disable_billing_details', 10, 1 );
        }
    }
    add_action( 'init', '_wpi_custom_init', 1 );
    
    function _wpi_custom_disable_billing_details( $return ) {
        return false;
    }

    Let us know how it goes.

    Thanks,
    Kiran

    in reply to: ERROR 500 #484

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: ERROR 500 #482

    Kiran
    Moderator
    Post count: 7069

    Hi Jacqui,

    I have looked into your website, and seems there is a conflicts between plugins.
    Let us provide FTP credentials to look into more.

    Kiran

    in reply to: PDF Invoice Translation (german) #481

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Invoices showing up in Sitemap #475

    Kiran
    Moderator
    Post count: 7069

    Hi Attila,

    You can skip invoices from sitemap by using any one way of following.
    1) Replace

    get_post_types( array('public' => true) ) as $post_type ) {

    with

    get_post_types( array('public' => true, 'exclude_from_search' => false) ) as $post_type ) {

    OR

    2) Replace

    if ( in_array( $post_type, array('post','page','attachment') ) ) continue;

    with

    if ( in_array( $post_type, array('post','page','attachment','wpi_invoice','wpi_quote') ) ) continue;

    Thanks,
    Kiran

    in reply to: PDF Invoice Translation (german) #474

    Kiran
    Moderator
    Post count: 7069

    Hi Atilla,

    Recently, we have fixed translation for some texts. It will be reflected in next release of Invoicing plugin.
    Let us provide site admin & FTP details in private reply if you want me to fix it on your site right now.

    Thanks,
    Kiran

    in reply to: How to add discount #452

    Kiran
    Moderator
    Post count: 7069

    Glad to hear it 🙂

    Yesterday, i run the function to add capabilities, but at that time it not worked.

    Anyway if you face any problem, just let us know.

    Thanks,
    Kiran

    in reply to: Unable to translate these #451

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Unable to translate these #447

    Kiran
    Moderator
    Post count: 7069

    Hi There,

    We have recently field some translation related problem, it will be available in next release.
    Let us provide a site link, admin and FTP credentials in private reply so we can update on your site to check if it works or not.

    Kiran

    in reply to: How to add discount #446

    Kiran
    Moderator
    Post count: 7069

    Hi P B,

    I looked into your site and seems something wrong with applying capabilities to users.
    Let us provide FTP credentials so we can look into more.

    Kiran

    in reply to: Currency sign does not change everywhere in invoice #426

    Kiran
    Moderator
    Post count: 7069

    Hi Atilla,

    Changing currency should not affect the existing invoices until invoices are resaved.
    There is a bug that showing EURO sign instead of USD sign for existing invoices.
    This problem has been fixed and will be available in next released of Invoicing plugin.

    To reflect the changed currency in the existing invoice, you have to re-save that invoice from backend invoice edit page.

    Let us know.

    Thanks,
    Kiran

Viewing 15 posts - 181 through 195 (of 238 total)