Forum Replies Created

Viewing 15 replies - 1 through 15 (of 82 total)
  • Thread Starter neoset

    (@neoset)

    I have a doubt with respect to the currency, in the “Overrides Manager” there is no way to change the position of the currency or to eliminate it for the invoices, these are the shortcodes in php of the template \wp-content\plugins\vikrentcar\site\helpers\invoices\invoice_tmpl.php
    {company_logo} {company_info} {invoice_number} {invoice_suffix} {invoice_date} {invoice_products_descriptions} {customer_info} {invoice_totalnet} {invoice_totaltax} {invoice_grandtotal} {invoice_totaltax} {invoice_grandtotal}
    There is no template for each of these shortcodes.
    How would I have to modify the shortcodes for the currency or what is the path to the core of these shortcodes?
    At least I would need the path to these 3:
    {invoice_totalnet}
    {invoice_totaltax}
    {invoice_grandtotal}
    So I could change the position or remove the currency in the invoices.
    ** Error found, the “Overrides Manager” template in the “widgets” section path wp-content_uploads_vikrentcar_overrides_modules_vikrentcar_carsdefault.php does not work. This template corresponds to the widget VikRentCar Cars, I try to change the position of the currency as I did in the “Site Pages” section but it does not work. In the “Site pages” section it does work.
    ** Important fact, it is an error that I have noticed, if you download an invoice from the mobile and you see it from the mobile, the currency symbol is superimposed with the price, although from the laptop or desktop pc it looks good.
    ** Another error is that I have been able to translate everything except a single word and it is “Available”, in the frontend is above the Calendars, in the backend in Car List, does not work in any of the two parts neither in the frontend nor in the backend.

    Thank you very much.

    • This reply was modified 4 months, 3 weeks ago by neoset.
    Thread Starter neoset

    (@neoset)

    I have a doubt with respect to the currency, in the inspector of cancellations there is no way to change the position of the currency or to eliminate it for the invoices, these are the shortcodes in php of the template app\public\wp-content\plugins\vikrentcar\site\helpers\invoices\invoice_tmpl.php
    {company_logo}
    {company_info}
    {invoice_number}
    {invoice_suffix}
    {invoice_date}
    {invoice_products_descriptions}
    {customer_info}
    {invoice_totalnet}
    {invoice_totaltax}
    {invoice_grandtotal} {invoice_totaltax} {invoice_grandtotal}
    There is no template for each of these shortcodes.
    How would I have to modify the shortcodes for the currency or what is the path to the core of these shortcodes?
    At least I would need the path to these 3:
    {invoice_totalnet}
    {invoice_totaltax}
    {invoice_grandtotal}
    So I could change the position or remove the currency in the invoices.
    ** Important fact, it is an error that I have noticed, if you download an invoice from the mobile and you see it from the mobile, the currency symbol is superimposed with the price, although from the laptop or desktop pc it looks good.
    ** Another error is that I have been able to translate everything except a single word and it is “Available”, in the frontend is above the Calendars, in the backend in Car List, does not work in any of the two parts neither in the frontend nor in the backend.

    Thank you very much.

    • This reply was modified 4 months, 3 weeks ago by neoset.
    Thread Starter neoset

    (@neoset)

    Problem solved, I had added an animation with Spectra in the header and I generated this problem, solution, remove it and that’s it.
    It would be nice to deactivate the animations in mobile theme, otherwise you have to do it by hand or not put them, for the rest, issue solved.

    Thank you very much.

    Thread Starter neoset

    (@neoset)

    Hi, I’m going to close this topic as the Astra plugins give these problems, exactly I think it’s the Astra animations, I have removed them and it seems to have been solved.
    As for Complianz, there is still the visual error in the section Banner of consent/Appearance/Banner width in pixels, every time I change to any of the four sections within Banner of consent I modify the width of the banner automatically, I repeat, it is only visual because to change it you really have to change it by hand, that happens to me even in clean installations and can lead to confusion in the fixed size of the banner.

    Thank you very much for your time, it seems to me that you have a great plugin, I will continue using it, a big greeting.

    • This reply was modified 4 months, 4 weeks ago by neoset.
    Thread Starter neoset

    (@neoset)

    I found the problem with Astra’s Starter Template plugin, which seems to make their templates fall off the screen.

    Thread Starter neoset

    (@neoset)

    Here I leave photo of the problem, as soon as I have a clean web that generates the problem I will leave it here. Thanks.

    • This reply was modified 4 months, 4 weeks ago by neoset.
    • This reply was modified 4 months, 4 weeks ago by neoset.
    Thread Starter neoset

    (@neoset)

    Exactly, you were right, it was my mistake, even in private/incognito session it worked badly, but I created a clean install and it works perfectly.
    Congratulations for this great plugin, easy to use, very complete and very well organized, I will start to recommend it as the best.
    Thanks for the help.

    Thread Starter neoset

    (@neoset)

    Did you carry out the test in a different browser? Yes
    Did you cleared the browser cache and then carried out a test using the same browser? Yes
    Is your site using the standard thank you page created by our plugin when you first install and activate the plugin as per the following documentation? Yes
    I have used the standard and the personalized one and it continues to show the thank you page with a purchase and download note to all users, if you try it you will see how it is.

    Thread Starter neoset

    (@neoset)

    No, 5 clean installations, same problem in all of them.
    I only use this plugin, without caching plugin.

    • This reply was modified 1 year ago by neoset.
    Thread Starter neoset

    (@neoset)

    function custom_format_european_number($value, $post_id, $field) {
    // Check if ACF field is of numeric type
    if ($field['type'] === 'number') {
    // Check if the value is numeric
    if (is_numeric($value)) {
    // Round the value to 2 decimal places
    $rounded_value = round($value, 2);
    // Check if the value has decimal places
    if (floor($rounded_value) == $rounded_value) {
    return number_format($rounded_value, 0, ',', '.'); // Format as an integer
    } else {
    return number_format($rounded_value, 2, ',', '.'); // Format with 2 decimal places
    }
    }
    }
    return $value;
    }
    add_filter('acf/format_value', 'custom_format_european_number', 10, 3);

    • This reply was modified 1 year, 1 month ago by neoset.
    • This reply was modified 1 year, 1 month ago by neoset.
    • This reply was modified 1 year, 1 month ago by neoset.
    Thread Starter neoset

    (@neoset)

    Thanks for the help but it was a plugin that created a conflict

    Thread Starter neoset

    (@neoset)

    Thanks for the help but it was a plugin that created a conflict

    Thread Starter neoset

    (@neoset)

    Thanks for the help but it was a plugin that created a conflict, I tried it with a clean installation and it works fine, sorry for the inconvenience and thank you very much.
    I am recommending your plugin to everyone, it is impressive and essential, very light, it seems incredible how with 6 blocks you can do absolutely everything

    Thread Starter neoset

    (@neoset)

    This field is of type number but the error occurs in both number type and text type

    Thread Starter neoset

    (@neoset)

    Hello,
    I have solved the problem by adding the code that you have provided me above:

    add_filter("um_get_field__register_profile_photo","um_061722_register_profile_photo_cropsize");
    function um_061722_register_profile_photo_cropsize( $array ){
    
        $array['min_width']  = 20;
        $array['min_height'] = 20;
    
        return $array;
    }

    I hope that in the future you will add a solution like this, or the meta key type with profile_photo and cover_photo and thus have the possibility of adding the profile photo or cover photo in the registration forms by uploading images.
    The issue is solved, thanks for adding it as solved.

    A big greeting and thank you very much for everything.
    Through the code I set the minimum limits manually, it is the quick alternative that I have right now.

Viewing 15 replies - 1 through 15 (of 82 total)