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