2015-04-27, 20:07:55
Hello All. As I can see this have not been addressed before.
I have issues to include the cycle function, what I have problem with Is effect and navigation type.
Everything works if I create a new page and add this code "(% gallery name=my-gallery-name %)"
But I want it in the template so In the template I added this code "<?php get_i18n_gallery('my-gallery-name'); ?>"
I can see the first picture in the slide but the slide itself do not start and also the navigation meny do not change accordingly to my choice. What do I do wrong and what do you need from me to tell me what I do wrong ?
The page is not online so I cant give the page url but I have made sure everything in the troubleshoot guide have been followed. here Is my template.php, it built on a opensource theme I downloaded on the net. the call Is under
<div id="middle">
<?php get_i18n_gallery('mainslide'); ?>
BR
Dimi
I have issues to include the cycle function, what I have problem with Is effect and navigation type.
Everything works if I create a new page and add this code "(% gallery name=my-gallery-name %)"
But I want it in the template so In the template I added this code "<?php get_i18n_gallery('my-gallery-name'); ?>"
I can see the first picture in the slide but the slide itself do not start and also the navigation meny do not change accordingly to my choice. What do I do wrong and what do you need from me to tell me what I do wrong ?
The page is not online so I cant give the page url but I have made sure everything in the troubleshoot guide have been followed. here Is my template.php, it built on a opensource theme I downloaded on the net. the call Is under
<div id="middle">
<?php get_i18n_gallery('mainslide'); ?>
Code:
<?php if(!defined('IN_GS')){ die('you cannot load this page directly.'); }
/****************************************************
*
* @File: template.php
* @Package: GetSimple
* @Action: theme for GetSimple CMS
*
*****************************************************/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Site Title -->
<title><?php get_page_clean_title(); ?> < <?php get_site_name(); ?></title>
<link href="<?php get_theme_url(); ?>/css/style.css" rel="stylesheet" type="text/css" />
<!--[if lte IE 7]><link href="<?php get_theme_url(); ?>/css/iehacks.css" rel="stylesheet" type="text/css" /><![endif]-->
<script type="text/javascript" src="<?php get_theme_url(); ?>/js/jquery.js"></script>
<?php get_header(); ?>
<!--[if IE 6]>
<script type="text/javascript" src="<?php get_theme_url(); ?>/js/ie6pngfix.js"></script>
<script type="text/javascript">
DD_belatedPNG.fix('img, ul, ol, li, div, p, a, h1, h2, h3, h4, h5, h6');
</script>
<![endif]-->
</head>
<body>
<!-- wrapper -->
<div class="rapidxwpr floatholder">
<!-- header -->
<div id="header">
<!-- logo -->
<a href="index.php"><img id="logo" class="correct-png" src="<?php get_theme_url(); ?>/images/logo.png" alt="Home" title="Home" /></a>
<!-- / logo -->
<!-- topmenu -->
<div id="topmenu">
<ul>
<!--<a href=""><span>Services</span></a>-->
<?php get_i18n_navigation(return_page_slug()); ?>
</ul>
</div>
<!-- / topmenu -->
</div>
<!-- / header -->
<div class="breadcrumbs">
<a href="<?php echo find_url('index',null); ?>">Start</a>
<?php get_i18n_breadcrumbs(return_page_slug()); ?>
</div>
<!-- main body -->
<div id="middle">
<?php get_i18n_gallery('mainslide'); ?>
<div id="main" class="clearingfix">
<div id="mainmiddle" class="floatbox">
<!-- right column -->
<div id="right" class="clearingfix">
<!-- benefits box Sidebar -->
<?php get_i18n_component('sidebar'); ?>
<!-- / benefits box Sidebar -->
</div>
<!-- / right column -->
<!-- MAIN content column -->
<div id="content" class="clearingfix">
<div class="floatbox">
<!-- HOME -->
<?php get_page_content(); ?>
<!-- / HOME -->
</div>
</div>
<!-- / MAIN content column -->
</div>
</div>
</div>
<!-- / main body -->
</div>
<!-- / wrapper -->
<!-- footer -->
<div class="rapidxwpr floatholder">
<div id="footer" class="clearingfix">
<!-- footermenu -->
<ul class="footermenu">
<?php get_i18n_navigation(return_page_slug()); ?>
</ul>
<!-- / footermenu -->
<!-- credits -->
<div class="credits">
<a href="www.test.com">test</a>
</div>
<!-- / credits -->
</div>
</div>
<!-- / footer -->
</body>
</html>
Dimi