GetSimple Support Forum
B4G (Bootstrap for GetSimple) - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Themes (http://get-simple.info/forums/forumdisplay.php?fid=10)
+--- Thread: B4G (Bootstrap for GetSimple) (/showthread.php?tid=6294)



B4G (Bootstrap for GetSimple) - bokor.pavol - 2014-05-20

Simple theme based on Bootstrap 3.1.1

Info: http://get-simple.info/extend/theme/b4g-bootstrap-for-getsimple/815/
Download: http://get-simple.info/extend/export/5260/815/b4g-bootstrap-for-getsimple.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.


RE: B4G (Bootstrap for GetSimple) - gok - 2014-06-19

Many thanks for the theme Smile
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.


RE: B4G (Bootstrap for GetSimple) - chrimini - 2014-06-23

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


RE: B4G (Bootstrap for GetSimple) - Carlos - 2014-06-23

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.


RE: B4G (Bootstrap for GetSimple) - chrimini - 2014-06-23

(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.


RE: B4G (Bootstrap for GetSimple) - Carlos - 2014-06-23

Oh, sorry.
Plugins should work the same with get_i18n_header or get_header.
No idea what the problem is.


RE: B4G (Bootstrap for GetSimple) - bokor.pavol - 2014-06-23

(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.


RE: B4G (Bootstrap for GetSimple) - patric1978 - 2014-07-02

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!!


RE: B4G (Bootstrap for GetSimple) - bokor.pavol - 2014-07-02

(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.


RE: B4G (Bootstrap for GetSimple) - patric1978 - 2014-07-02

Hi, thanks for your answer. It still does not work. Below you see my menu:
[Image: multilevel.jpg]
pic upload


but on my website i see only 1 level: www.zentoday.nl

I don't know what im doing wrong....


RE: B4G (Bootstrap for GetSimple) - klwisa - 2014-07-04

i like ......mark. :lol


RE: B4G (Bootstrap for GetSimple) - gok - 2014-07-07

(2014-06-19, 05:11:42)gok Wrote: Many thanks for the theme Smile
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 Huh


RE: B4G (Bootstrap for GetSimple) - bokor.pavol - 2014-07-08

(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]
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.


RE: B4G (Bootstrap for GetSimple) - bokor.pavol - 2014-07-08

(2014-07-07, 18:16:21)gok Wrote:
(2014-06-19, 05:11:42)gok Wrote: Many thanks for the theme Smile
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 Huh

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">
.
.



RE: B4G (Bootstrap for GetSimple) - gok - 2014-07-08

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 Smile


RE: B4G (Bootstrap for GetSimple) - bokor.pavol - 2014-07-08

(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 Smile

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.


RE: B4G (Bootstrap for GetSimple) - johnkathbuckley - 2014-07-23

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.