Patrik

Forum Replies Created

Viewing 15 posts - 196 through 210 (of 391 total)
  • Author
    Posts
  • in reply to: Error: The invalid invoice user id #2803

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Contact form 7 Addon Items #2793

    Patrik
    Moderator
    Post count: 1971

    Hi,

    For multiple items, you need to pass the id and quantity to the shortcode values with pipe separated for example [wpinv_items wpinv_cf7_items “10|1” “11|1” “12|1”]. So you can use jQuery to change the values of items based on age group selected. This is the customization task so you can take the help of a developer to do this as we do not provide support for customization here.

    Regards,
    Patrik

    in reply to: Contact for 7 Addon Send email #2777

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Thanks for your suggestion. We don’t have this functionality by default in add on for now but we can definitely consider this as a future enhancement. You can achieve this by customization if you want.

    Regards,
    Patrik

    in reply to: Hide button #2773

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can just put the below CSS code in Settings->Misc->Custom CSS->Invoice Template CSS and save it.

    body.wpinv-print .wpinv-top-bar a.btn-warning {
    display: none;
    }

    This will be easy for you.

    Regards,
    Patrik

    in reply to: Metabox #2772

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can’t change the payment method once the invoice is paid. You can change its status to draft and then change the payment method for repaying but this would be not the solution for you as it would require 2nd-time payment.

    Regards,
    Patrik

    in reply to: Hide button #2771

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Please put the following code in functions.php file of currently active theme and let me know if it works for you or not:

    add_action('wpinv_invoice_print_head', 'wpinv_invoice_print_head_cb');
    function wpinv_invoice_print_head_cb(){
        ?>
        <style type="text/css">
            body.wpinv-print .wpinv-top-bar a.btn-warning {
                display: none;
            }
        </style>
        <?php
    }

    Regards,
    Patrik

    in reply to: Checkout not working and items not updating. #2762

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Checkout not working and items not updating. #2757

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Can you please let me know which package/item you want to remove? I think “1 year membership for business” but want to confirm from you. I will remove the item you want to remove by programming as that item can only be removed from the packages of GD pricing manager plugin and this item seems to be from the previous version of GD or something.

    The pre-bank transfer method will not work for recurring payments. It will only work for normal payments. Let me know if it doesn’t work for normal payments.

    If there is a 30 days trial period then first billing will be done after 30 days.

    Regards,
    Patrik

    in reply to: Checkout not working and items not updating. #2755

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The issue is fixed. The issue was due to redirects set by Yoast SEO plugin. So when you change the slug of the page, it will create redirects. I have removed all the redirects related to WPI and checkout page is working fine now. Please check from your side and let me know if any issues.

    Regards,
    Patrik

    in reply to: Searchable Custom Field #2739

    Patrik
    Moderator
    Post count: 1971

    Hi,

    We have mostly provided hooks and filters where ever required which you can use. Look for the following filters in our plugin and you can use them according to your requirements:

    ‘wpi_invoice_table_columns’ => For adding the new column
    ‘wpi_invoice_table_sortable_columns’ => For making column sortable
    ‘wpinv_payments_table_column’ => For displaying column value

    You can look into the file invoicing->includes->admin->wpinv-admin-functions.php for more details.

    We have mostly followed the default WordPress way so you may get help from Google as well. If you need any help just let us know.

    Regards,
    Patrik

    in reply to: Regarding Permalink Slug #2738

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Try the following code and let me know if it resolves your issue or not:

    add_filter( 'wpinv_register_post_type_invoice', '_my_rewrite_slug' );
    function _my_rewrite_slug( $args ) {
        $args['rewrite'] = array( 'slug' => 'invoices');
        return $args;
    }

    Please reset the permalink from Settings->Permalink after putting the above code in functions.php file of the currently active theme.

    Regards,
    Patrik

    in reply to: Checkout Error #2730

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Please provide us the admin and FTP details to look more into this. Kindly check session path should be writable on your server.

    Regards,
    Patrik

    in reply to: Recurring Subscription #2717

    Patrik
    Moderator
    Post count: 1971

    Hi,

    There are some changes in the Authorize.net API on which we are working right now. We will update you here once done.

    Regards,
    Patrik

    in reply to: Searchable Custom Field #2714

    Patrik
    Moderator
    Post count: 1971

    No, that plugin is not for GD. It is for invoicing plugin to add custom type to the Invoicing item.

    in reply to: Searchable Custom Field #2707

    Patrik
    Moderator
    Post count: 1971

    No, The field “wpinv_customer_website” is for the customer and it will be not visible in the invoice listing. It will be visible in edit invoice page only.

Viewing 15 posts - 196 through 210 (of 391 total)