Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter Sol007

    (@sol007)

    Standard text widget using Turbo Widget. Is there a place to download Widgets on Pages version 4.5.2 or whatever the older version was? It worked just fine for me.

    <link href=’https://fdhq-assets.s3.amazonaws.com/widget/class_schedule/widget.css&#8217; rel=’stylesheet’>
    <span>
    <script defer=’defer’ src=’https://fdhq-assets.s3.amazonaws.com/widget/class_schedule/app.min.js’></script&gt;
    </span>
    <div class=’fd-schedule’ data-fd-domain=’y2yoga’ data-fd-timezone=’America/New_York’ data-ng-cloak=” data-ui-view=” ng-controller=’ContextController’></div>

    Thread Starter Sol007

    (@sol007)

    I tried to add the text widget to add some html code.

    Yes the site ran fine with it just activated.

    Is there a place I could download the last version of the widgets on pages plugin? That was working.

    TB

    Thread Starter Sol007

    (@sol007)

    Please, help, the site is my business site.

    What else do I need to get for you?

    TB

    Thread Starter Sol007

    (@sol007)

    How do i send you the theme to test? I tried turbo widgets and got an error:

    Fatal error: Class name must be a valid object or a string in /home/content/96/3949496/html/wp-content/plugins/turbo-widgets/turbo-widgets.php on line 87

    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>

    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

    Thread Starter Sol007

    (@sol007)

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

    TB

    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

Viewing 8 replies - 1 through 8 (of 8 total)