Posts: 37
Threads: 11
Joined: Aug 2012
2014-05-20, 23:29:43
(This post was last modified: 2014-05-21, 00:09:03 by bokor.pavol.)
Simple theme based on Bootstrap 3.1.1
Info: http://get-simple.info/extend/theme/b4g-...imple/815/
Download: http://get-simple.info/extend/export/526...simple.zip
Demo: http://www.4enzo.sk/_projects/b4g/
1. Requirements:
- Plugins: I18N
2. Create 9 components:
box1, box2, box3
carousel1, carousel2, carousel3
footer_left, footer_middle, footer_right
- Go to THEME card (in Administration interface)
- Select EDIT COMPONENTS
- Click to ADD COMPONENT button and add these 9 components.
Go to http://getbootstrap.com/customize/ if you want change the color scheme of this theme and replace bootstrap.css and bootstrap-theme.css with new files.
Posts: 5
Threads: 0
Joined: Jun 2014
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.
Posts: 2
Threads: 0
Joined: Jun 2014
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
Posts: 3,491
Threads: 106
Joined: Mar 2010
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.
Posts: 2
Threads: 0
Joined: Jun 2014
(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.
Posts: 3,491
Threads: 106
Joined: Mar 2010
Oh, sorry.
Plugins should work the same with get_i18n_header or get_header.
No idea what the problem is.
Posts: 37
Threads: 11
Joined: Aug 2012
(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.
Posts: 6
Threads: 2
Joined: Aug 2013
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!!
Posts: 37
Threads: 11
Joined: Aug 2012
(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.
Posts: 6
Threads: 2
Joined: Aug 2013
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....
Posts: 1
Threads: 0
Joined: Jul 2014
Posts: 5
Threads: 0
Joined: Jun 2014
(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
Posts: 37
Threads: 11
Joined: Aug 2012
(2014-07-02, 23:13:12)patric1978 Wrote: 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....
I understand. Sorry, but Bootstrap knows only one level of submenu.
See this link.
Posts: 37
Threads: 11
Joined: Aug 2012
2014-07-08, 07:40:10
(This post was last modified: 2014-07-08, 07:41:09 by bokor.pavol.)
(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">
.
.
Posts: 5
Threads: 0
Joined: Jun 2014
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
Posts: 37
Threads: 11
Joined: Aug 2012
(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.
Posts: 1
Threads: 0
Joined: Jul 2014
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.
|