Kiran

Forum Replies Created

Viewing 15 posts - 166 through 180 (of 238 total)
  • Author
    Posts
  • in reply to: Invoicing / Formidable Forms / Divi conflict #679

    Kiran
    Moderator
    Post count: 7069

    Hello,

    The fix is not included in v1.0.2, it will be in v1.0.3. For now i have updated patch on your site again.

    Please check and let us know.

    Kiran

    in reply to: Invoicing / Formidable Forms / Divi conflict #666

    Kiran
    Moderator
    Post count: 7069

    Hi There,

    Formidable JavaScript conflicts with the jQuery chosen JavaScript of Invoicing plugin. I have fixed it for now by disabling jQuery chosen JavaScript of Invoicing plugin.
    We will find & include better solution in next release to fix this conflict.

    Kiran

    in reply to: Add Send invoice button to front end invoices history #651

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Add Send invoice button to front end invoices history #649

    Kiran
    Moderator
    Post count: 7069

    Hi Laura,

    Add following snippet code via any snippet plugin. This will send invoice to user whenever new invoice created.

    
    
    function _gd_wpi_custom_send_new_invoice( $invoice_id ) {
        global $wpi_gdp_inv_merge;
    
        if ( !empty( $wpi_gdp_inv_merge ) ) {
            return; // Bail when merging invoices via tool.
        }
    
        $gd_invoice = geodir_get_invoice( $invoice_id );
    
        if ( !empty( $gd_invoice->invoice_id ) ) {
            $wpi_invoice = wpinv_get_invoice( $gd_invoice->invoice_id );
    
            if ( !empty( $wpi_invoice->ID ) ) {
                // Send invoice to user.
                wpinv_user_invoice_notification( $wpi_invoice->ID );
            }
        }
    }
    add_action( 'geodir_payment_invoice_created', '_gd_wpi_custom_send_new_invoice', 100, 3 );

    Thanks,
    Kiran

    in reply to: All payments methods visible #622

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Payment button text confusing when fee is zero #620

    Kiran
    Moderator
    Post count: 7069

    Hi David,

    We have fixed changed text when invoice is non recurring & has a zero total.
    This will be available in next release.

    Kiran

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

    Kiran
    Moderator
    Post count: 7069

    Glad to hear that 🙂

    Kiran

    in reply to: All payments methods visible #614

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: VAT number #605

    Kiran
    Moderator
    Post count: 7069

    Thanks for letting us know 🙂

    in reply to: VAT number #603

    Kiran
    Moderator
    Post count: 7069

    Hi Vlad,

    The problem has been fixed, actually for free trial it was hiding the VAT fields on first load.
    Now we have fixed this issue and updated on your site as well.

    Please check and let us know.

    Thanks for spotting 🙂
    Kiran

    in reply to: Invoicing not working – normal GD Checkout comes up instead #598

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

    Kiran
    Moderator
    Post count: 7069

    Hi Lauren,

    Plugin “Indeed Ultimate Membership Pro” causing problem in WP Easy Updates functionality.
    It removes the licence key field. To insert licence key i have Disabled “Indeed Ultimate Membership Pro” > Inserted Key > Validated > Enabled “Indeed Ultimate Membership Pro”.

    We will look from our side to find out why this happening when “Indeed Ultimate Membership Pro” plugin installed.
    Till that in case you want to insert key / update plugin then Disable “Indeed Ultimate Membership Pro” > Update Plugin > Enable “Indeed Ultimate Membership Pro”.

    Kiran

    in reply to: Discount Code Field Missing In Geodirectory Checkout #591

    Kiran
    Moderator
    Post count: 7069

    If Invoicing installed then discount code field will be on Invoicing checkout page.

    The screenshot attached is a Payment Manager checkout page and after Invoicing installed it will use Invoicing checkout page to manage payments.

    This problem also been fixed after fixing this https://wpinvoicing.com/support/topic/all-payments-methods-visible/#post-589.

    Kiran

    in reply to: Stripe Test Payment Stuck on Pending #590

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: All payments methods visible #589

    Kiran
    Moderator
    Post count: 7069

    Hi Lauren,

    I have manually updated Payment Manager plugin. Because Indeed Ultimate Membership Pro plugin causing problem in plugin update process.

    there are no options to add license keys for the auto updates.

    Plugin “Indeed Ultimate Membership Pro” causing this problem. That plugins creates problem in showing licence key in plugins page. To insert licence keys or check update available or not:
    Disable Indeed Ultimate Membership Pro > Insert Keys / Update plugins > Enable Indeed Ultimate Membership Pro.

    I tested manually sending an invoice to myself and I got the attached screen. It looks like there’s two checkouts on the page. Not really sure what’s going on with that. Is there a second plugin from the old invoicing system installed?

    You have assigned page to Invoicing History & Invoice Checkout which used by old Payment Manager. I have fixed it by separating those pages.

    Got another question. Trying to remove the email templates:

    To modify email templates by using standard template system
    Copy directory “plugins/invoicing/templates/emails/” and paste it under “themes/YOUR CURRENT THEME/invoicing/emails/”

    Here you can modify content of files “wpinv-email-footer.php” & “wpinv-email-header.php”
    You can add custom style in file “themes/YOUR CURRENT THEME/invoicing/emails/wpinv-email-styles.php”

    In case you wan to remove template files via hook just use following code snippet.

    
    
    function _wpi_custom_remove_wpinv_email_templates() {
        remove_action( 'wpinv_email_header', 'wpinv_email_header' );
        remove_action( 'wpinv_email_footer', 'wpinv_email_footer' );
    }
    add_action( 'init', '_wpi_custom_remove_wpinv_email_templates', 10 );

    Let us know.

    Thanks,
    Kiran

Viewing 15 posts - 166 through 180 (of 238 total)