Page 1 of 1

Add Image To Brand in Navbar

Posted: Sat Nov 20, 2021 1:39 pm
by zeeshop
Hi,

I followed instruction from another site from @burt to replace "Brand" with "Logo" by following the below:

Open up /includes/languages/english/modules/navbar_modules/nb_brand.php
Line 20

Code: Select all

 define('MODULE_NAVBAR_BRAND_PUBLIC_TEXT', STORE_NAME);
Replacing with

Code: Select all

define('MODULE_NAVBAR_BRAND_PUBLIC_TEXT', tep_image('images/New Logo.png', 'Phoenix Logo', 117, 58, null, null, 'd-inline-block align-top', false) . ' ' );
However, getting the below Fatal error:
Fatal error: Uncaught TypeError: Argument 5 passed to tep_image() must be of the type string, null given, called in /homepages/31/d********/htdocs/Z********/includes/languages/english/modules/navbar/nb_brand.php on line 20 and defined in /homepages/31/d********/htdocs/Z********/includes/functions/image.php:15 Stack trace: #0 /homepages/31/d********/htdocs/Z********/includes/languages/english/modules/navbar/nb_brand.php(20): tep_image('images/store_lo...', 'Phoenix Logo', '30', '30', NULL, NULL, 'd-inline-block ...', false) #1 /homepages/31/d********/htdocs/Z********/includes/system/class_index.php(43): include('/homepages/31/d...') #2 [internal function]: class_index->autoload('nb_brand') #3 /homepages/31/d********/htdocs/Z********/includes/modules/content/navigation/cm_navbar.php(54): spl_autoload_call('nb_brand') #4 /homepages/31/d********/htdocs/Z********/includes/system/versioned/1.0.7.9/osc_template.php(106): cm_navbar->execute() #5 /homepages/31/d********/htdocs/Z********/templates/default/inclu in /homepages/31/d********/htdocs/Z********/includes/functions/image.php on line 15
It is working fine on other site using CE Phoenix v1.0.8.1

Server details:
CE Phoenix v1.0.8.7 === Database: MySQL 5.7.33 == PHP version: 7.4.25 (Zend 3.4.0)

As always, any suggestion will be greatly appretiated.

Re: Add Image To Brand in Navbar

Posted: Sat Nov 20, 2021 1:48 pm
by heatherbell
Change

Code: Select all

null, null,
to

Code: Select all

"", "",

Re: Add Image To Brand in Navbar

Posted: Sat Nov 20, 2021 4:25 pm
by zeeshop
Thanks very much @heatherbell