Forum Replies Created
-
Katherine J. BatesKeymasterThis reply has been marked as private and you are not authorised to see.
Katherine J. BatesKeymasterHi
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
Katherine J. BatesKeymasterDear @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
Katherine J. BatesKeymasterOk
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
Katherine J. BatesKeymasterHi
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 itemBest regards
Katherine J. BatesKeymasterWhat’s your main domain name, Your Website URL?
Katherine J. BatesKeymasterHi
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 fileHope it will help you
Best regards
Katherine J. BatesKeymasterCould you please make your cPanel language into English? I don’t know that language.
Katherine J. BatesKeymasterHi
No need to do anything, I am here to help you
Katherine J. BatesKeymasterHi 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
Katherine J. BatesKeymasterDear @Krystian96
Please give us your credential In a private Reply, I will help you to install.
Best regards
Katherine J. BatesKeymasterDear 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
Katherine J. BatesKeymasterDear @edouard
You will find the file
/root/resources/views/layout/header.php
file for changing the menu and submenu2. 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 atroot/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
Katherine J. BatesKeymasterIt’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
Katherine J. BatesKeymasterHi
Please check your website, your posting ads is now working.
For the social login, place your social app credential to settings> social settingsBest regards