Stuart Farrimond

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • in reply to: Change 'post navigation' text #32940
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Hi there,
    The words aren’t present in this file:

    get_header(); ?>
    
    <div class="content-area">
        <div class="middle-align content_sidebar">
            <div class="site-main" id="sitemain">
    			<?php while ( have_posts() ) : the_post(); ?>
                    <?php get_template_part( 'content', 'single' ); ?>
                    <?php skt_bakery_content_nav( 'nav-below' ); ?>
                    <?php
                    // If comments are open or we have at least one comment, load up the comment template
                    if ( comments_open() || '0' != get_comments_number() )
                        comments_template();
                    ?>
                <?php endwhile; // end of the loop. ?>
            </div>
            <?php get_sidebar();?>
            <div class="clear"></div>
        </div>
    </div>
    
    <?php get_footer(); ?>
    in reply to: Performance issues with Bakery Pro Theme #21530
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    It’s ok, I have been able to defer the scripts from loading by adding the following to the end of functions.php:

    // Defer Javascripts
    // Defer jQuery Parsing using the HTML5 defer property
    if (!(is_admin() )) {
        function defer_parsing_of_js ( $url ) {
            if ( FALSE === strpos( $url, '.js' ) ) return $url;
            if ( strpos( $url, 'jquery.js' ) ) return $url;
            // return "$url' defer ";
            return "$url' defer onload='";
        }
        add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
    }

    For anyone else wondering how to prevent the ‘jump’ that happens when the images for the slider load, the following change can also be made in functions.php:

    Change

    <?php if ( (of_get_option('innerpageslider', true) != 'hide') || is_home() || is_front_page() ) { ?>
    			jQuery(window).load(function() {
            jQuery('#slider').nivoSlider({

    to

    <?php if ( (of_get_option('innerpageslider', true) != 'hide') || is_home() || is_front_page() ) { ?>
    			jQuery(function() {
            jQuery('#slider').nivoSlider({

    This will make the slider appear as soon as the first image has loaded, rather than wait for them all to load

    in reply to: Performance issues with Bakery Pro Theme #21470
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Alternatively, is it possible to defer the script loading, so that page performance isn’t affected so adversely?

    in reply to: Updating Wordpress – effect on customised theme? #18864
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    ok, thanks – should I take a backup of the files within the themes subfolder?

    in reply to: Hide slider on Blog posts page (Bakery Pro Theme) #17291
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Ok, thanks – not sure what is happening. Will let you know if I can better identify the circumstances when it occurs,

    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Done – still the same.

    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Done that, but remains the same,
    Stu

    in reply to: Hide slider on Blog posts page (Bakery Pro Theme) #17181
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Having some strange image distortions on iPhone 6 on the blog listing page – the images appear squashed or stretched. why is this? It doesn’t seem to happen on other iPhone models… See image: http://postimg.org/image/lujrr7xg1/
    Thanks.

    in reply to: Hide slider on Blog posts page (Bakery Pro Theme) #16957
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Thanks – that’s fixed it. The share buttons don’t have icons in, they just look like odd round circles. Is this intentional?

    in reply to: Hide slider on Blog posts page (Bakery Pro Theme) #16874
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Hi thanks,
    There is no template option in the blog page. As soon as you set a page as the latest posts page via settings, the option to change template is removed.
    See image: http://s30.postimg.org/vzur7l969/No_blog_template_option.jpg
    Advice?

    in reply to: Hide slider on Blog posts page (Bakery Pro Theme) #16828
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Thanks – how do I do that?

    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Thanks – that worked!
    (I just renamed it to _smooth-scroll.js in case ever need to reinstate it)

    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    This isn’t in a plugin that I have added (to my knowledge). Where/how to I remove it without breaking the site?
    Thanks,

    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Why does the product page scroll to the top when clicking on the review (0) tab?

    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    Great thanks, sorted. (Quite strange that there was no colour to that already in the CSS.)

    When clicking the review tab, the screen scrolls to the top, rather than opening the review tab – why is this?

    Thanks

    For your info, I found some errors in the css that seem to be generated by the theme: several instances of “background-color:1” This isn’t something I have added to custom CSS and doesn’t appear to be in the stylesheet.
    I’m sure it’s a separate issue but thought would bring it to your attention as it may explain other problems people may experience (put it in pastebin here: http://pastebin.com/F8ijwp0B ) Hope this helps.

Viewing 15 posts - 1 through 15 (of 21 total)