diff --git a/app/Models/Traits/SendsEmails.php b/app/Models/Traits/SendsEmails.php index 1bf1f5052142..ab310dfe8a57 100644 --- a/app/Models/Traits/SendsEmails.php +++ b/app/Models/Traits/SendsEmails.php @@ -110,7 +110,7 @@ trait SendsEmails */ public function getEmailFooter() { - if ($this->email_footer) { + if ($this->isPro() && $this->email_footer) { // Add line breaks if HTML isn't already being used return strip_tags($this->email_footer) == $this->email_footer ? nl2br($this->email_footer) : $this->email_footer; } else { diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 2f835553b1d9..37a5b6d4c63e 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2379,7 +2379,7 @@ $LANG = array( 'freq_two_months' => 'Two months', 'freq_yearly' => 'Annually', 'profile' => 'Profile', - 'payment_type_help' => 'Sets the default payment type.', + 'payment_type_help' => 'Sets the default manual payment type.', 'industry_Construction' => 'Construction', 'your_statement' => 'Your Statement', 'statement_issued_to' => 'Statement issued to', diff --git a/resources/views/accounts/client_portal.blade.php b/resources/views/accounts/client_portal.blade.php index 027848d38e27..3849ad4815ef 100644 --- a/resources/views/accounts/client_portal.blade.php +++ b/resources/views/accounts/client_portal.blade.php @@ -38,7 +38,7 @@ {!! Former::populateField('require_invoice_signature', intval($account->require_invoice_signature)) !!} {!! Former::populateField('require_quote_signature', intval($account->require_quote_signature)) !!} -@include('accounts.nav', ['selected' => ACCOUNT_CLIENT_PORTAL]) +@include('accounts.nav', ['selected' => ACCOUNT_CLIENT_PORTAL, 'advanced' => true])