Hi,
many thanks for the theme. Very nice.
If I add a page in an another language, the menu don't works.
Have you a fix for that or am I wrong.
Please help
It seems that this theme doesn't have a <?php get_header(); ?> template tag at the end of the <head>...</head> section, hence the problems with some plugins.
(2014-06-23, 03:56:42)Carlos Wrote: [ -> ]It seems that this theme doesn't have a <?php get_header(); ?> template tag at the end of the <head>...</head> section, hence the problems with some plugins.
Thks for reply.
At the beginning of <head> section there's a <?php get_i18n_header(); ?>. This theme needs i18N plugin to work. Also with only one language.
Is that possibile to do something. I'm a newbie with PHP.
Oh, sorry.
Plugins should work the same with get_i18n_header or get_header.
No idea what the problem is.
(2014-06-23, 04:20:13)chrimini Wrote: [ -> ] (2014-06-23, 03:56:42)Carlos Wrote: [ -> ]It seems that this theme doesn't have a <?php get_header(); ?> template tag at the end of the <head>...</head> section, hence the problems with some plugins.
Thks for reply.
At the beginning of <head> section there's a <?php get_i18n_header(); ?>. This theme needs i18N plugin to work. Also with only one language.
Is that possibile to do something. I'm a newbie with PHP.
The site
www.audom.sk is based on B4G theme and multilingual menu works correctly. Check the pages url in page properties.
Hi, i realy love the work you have done with this theme.
Question: is it possible to get multilevel navigation for this theme? I think this theme is the best , but with multilevel navigation i will switch from my old theme.
Thanks!!
(2014-07-02, 18:57:51)patric1978 Wrote: [ -> ]Hi, i realy love the work you have done with this theme.
Question: is it possible to get multilevel navigation for this theme? I think this theme is the best , but with multilevel navigation i will switch from my old theme.
Thanks!!
Maybe a problem with viewer cache. Press Ctrl+F5. Try it, because the theme is multilevel navigation.
Hi, thanks for your answer. It still does not work. Below you see my menu:
pic upload
but on my website i see only 1 level:
www.zentoday.nl
I don't know what im doing wrong....
(2014-07-02, 23:13:12)patric1978 Wrote: [ -> ]Hi, thanks for your answer. It still does not work. Below you see my menu:
![[Image: multilevel.jpg]](http://s13.postimg.org/5g771utnr/multilevel.jpg)
pic upload
but on my website i see only 1 level: www.zentoday.nl
I don't know what im doing wrong....
I understand. Sorry, but Bootstrap knows only one level of submenu.
See this link.
(2014-07-07, 18:16:21)gok Wrote: [ -> ] (2014-06-19, 05:11:42)gok Wrote: [ -> ]Many thanks for the theme
I have two problems:
1 Plugin FAQ - not working properly: http://gscms.ct8.pl/faq/
2 Gallery does not work: http://gscms.ct8.pl/podstrona/podstrona-podstrona/
Please help me.
In another installation is a problem in i18N Gallery:
http://fundacjawokulski.pl/tv/test/
In other templates is ok
Please help 
Well. Make new template, for example gallery.php. Copy the content of header.inc.php + any page template + footer.inc.php to gallery.php.
Move the code from end of file:
Code:
<script src="<?php get_theme_url(); ?>/js/jquery.min.js"></script>
<script src="<?php get_theme_url(); ?>/js/holder.js"></script>
<script src="<?php get_theme_url(); ?>/js/bootstrap.min.js"></script>
<script src="<?php get_theme_url(); ?>/js/template.js"></script>
to the top, between tags
Code:
<head>
and
<?php get_i18n_header(); ?>
New file will be start like this:
Code:
.
.
<html>
<head>
<script src="<?php get_theme_url(); ?>/js/jquery.min.js"></script>
<script src="<?php get_theme_url(); ?>/js/holder.js"></script>
<script src="<?php get_theme_url(); ?>/js/bootstrap.min.js"></script>
<script src="<?php get_theme_url(); ?>/js/template.js"></script>
<?php get_i18n_header(); ?>
<title><?php get_page_clean_title(); ?> :: <?php get_site_name();?></title>
<meta charset="utf-8">
.
.
Thank you. There was a problem with footer.inc.php - removed the code:
<script src = "<? php get_theme_url ();?> / js / jquery.min.js"> </ script>
<script src = "<? php get_theme_url ();?> / js / holder.js"> </ script>
<script src = "<? php get_theme_url ();?> / js / bootstrap.min.js"> </ script>
<script src = "<? php get_theme_url ();?> / js / template.js"> </ script>
And I added this code to header.inc.php according to your suggestion. Now the gallery works on all templates

(2014-07-08, 15:14:50)gok Wrote: [ -> ]Thank you. There was a problem with footer.inc.php - removed the code:
<script src = "<? php get_theme_url ();?> / js / jquery.min.js"> </ script>
<script src = "<? php get_theme_url ();?> / js / holder.js"> </ script>
<script src = "<? php get_theme_url ();?> / js / bootstrap.min.js"> </ script>
<script src = "<? php get_theme_url ();?> / js / template.js"> </ script>
And I added this code to header.inc.php according to your suggestion. Now the gallery works on all templates 
Yes, this is true, but:
1. Some old web viewers can have problem with showing first pages (homepage). Thay can show blank page without error. (I had one problem with Mozilla, but that was long long time ago. Maybe some problem with earlier version of jQuery). After press Ctrl+F5 everything will be works.
2. Pages will be loaded slower.
Carousel in B4G
I am adding more pictures to the carousel; I have uploaded extra pictures, edited the php but there seems to be javascript loop somewhere that is stopping at 2; is this so, where is it and how can I change the loop? Please.