(2014-09-30, 12:32:54)johnstray2001 Wrote: Breadcrumbs etc will work without the i18n plugin installed, however it works best with it installed.
For menus to support multiple levels of navigation, a recursive foreach loop would need to be written. If you come up with some working code that output bootstrap formatted menus, the please feel free to post it here.
I installed this theme with a clean install of GS 3.3.3. The theme installed and switched from Innovation just fine, but on the front end, nothing past:
PHP Code:
<?php bootstrap_get_breadcrumbs(); ?>
PHP Code:
get_i18n_breadcrumbs
Initially, I didn't look into it much further. I was going to use I18N plugins anyway so I just installed them and this issue went away. However, I just looked at the function in functions.php and noticed this:
PHP Code:
elseif ( !function_exists( 'get_i18n_breadcrumbs' ) )
It appears as though:
Code:
!function_exists( 'get_i18n_breadcrumbs' )
Code:
function_exists( 'get_i18n_breadcrumbs' )
Am I wrong?