Forum Replies Created

Viewing 15 replies - 571 through 585 (of 935 total)
  • in reply to: numeric format and display problem #1298
    This reply has been marked as private and you are not authorised to see.
    in reply to: numeric format and display problem #1297

    Hi

    At the file /root/app/helpers.php

    Line Number : 194

    Replace below code

    function get_amount($amount = 0){
        $show_price = '';
    
        $currency_position = get_option('currency_position');
        $currency_sign = get_currency_symbol(get_option('currency_sign'));
    
        if ($amount > 0){
            $amount = number_format($amount,2);
            if ($currency_position == 'right'){
                $show_price = $amount.' '.$currency_sign;
            }else{
                $show_price = $currency_sign.' '.$amount;
            }
        }else{
            if ($currency_position == 'right'){
                $show_price = '0.00 '.$currency_sign;
            }else{
                $show_price = $currency_sign.' 0.00';
            }
        }
    
        return $show_price;
    }

    With below code

    function get_amount($amount = 0){
        $show_price = '';
        $currency_position = get_option('currency_position');
        $currency_sign = get_currency_symbol(get_option('currency_sign'));
    
        if ($amount > 0){
            $amount = number_format($amount,0,',', '.');
            $show_price = $amount.' '.$currency_sign;
        }else{
            if ($currency_position == 'right'){
                $show_price = '0.00 '.$currency_sign;
            }else{
                $show_price = $currency_sign.' 0.00';
            }
        }
        return $show_price;
    }
    

    Then your expected format will show everywhere

    Best regards

    in reply to: Help with install #1293

    Dear @Krystian96

    We’ve removed a reply from you that contains sensitive data and it’s public, Please don’t forget to mark reply as private when you reply with sensitive data like password, or any login information.

    We are seeing your issue

    Best regards

    in reply to: Help with install #1285

    Ok

    First Make working your domain, I’ve not seeing it’s works, Put just some HTML tags, Like Hello Worlds

    Then send me that domain with cPanel Information, I will help you

    Best regards

    in reply to: Unable to translate the entire password reset screen #1283

    Hi

    Same as before, replace that text with @lang('app.send_password_reset_link')

    Add 'send_password_reset_link' => 'Send Password Reset Link', it to your language file as array item

    Best regards

    in reply to: Help with install #1280

    What’s your main domain name, Your Website URL?

    in reply to: Unable to translate the entire password reset screen #1279

    Hi

    At the file /root/resources/views/auth/passwords/email.blade.php

    Line number 10, 22

    Replace the String with below string

    Reset Password to @lang('app.reset_password')
    E-Mail Address to @lang('app.email_address')

    Add an array item to your language app
    /root/resources/lang/en/app.php

    'reset_password' => 'Reset Password', also to your translated file

    Hope it will help you

    Best regards

    in reply to: Help with install #1276

    Could you please make your cPanel language into English? I don’t know that language.

    in reply to: Help with install #1275

    Hi

    No need to do anything, I am here to help you

    in reply to: numeric format and display problem #1272

    Hi Daffson

    Could you please give me an example how to want you use currency. Example: $10.00 or 10$ or something else

    So I will change the code for you and provide you that code to replace an existing function.

    Best regards

    in reply to: Help with install #1270

    Dear @Krystian96

    Please give us your credential In a private Reply, I will help you to install.

    Best regards

    in reply to: The string "Contact Info" can not be translated #1268

    Dear Daffson

    To translate the Contact Info, please find the file /root/resources/views/layouts/footer.blade.php

    In line 20

    Replace Contact Info by @lang(‘app.contact_info’)

    And add an array element into your language /root/resources/lang/en/app.php

    
    'contact_info'                      => 'contact_info',

    And your all of langue file

    so it will be translated, we’ve fixed it our core

    Best regards

    in reply to: help in setting #1258

    Dear @edouard

    You will find the file /root/resources/views/layout/header.php file for changing the menu and submenu

    2. Which figures of donations do you need, please describe a little bit more
    3. Please find the css code to change the banner color located at root/assets/css/style.css

    .main-banner {
    	padding: 150px 0;
    	background: #d1d1d1 url("../images/main-banner.jpg") no-repeat scroll center center / cover;
    	position: relative;
    	color: #fff;
    	text-align: center;
    }

    Which advertisements do you need to place? you can place it to /root/resources/views/home.blade.php

    Best regards

    in reply to: Please Help #1253

    It’s not showing image because of you have no image with your ads,

    Create an ad with image and check the image

    We will check for mobile number

    Best regards

    in reply to: Please Help #1251

    Hi

    Please check your website, your posting ads is now working.
    For the social login, place your social app credential to settings> social settings

    Best regards

Viewing 15 replies - 571 through 585 (of 935 total)