Rob Active Member Mar 3, 2015 #1 Hi I'd like to display the logged in customer company name in the top left corner instead of "CUSTOMER AREA" What is the syntax to pull that info? I appreciate it is changing the core of MW but I can live with that for now. Many Thanks Rob
Hi I'd like to display the logged in customer company name in the top left corner instead of "CUSTOMER AREA" What is the syntax to pull that info? I appreciate it is changing the core of MW but I can live with that for now. Many Thanks Rob
twisted1919 Administrator Staff member Mar 3, 2015 #2 In this case, it should be pretty simple: PHP: if (Yii::app()->customer->getModel() && ($company = Yii::app()->customer->getModel()->company)) { echo $company->name; }
In this case, it should be pretty simple: PHP: if (Yii::app()->customer->getModel() && ($company = Yii::app()->customer->getModel()->company)) { echo $company->name; }