2014-11-22, 04:16:49
(2014-11-22, 02:45:55)dgleba Wrote: I installed get simple 3.3.4 - clean install.
I installed this theme.
1.
I don't see the main body content displayed on the page.
2.
I don't see the menu items in small screen mode.
Can you help me?
=
=
A screen shot of the empty menu follows:
=
There is a typo in this theme and its easy to fix. In functions.php find the line that says:
Code:
elseif ( !function_exists( 'get_i18n_breadcrumbs' ) )
The typo is the ! (the exclamation point). Change it to (remove the exclamation point):
Code:
elseif ( function_exists( 'get_i18n_breadcrumbs' ) )