This topic is: resolved
-
1: On line 80-83 in init.php is the following:
$content_width = 1140; if ( ! isset( $content_width ) ) { $content_width = 940; /* pixels */ }
The ‘if’ case is perfect, as it allows me to set my own content_width in the child theme. But the first line negates the ‘if’ case and makes it impossible for me to change the content_width. Can you delete the first line (line 80)?
2: On line 607 is a spelling error:
$dawnthemes_page_layout = ticketbox_get_theme_option('signle-event-layout', 'full-width');
‘signle-event-layout’ should probably be spelled ‘single-event-layout’
3: There are a bunch of functions in init.php that I need to override in my child theme. But just very few of the functions are wrapped in:
if ( ! function_exists( '[FUNCTION-NAME]' ) ){...}
Life shouldn’t have to be a nightmare for those who want to customize things in the child theme. Please amend this.