Patrik

Forum Replies Created

Viewing 15 posts - 331 through 345 (of 391 total)
  • Author
    Posts
  • in reply to: Stripe is unable to generate a subscription #1972

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Hook after payment confirmed but before email sent #1960

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    Can you please let us know which details you are changing for invoice and also tell us your exact requirements so that we can tell you the solution if possible else you can get the help of the Developer for customisation. It may be possible you have to change the code to fulfill your requirements as we have the plugin general for all but we have given all possible hooks from our side. If you think there is need of hook in future releases then just let us know and we will look into it.

    Regards,
    Patrik

    in reply to: Very strange situation #1959

    Patrik
    Moderator
    Post count: 1971

    Hi

    For pre-bank transfer banking, you can go to Invoicing->Settings->Payment Gateways->Pre Bank Transfer and enable it. You can change the title and description as per your requirements. You can also follow our create payment gateway guide(link provided above) for creating a new gateway.

    Regards,
    Patrik

    in reply to: Supreme Directory and Invoicing Plugin #1958

    Patrik
    Moderator
    Post count: 1971

    Hi Sam,

    It seems the plugin installation was not proper and that is why gd checkout may creating problems. I have created a new page with wpi-checkout and assigned it as a checkout page from the invoicing settings and I can checkout from there successfully. Please test it from your side and let me know if it works for you or not.

    Regards,
    Patrik

    in reply to: Hook after payment confirmed but before email sent #1942

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    That is the hook actually and you can’t modify the variable from hook. For that, you need a filter. You may try filter instead of the action. Try changing add_action() to add_filter() and let me know if it works or not. You may need to make a change in core and add filter if it doesn’t work.

    Regards,
    Patrik

    in reply to: Very strange situation #1940

    Patrik
    Moderator
    Post count: 1971

    Hi Lev,

    It seems the extra HTML code(menu) is added by the plugin responsive menu dynamically. I have remoed their filter for the invoice page and it is now removed. Let me know your inputs here. I have added following code in functions.php of the current theme, if you think it is affecting something then you can remove that:

    
    
    function wpinv_footer_script_cb() {
    	global $wp_query;
    	$post_id = $wp_query->get_queried_object_id();
    	if ( ( is_single() || is_404() ) && !empty( $post_id ) && (get_post_type( $post_id ) == 'wpi_invoice' or get_post_type( $post_id ) == 'wpi_quote')) {
    	    remove_all_actions( 'wp_footer');
    	}
    }
    add_action( 'wp_footer', 'wpinv_footer_script_cb' );

    Regards,
    Patrik

    in reply to: Very strange situation #1936

    Patrik
    Moderator
    Post count: 1971

    Hi Lev,

    We are not able to connect the FTP details you have provided. Please verify it from your side as well and provide us the working FTP credentials.

    Regards,
    Patrik

    in reply to: Very strange situation #1917

    Patrik
    Moderator
    Post count: 1971

    Hi Lev,

    Please post admin and FTP credentials here in private reply and we will look more into this.

    Regards,
    Patrik

    in reply to: Sender name in head-section of invoice #1903

    Patrik
    Moderator
    Post count: 1971

    Hi Ulf Mayer,

    You can change it from Invoicing – Settings – Taxes – EU VAT Settings – Your Company Name.

    Let me know if it works for you or not.

    Regards,
    Patrik

    in reply to: no display Bill when payment performed #1902

    Patrik
    Moderator
    Post count: 1971

    Hi Abdellah,

    Can you please create a staging environment and provide us the login and FTP details to look more into this as we have to test the things in sandbox mode as well. Can you check from your hosting if they can provide error log so that we can see if there are any issues in the response from the 2checkout.

    Regards,
    Patrik

    in reply to: Hook after payment confirmed but before email sent #1885

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    You can use ‘wpinv_add_item_args’ filter to change the item data. It will be hard to modify invoice and invoice item data at runtime. But let me know if you need any help!

    Regards,
    Patrik

    in reply to: No credit card when free #1883

    Patrik
    Moderator
    Post count: 1971

    Hi Colin,

    Kindly provide us the FTP details in private reply to look more into this issue.

    Regards,
    Patrik

    in reply to: Warnings on Invoices #1881

    Patrik
    Moderator
    Post count: 1971

    Hi Sheldon,

    Can you make sure wp_debug is disabled on your site? Also, share the FTP details with us in private reply and we will have a look into the code.

    Regards,
    Patrik

    in reply to: Hook after payment confirmed but before email sent #1880

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    This all requires customization. There is no direct hook available which executes after clicking on buy button but the invoice is created after buy button pressed so you can use the hook from wpinv_insert_invoice() function which is ‘wpinv_insert_invoice’.

    To edit the content of the email you can use the ‘wpinv_email_content’ filter but you need to use it carefully as it will be called for all the emails sent.

    Regards,
    Patrik

    in reply to: CF7 Proceed to checkout #1879

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    There is a hook ‘wpinv_cf7_after_process_data’ which called after the form is submitted and processed and you can create a redirect on this hook but you will need to add the invoice into the cart as well otherwise the checkout page will show cart is an empty error.

    This is the part of customization but let us know if you face any issues while customizing it.

    Let me know if you have any questions.

    Regards,
    Patrik

Viewing 15 posts - 331 through 345 (of 391 total)