Can't get options with $data['variable'].
(I'm using SMOF - Slightly Modded Options Framework)
For example in the header.php (index.php, footer.php, etc.):
global $data;
$logo_type = stripslashes( $data['type_logo'] );
and nothing happens, variable $logo_type contains nothing.
But if I use the same code in the \css\styles.php - all works fine.
First encountered this problem... And can not understand what could be the problem (php, web hosting, etc.)
Anyone else encountered this problem?
error_reporting(E_ALL);– Mathew Foscarini Jan 21 at 16:03var_dump($data);saying? – macino Jan 21 at 16:56error_reportingif turning on.var_dump($data);returnNULL– user771417 Jan 22 at 0:39