Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Contributor Michael Cannon

    (@comprock)

    Thread Starter Sol007

    (@sol007)

    I deactivated and ran the update, then reactivated and still nothing displays. I deleted it, then reuploaded the latest version and still no display.

    Any ideas?

    TB

    Plugin Contributor Michael Cannon

    (@comprock)

    In looking at your HTML source, you’ve checked off too many options and now it’s causing you trouble.

    Follow this, https://aihrus.zendesk.com/entries/30746533.

    Thread Starter Sol007

    (@sol007)

    That got things to display but it still will not fade into different testimonials. Any ideas?

    TB

    Plugin Contributor Michael Cannon

    (@comprock)

    Did you search FAQ or KB for doesn’t rotate?

    Thread Starter Sol007

    (@sol007)

    I searched the KB and tried to follow along the troubleshooting.

    As far as I can tell, I think number 2 may be it, but I don’t know how to resolve.

    The command jQuery('.testimonials-widget-testimonials17') does not appear in my footer.

    What can I do?

    TB

    Plugin Contributor Michael Cannon

    (@comprock)

    See if your theme can be updated or simply open up your theme’s footer.php file and add the needed code before </html> or thereabouts.

    You could compare your footer.php with TwentyTwelve’s.

    Thread Starter Sol007

    (@sol007)

    The following is my footer. I added the code in the FAQ section at the very bottom before the </html> and still nothing. The code was :

    <?php wp_footer(); ?>
    jQuery('.testimonials-widget-testimonials17')

    Check the very bottom for where I placed it. Is that where I should have placed it? Was that the right code?

    <?php if(theme_get_option(‘footer’,’footer’)):?>
    <?php theme_generator(‘footerContainer’,$post->ID);?>
    <div id=”footer” class=”clearfix”>
    <!–[if IE 7 ]>
    <div id=”footerSlider”></div>
    <![endif]–>
    <?php
    $footer_column = theme_get_option(‘footer’,’column’);
    if(is_numeric($footer_column)):
    switch ( $footer_column ):
    case 1:
    $class = ”;
    break;
    case 2:
    $class = ‘one_half’;
    break;
    case 3:
    $class = ‘one_third’;
    break;
    case 4:
    $class = ‘one_fourth’;
    break;
    case 5:
    $class = ‘one_fifth’;
    break;
    endswitch;
    for( $i=1; $i<=$footer_column; $i++ ):
    if($i == $footer_column):
    ?>
    <div class=”<?php echo $class; ?> last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php else:?>
    <div class=”<?php echo $class; ?>”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php endif;
    endfor;
    else:
    switch($footer_column):
    case ‘four_fifth_one_fifth’:
    ?>
    <div class=”four_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_fifth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘one_fifth_four_fifth’:
    ?>
    <div class=”one_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”four_fifth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘one_fifth_two_fifth_two_fifth’:
    ?>
    <div class=”one_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”two_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”two_fifth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘one_fourth_one_fourth_one_half’:
    ?>
    <div class=”one_fourth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_fourth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_half last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘one_fourth_one_half_one_fourth’:
    ?>
    <div class=”one_fourth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_half”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_fourth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;

    case ‘one_fourth_three_fourth’:
    ?>
    <div class=”one_fourth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”three_fourth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘one_half_one_fourth_one_fourth’:
    ?>
    <div class=”one_half”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_fourth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_fourth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘one_third_two_third’:
    ?>
    <div class=”one_third”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”two_third last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘three_fifth_two_fifth’:
    ?>
    <div class=”one_half”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”three_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”two_fifth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘three_fourth_one_fourth’:
    ?>
    <div class=”three_fourth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_fourth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘two_fifth_three_fifth’:
    ?>
    <div class=”one_half”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”two_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”three_fifth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘two_fifth_two_fifth_one_fifth’:
    ?>
    <div class=”two_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”two_fifth”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_fifth last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    case ‘two_third_one_third’:
    ?>
    <div class=”two_third”><?php theme_generator(‘footer_sidebar’); ?></div>
    <div class=”one_third last”><?php theme_generator(‘footer_sidebar’); ?></div>
    <?php
    break;
    endswitch;
    endif;
    ?>

    </div> <!– End footer –>
    </div> <!– End footerContainer –>
    <?php endif;?>
    <?php if(theme_get_option(‘footer’,’sub_footer’)):?>
    <?php theme_generator(‘footerNav’,$post->ID);?>
    <div id=”footerWrapper” class=”clearfix”>
    <?php if(!theme_get_option(‘footer’,’footer’)):?>
    <!–[if IE 7 ]>
    <div id=”footerSlider”></div>
    <![endif]–>
    <?php endif;?>
    <p class=”top”>Top</p>
    <?php if(theme_get_option(‘footer’,’copyright’)):?>
    <div id=”copyright”>
    <p><?php echo theme_get_option(‘footer’,’copyright’); ?></p>
    </div>
    <?php endif;?>
    <?php dynamic_sidebar(__(‘Sub Footer Area’,’randf_admin’)); ?>
    </div>
    </div> <!– End footerNav –>
    <?php endif;?>
    <?php if(!theme_get_option(‘footer’,’footer’) && !theme_get_option(‘footer’,’sub_footer’)):?>
    <?php theme_generator(‘noFooter’,$post->ID);?>
    <div class=”footerIe”>
    <!–[if IE 7 ]>
    <div id=”footerSlider”></div>
    <![endif]–>
    </div>
    <?php endif;?>
    </div> <!– End wrapper –>
    <?php
    theme_add_cufon_code_footer();
    wp_footer();
    ?>
    </body>
    <?php wp_footer(); ?>
    jQuery('.testimonials-widget-testimonials17')
    </html>

    Plugin Contributor Michael Cannon

    (@comprock)

    Writing code jQuery('.testimonials-widget-testimonials17') isnt’ going to work and you don’t need to do such. You have wp_footer() added twice in your footer.php. As such, the needed code should be firing off fine.

    I suggest getting back to previous working configuration, spin up a development site, upgrade, then perform debugging as suggested in the FAQ.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘No longer displays testimonials’ is closed to new replies.