Patrik
Forum Replies Created
-
AuthorPosts
-
Hi,
You can manually add item description in the item from admin side and add the item in the invoice and then check on the view invoice page which will show the item description below item name. I am not sure what you are doing with the run time but we don’t provide support for the customization here.
Regards,
PatrikHi,
The description is an excerpt ‘post_excerpt’ from the item post.
You can style the invoice as per your requirements by overriding the templates in your theme.
Regards,
PatrikHi,
This array contains all items and invoice details in the cart. You can add a description to the item but it will be saved in the item and so when you will add the same item to another invoice you have to modify the description at the time of adding an item into invoice otherwise it will take the previous description.
Regards,
PatrikHi,
Yes, You can’t use the field variable in it as it will not have a value at the time of form displayed but it will add value to that field while processing the form. So in our add on we will not get the dynamic value while processing the form data. It should have fix value while displaying the form. You might take help of Javascript to add value to the hidden field on the radio button change event.
Regards,
PatrikHi,
There should be item ID in the hidden field and not the shortcode or any text. If there are multiple items then the IDs can be separated by pipe sign “|”. Example: 100|101
Regards,
PatrikHi,
There are so many JS errors on your site on the frontend which need to be resolved as it can be the reason for conflicts with our invoicing plugin. The error is because you have not entered card details in the form and due to the JS errors, the stripe credit card details form is not displaying. I would suggest use fewer plugins or take help from the developer.
Regards,
PatrikHi,
Yes, it’s possible to integrate the payment gateway with hosted pages for invoicing.
Regards,
PatrikHi,
You can put the following code in functions.php file of currently active theme or in Code Snippet plugin to make the state field blank or set it to something else:
add_filter('wpinv_checkout_billing_details', 'wpinv_checkout_billing_details_cb', 10, 1); function wpinv_checkout_billing_details_cb($user_info){ $user_info['state'] = ''; // set blank or assign some other value return $user_info; }
Regards,
PatrikJanuary 3, 2020 at 11:03 am in reply to: Warning: Declaration of WPIGFAddOn::plugin_row() should be compatible with GFAdd #3877Hi,
I have fixed the issue from the code and it will be available in the next update release as well. Also, I have tried to activate the add on and it’s activated without error. So you can do the next things as you want. Let me know if you face any other issues.
Regards,
PatrikJanuary 3, 2020 at 9:48 am in reply to: Warning: Declaration of WPIGFAddOn::plugin_row() should be compatible with GFAdd #3875Hi,
Can you please mention the version of Gravity form, Invoicing and Gravity form add on? If possible provide admin and FTP details in private reply to troubleshoot the issue on your site as it might be related to your site only.
Regards,
PatrikHi,
You can try the following code by putting in functions.php file of currently active theme or using Code Snippets plugin on backend:
add_action('wpinv_invoice_print_after_line_items', 'wpinv_invoice_print_after_line_items_cb', 10, 1); function wpinv_invoice_print_after_line_items_cb($invoice){ if(!$invoice){ return; } $notes = wpinv_get_invoice_notes( $invoice->ID ); echo '<ul class="invoice_notes">'; if ( $notes ) { foreach( $notes as $note ) { $is_customer_note = get_comment_meta( $note->comment_ID, '_wpi_customer_note', true ); if($is_customer_note) { ?> <li rel="<?php echo absint( $note->comment_ID ); ?>" class=""> <div class="note_content"> <?php echo wpautop( wptexturize( wp_kses_post( $note->comment_content ) ) ); ?> </div> </li> <?php } } } echo '</ul>'; }
Let me know if it helps or not.
Regards,
PatrikHi,
We have many people using this and there were no such issues but as per your video, I found that the issue is due to the live credit card used for with test mode active and if you deactivate the test mode and use the live card it should work. I would suggest providing a similar video with test mode disable and we can look into the error displayed while checkout.
Regards,
PatrikHi,
This is not easily possible currently without customization. You can try following code snippet by putting into the active theme’s functions.php file or creating a snippet using Code Snippets plugin from the backend:
add_action('wpinv_post_send_invoice_notification', 'send_user_invoice_mail_cc', 10, 2); function send_user_invoice_mail_cc($invoice, $email_type){ if(isset($email_type) && 'user_invoice' != $email_type){ return false; } if ( empty( $invoice ) ) { return false; } $invoice_id = $invoice->ID; $recipient = '[email protected], [email protected]'; //change to your CC email addresses $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'email_heading' => $email_heading, 'sent_to_admin' => false, 'plain_text' => false, 'message_body' => $message_body, ) ); return wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); }
This will send another email with the same content to given recipient addresses. Don’t forget to change the email address from ‘[email protected], [email protected]‘ to your email addresses. You can add a comma-separated list of email addresses. Let me know if it helps or not.
Regards,
PatrikHi,
I have made the changes to fix this issue on your site. Can you please check and let me know if it fixes the issue or not?
Regards,
PatrikThis reply has been marked as private. -
AuthorPosts