Patrik

Forum Replies Created

Viewing 15 posts - 316 through 330 (of 391 total)
  • Author
    Posts
  • in reply to: Translation bugs, typos, consistency issues #2051

    Patrik
    Moderator
    Post count: 1971

    Hi,

    26. You can see the attachment issue_26.png. Indeed, it is not a translation bug, but in my opinion neither a normal behavior.

    I think you should check again as I can’t regenerate the issue from my side. Let me know the test site admin details in private reply and I can try to regenerate and fix it.

    Let me know if you have any issues or queries.

    Regards,
    Patrik

    in reply to: Translation bugs, typos, consistency issues #2049

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Thanks for your great feedback. Most of the things are fixed on our side and will be in next update. Please find my comments below for queries:

    12. Placeholder %s for plural and singular form it is not clear to me. What does it mean concrete %s?

    %s is used to place value of the variable so it should not be translated and kept as it is. It should not have space between ‘%” and ‘s’ as there will be some value display in place of %s runtime. If you want to know what will come in place of it then you can look into the file containing the text and you will get an idea.

    25. Package: GeoDirectory price package items. ; type:; custom_id: – could not find those strings?

    type and custom_id are data for the items and not translatable as it is for information purpose to admin what saved in DB. ‘Package: GeoDirectory price package items.’ is coming from Geodirectory payment manager plugin and it can be translated from Geodirectory payment manager plugin’s language file.

    26. Invoice Total: – invoice total is not calculated

    Can you explain this? Total is displayed using a variable there. It is not depending on translations.

    27. Same description for Subscriptions History as for Invoice History (Bug by replacing, there are 2 different strings)

    Can you explain more? Both descriptions are for different pages invoice history and subscription history. It seems you have added the same translation for both the strings. Please check your translated string and let me know if any issues.

    Regarding “Title and description placeholders for all payment gateways”, those are the values saved when plugin activated so you will need to change it by resaving with german string values instead of translating it using po file.

    33. Make your payment directly into our bank account. Please use your Invoice ID as the payment reference. Your invoice won’t be processed until the funds have cleared in our account. (not replaced in two places:

    Can you explain more?

    Regards,
    Patrik

    in reply to: Add custom text to quotes and invoices #2029

    Patrik
    Moderator
    Post count: 1971

    Hi Sascha,

    Yes, you can do custom things with pods in this code and to add space just add <br> after the text in above code. We don’t support customization in this forum so you may hire a developer for that.

    Regards,
    Patrik

    in reply to: Add custom text to quotes and invoices #2027

    Patrik
    Moderator
    Post count: 1971

    Hi Sascha,

    Please try following code and let me know if it works for you or not:

    
    
    add_action('wpinv_invoice_print_before_line_items','wpinv_invoice_print_before_line_items_cb');
    function wpinv_invoice_print_before_line_items_cb($invoice){
        echo 'Hello '.$invoice->get_first_name().', please find below great items.';
    }
    
    add_action('wpinv_invoice_print_after_line_items','wpinv_invoice_print_after_line_items_cb');
    function wpinv_invoice_print_after_line_items_cb(){
        echo 'Thank you for your interest in our service.';
    }

    Regards,
    Patrik

    in reply to: Add new Invoicing – Hangs after clicking Submit #2005

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Split: Your cart is empty #2002

    Patrik
    Moderator
    Post count: 1971

    Hi Waheed,

    It seems like either PHP sessions are disabled on your site or override by one of the plugins. It is fixed now on your site by adding

    define('WPINV_USE_PHP_SESSIONS', false);

    in config.php file. If you have test site then please check which plugin is causing issue and remove this code after deactivating the plugin to test with the PHP sessions.

    Regards,
    Patrik

    in reply to: Stripe is unable to generate a subscription #1999

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Stripe is unable to generate a subscription #1997

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Stripe is unable to generate a subscription #1994

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Add new Invoicing – Hangs after clicking Submit #1993

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: CSS Button colours #1988

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Try to add following code in your current active theme’s functions.php file and let me know if it works for you or not:

    
    
    add_action( 'wpinv_invoice_print_head', 'wpinv_modified_style' );
    function wpinv_modified_style(){
        ?>
        <style type="text/css">
            body.wpinv-print .btn-sm {
                background-color: red;
            }
        </style>
        <?php
    }

    Stripe popup CSS can’t be changed as it is generated by stripe and loaded in iframe while making payment.

    Regards,
    Patrik

    in reply to: Add new Invoicing – Hangs after clicking Submit #1980

    Patrik
    Moderator
    Post count: 1971

    Hi Anders,

    It looks like Advanced custom fields pro plugin is causing an issue. I recommend to update that plugin if new version available or delete and reinstall it and let us know if it fix the issue or not.

    Regards,
    Patrik

    in reply to: Stripe is unable to generate a subscription #1979

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Stripe is unable to generate a subscription #1977

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Stripe is unable to generate a subscription #1974

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
Viewing 15 posts - 316 through 330 (of 391 total)