Comments 2estate_consulting started the conversationFebruary 16, 2017 at 12:34amHello!Is it possible to have the "Centered" style on the startpage, and the "Classic" style on the other pages?Thanks!Dennis 7,092Oliver repliedFebruary 16, 2017 at 1:00pmHI!Here is a demo of the filter: function thegem_custom_logo_position($value) { if(in_array(get_the_ID(), array(1))){ return 'center'; } if(in_array(get_the_ID(), array(2))){ return 'menu_center'; } return $value; } add_filter('thegem_option_logo_position', 'thegem_custom_logo_position'); In array (1 or 2) id of the pages.You need to add this code to the functions.php on the child theme.Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
Hello!
Is it possible to have the "Centered" style on the startpage, and the "Classic" style on the other pages?
Thanks!
Dennis
HI!
Here is a demo of the filter:
In array (1 or 2) id of the pages.
You need to add this code to the functions.php on the child theme.
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver