Patrik

Forum Replies Created

Viewing 15 posts - 301 through 315 (of 391 total)
  • Author
    Posts
  • in reply to: Show Company Name and GST on Check out page #2141

    Patrik
    Moderator
    Post count: 1971

    Hi Rafaela,

    Please provide us FTP details in private reply so that we can modify the code you have done in functions.php.

    Regards,
    Patrik

    in reply to: Trouble creating Invoices – Won't Save or Publish #2138

    Patrik
    Moderator
    Post count: 1971

    It works in chrome for me as well. Try clearing browser cache or use the private browsing mode to check.

    Regards,
    Patrik

    in reply to: Redirect to custom login page #2134

    Patrik
    Moderator
    Post count: 1971

    Hi James,

    You can use the following code in your functions.php file of the currently active theme:

    
    
    add_filter( 'login_url', 'login_url_cb', 10, 2 );
    function login_url_cb($login_url, $redirect){
        $login_page_id = uwp_get_page_id('login_page', false);
        $redirect_page_id = uwp_get_option('login_redirect_to', -1);
        if ($login_page_id) {
            $login_page = get_permalink($login_page_id);
            if($redirect){
                $login_url = add_query_arg( 'redirect_to', $redirect, $login_page );
            }elseif(isset($redirect_page_id) && (int)$redirect_page_id == -1 && wp_get_referer()) {
                $redirect_to = esc_url(wp_get_referer());
                $login_url = add_query_arg( 'redirect_to', $redirect_to, $login_page );
            }elseif($redirect_page_id){
                $redirect_to = get_permalink($redirect_page_id);
                $login_url = add_query_arg( 'redirect_to', $redirect_to, $login_page );
            }else{
                $login_url = $login_page;
            }
        }
    
        return $login_url;
    }

    Let me know if it works for you or not.

    Regards,
    Patrik

    in reply to: Trouble creating Invoices – Won't Save or Publish #2128

    Patrik
    Moderator
    Post count: 1971

    Hi,

    I have made the changes in the file and it should be fixed now. Please check from your side and let me know how it goes.

    Regards,
    Patrik

    in reply to: Redirect to custom login page #2126

    Patrik
    Moderator
    Post count: 1971

    Hi James,

    We need more information on the problem you have. Can you please explain in details with steps or example? It would be great if you can provide your website admin login details in private reply to look more into this.

    Regards,
    Patrik

    in reply to: Trouble creating Invoices – Won't Save or Publish #2125

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The problem is due to the ACF plugin and Invoicing plugin conflicts. It will be fixed in the next release of the plugin. If you want to apply the changes on your site then you can provide us the FTP details in private reply and we will fix it for you or you can do the changes by yourself from here: https://github.com/AyeCode/invoicing/pull/176/commits/f56a6b30a5831787ceb88cafe32b85156f3cc00c

    Regards,
    Patrik

    in reply to: Billing retries after failure – PayPal Pro #2117

    Patrik
    Moderator
    Post count: 1971

    Hi Vladimire,

    Thanks for reporting this. We have done the changes and will be available in next release of the plugin. If you want to apply the changes on your site then let me know the FTP details in private reply and I will do that for you.

    Regards,
    Patrik

    in reply to: Paypal Pro Recurring Payments… Update?? #2114

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: UTF-8 Support #2107

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The issue is due to the default fonts used in PDF doesn’t support the language. “DejaVu Sans” font supports utf-8 so, I have added following code in functions.php of current active theme and it works now:

    
    
    add_action('wpinv_pdf_head', 'wpinv_pdf_head_cb');
    function wpinv_pdf_head_cb(){
        ?>
        <style type="text/css">
            * {font-family: DejaVu Sans !important;}
        </style>
        <?php
    }

    Let me know if you have any queries.

    Regards,
    Patrik

    in reply to: Invoices Marking Subscriptions as Expired – But they aren't! #2105

    Patrik
    Moderator
    Post count: 1971

    Hi Darrell,

    Can you please check from your PayPal account if the recurring profile is active or not? There may be some issues with payments and it set to expired status.

    Can you please provide us admin and FTP details in private reply for more look into this issue?

    Regards,
    Patrik

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

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Can we send login details with invoice? #2092

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: UTF-8 Support #2091

    Patrik
    Moderator
    Post count: 1971

    Hi Martin,

    We suggest you create a clone of the live site without sensitive data and let us know the admin and FTP details in private reply so that we can look into it.

    Regards,
    Patrik

    in reply to: UTF-8 Support #2079

    Patrik
    Moderator
    Post count: 1971

    Hi Martin,

    Can you please provide us admin details and FTP details in private reply to look more into this? We need to know which language you are using and all.

    Regards,
    Patrik

    in reply to: Database tables missing #2070

    Patrik
    Moderator
    Post count: 1971

    Hi Martin,

    We already have two add-ons which provide similar kind of functionalities:
    https://wpinvoicing.com/downloads/contact-form-7/
    https://wpinvoicing.com/downloads/gravity-forms/

    Thy work with other plugins to grab the invoice data with forms. You will require some customization to achieve your requirements. We do not provide support for customization here. You can hire the developer to do that.

    Let me know if you have any questions.

    Regards,
    Patrik

Viewing 15 posts - 301 through 315 (of 391 total)