Viewing 15 replies - 1 through 15 (of 18 total)
  • Plugin Author wp-maverick

    (@wp-maverick)

    Hi eddietrm, can you tell me where the slider is supposed to appear in your blog? Was the plugin working before your CSS changes?

    Thread Starter eddietrm

    (@eddietrm)

    I’m sorry, I’ve disabled him last night, but i can enable it again for you to see it, he wasn’t showing content before, but i thought it was beacause there was nothing published yet

    Plugin Author wp-maverick

    (@wp-maverick)

    Which wordpress version are you using and which browser? Where exactly have you put the PHP code to call the slider?

    Thread Starter eddietrm

    (@eddietrm)

    I’m using WordPress 3.4.1 in Chrome version 20, I’ve put it on the header, here is a piece of the code where i’ve inserted ir

    <header role="banner">
    
    				<div id="inner-header" class="clearfix">
    
    					<h1 id="logo"><a>" rel="nofollow"><?php bloginfo('name'); ?></a></h1>
    					<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
                        <?php get_search_form(); ?>
    					<nav role="navigation">
    						<?php frantic_main_nav(); // Adjust using Menus in WordPress Admin ?>
    						</nav>
    						</div> <!-- end #inner-header -->
    
    			</header> <!-- end header -->
       <?php  if ( function_exists( 'get_wp_parallax_content_slider' ) ) { get_wp_parallax_content_slider(); } ?>
                <div id="content-wrap">

    [Moderator Note: Please post code or markup snippets between backticks or use the code button.]

    Thnaks for the help

    Plugin Author wp-maverick

    (@wp-maverick)

    There is a javascript error in your theme (Ctrl+shift+i under chrome and “Console”). You should try to solve this problem first. If there is a conflict due to my plugin, let me know.

    Thread Starter eddietrm

    (@eddietrm)

    On the Chrome console it says:

    “jQuery(function() {
    jQuery(‘#da-slider’).cslider({“
    The erro description is:
    Uncaught TypeError: Object #<object> has no method ‘cslider’

    I think it has something to do with your plugin…

    Plugin Author wp-maverick

    (@wp-maverick)

    There is another error at the top of the stack :
    Uncaught SyntaxError: Unexpected token <
    in
    https://metalland.ws/wp-content/themes/franticlibrary/js/modernizr-2.0.min.js/?ver=3.4.1

    Have you this error when the plugin is not activated?

    Thread Starter eddietrm

    (@eddietrm)

    Ok, i had a few problems on the js calls form the theme, fixed them, but it stil shows the one from you plugin ://

    Plugin Author wp-maverick

    (@wp-maverick)

    That’s weird ?? Can you try to activate only my plugin to test if it’s a conflict between plugins.
    If it works then, activate the other plugins one by one to test which one is the ‘wrong’ plugin ?? I’ll try to install it then fix the problem.
    If not, I’ll try to figure out why there is a problem on your site (You’re the first to point this kind of problem)

    Thread Starter eddietrm

    (@eddietrm)

    So, I’ve deactivated the only other two plugins i had enabled( Artiss YouTube Embed and Broken Link Checker) and the problem still remains… this is very odd… thanks for all the help, hope you can help me out on this one, is getting tricky and i really liked your plugin ://

    Plugin Author wp-maverick

    (@wp-maverick)

    Hmm, is your theme a custom one or can I find it on the web to install it?

    Thread Starter eddietrm

    (@eddietrm)

    bit of both, it’s a Theme i found on the net, called Frantic, with a few customisations on font and some translations for portuguese

    Plugin Author wp-maverick

    (@wp-maverick)

    OK, last chance! You’ll have to ask for support to the developper of the frantic theme if this doesn’t fix your problem ?? There are several javascript bugs in the last version of frantic theme. Javascript files from the ‘library’ folder of the theme are not included in a proper way!

    In functions.php :
    get_template_directory_uri() . 'library/js/modernizr-2.0.min.js'
    get_template_directory_uri() . 'library/js/scripts.js')
    add a trailing slash to these lines like that:
    get_template_directory_uri() . '/library/js/modernizr-2.0.min.js'
    get_template_directory_uri() . '/library/js/scripts.js')

    and in scripts.js, simply replace:
    $(document).ready(function() {
    with
    jQuery(document).ready(function() {

    It works fine with me!

    Thread Starter eddietrm

    (@eddietrm)

    Well, so i spent some time trying somethings in the last few days, and i found out it was my cat-us.com bar that was creating conflict, so when i disable the bar, it works correctly, do you think you can try to figure out what is going on?
    th cat-us script is the one below:

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
    <script type="text/javascript" src="https://api.cat-us.com/js/50040b49077fa468542575.js"></script>

    Plugin Author wp-maverick

    (@wp-maverick)

    WordPress already has one version of jQuery so maybe it can cause some conflict if the 3 lines are included like that in one of your pages.It means that you include jquery two times…

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘[Plugin: WP Parallax Content Slider] Posts won't show’ is closed to new replies.