diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index e131dfd4f9..de30a2a0d0 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2653,7 +2653,7 @@ $LANG = array( 'signature_on_pdf_help' => 'Show the client signature on the invoice/quote PDF.', 'expired_white_label' => 'The white label license has expired', 'return_to_login' => 'Return to Login', - 'convert_products_tip' => 'Note: add a custom field named ":name" to see the exchange rate.', + 'convert_products_tip' => 'Note: add a :link named ":name" to see the exchange rate.', 'amount_greater_than_balance' => 'The amount is greater than the invoice balance, a credit will be created with the remaining amount.', 'custom_fields_tip' => 'Use Label|Option1,Option2 to show a select box.', 'client_information' => 'Client Information', diff --git a/resources/views/accounts/products.blade.php b/resources/views/accounts/products.blade.php index 868404c34e..bf5e6616bd 100644 --- a/resources/views/accounts/products.blade.php +++ b/resources/views/accounts/products.blade.php @@ -22,7 +22,10 @@ {!! Former::checkbox('update_products')->text(trans('texts.update_products_help'))->value(1) !!}   {!! Former::checkbox('convert_products')->text(trans('texts.convert_products_help')) - ->help(trans('texts.convert_products_tip', ['name' => trans('texts.exchange_rate')]))->value(1) !!} + ->help(trans('texts.convert_products_tip', [ + 'link' => link_to('/settings/invoice_settings#invoice_fields', trans('texts.custom_field'), ['target' => '_blank']), + 'name' => trans('texts.exchange_rate') + ]))->value(1) !!}   {!! Former::actions( Button::success(trans('texts.save'))->submit()->appendIcon(Icon::create('floppy-disk')) ) !!} {!! Former::close() !!}