Forum Replies Created

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

    (@maxwellharrison)

    I installed the latest version of Shopisle (2.2.14 released April 24 2017), and noticed the About us page template was missing.

    I reverted to the previous version 2.2.13.

    I’m now using WooSwipe for my Product gallery, and like the interface so sticking with that, so can’t confirm if 2.2.13 or 2.2.14 is fixing my original problem with the stacking gallery thumbnails.

    My “catalog” images were cropping.
    I specified the desired thumbnail dimensions using the fields at
    Woocommerce > Settings > Products > Display

    Then I used “Regenerate thumbnails” plugin to resize them. Cleared the cache, and that sorted it for me.

    Thread Starter maxwellharrison

    (@maxwellharrison)

    Thanks Jeremey
    I had been clearing my cache, and the problem remained.
    Will try wooswipe as a temporary fix.
    Maxwell

    Thread Starter maxwellharrison

    (@maxwellharrison)

    Thank you @jembalino @hardeepasrani @drbobsapothecary
    I persisted and manually installed the latest version of the theme (by changing name of original theme folder with FTP).

    It improves the appearance of the product gallery, but the thumbnails are very big.

    I wonder how to make them smaller (like the demo), and make them all appear in a horizontal line.

    Have tried editing CSS, and can reduce the size that way with
    .flex-control-nav.flex-control-thumbs {
    max-width: 100px;
    }
    but they stack one on top of the other with a large right-hand margin.

    This is on Chrome by the way

    Thread Starter maxwellharrison

    (@maxwellharrison)

    Shopisle v2.1.4 is the current up-to-date theme according to my WP backend.
    Cleared cache, problem persists.

    Thread Starter maxwellharrison

    (@maxwellharrison)

    Have fixed issue!
    Moved the custom action line to top of footer.php, so it falls within the page container,
    then removed shortcode from page content, to stop widgets duplicating.
    Hopefully will stand up to testing.

    Thread Starter maxwellharrison

    (@maxwellharrison)

    Remove the line from where exactly do you mean? The footer.php, the post shortcode, or the plugin field?

    Thread Starter maxwellharrison

    (@maxwellharrison)

    If I remove the full line you suggested adding to the footer.php in the previous thread, then no the widgets do not disappear, the footer just returns to behind the widgets.

    If you look at the site now, you will see the footer is moving below, but the widgets are behaving wrong.

    Here is where I have placed the line in the theme footer code.

    <?php
    
    // Exit if accessed directly
    if ( !defined( 'ABSPATH' ) ) {
    	exit;
    }
    
    /**
     * Footer Template
     *
     *
     * @file           footer.php
     * @package        Responsive
     * @author         Emil Uzelac
     * @copyright      2003 - 2014 CyberChimps
     * @license        license.txt
     * @version        Release: 1.2
     * @filesource     wp-content/themes/responsive/footer.php
     * @link           http://codex.ww.wp.xz.cn/Theme_Development#Footer_.28footer.php.29
     * @since          available since Release 1.0
     */
    
    /*
     * Globalize Theme options
     */
    global $responsive_options;
    $responsive_options = responsive_get_options();
    ?>
    <?php responsive_wrapper_bottom(); // after wrapper content hook ?>
    </div><!-- end of #wrapper -->
    <?php responsive_wrapper_end(); // after wrapper hook ?>
    </div><!-- end of #container -->
    <?php responsive_container_end(); // after container hook ?>
    
    <div id="footer" class="clearfix">
    	<?php responsive_footer_top(); ?>
    
    	<div id="footer-wrapper">
    
    <?php do_action( 'my_custom_action' ); ?>
    
    		<?php get_sidebar( 'footer' ); ?>
    
    		<div class="grid col-940">
    
    			<div class="grid col-540">
    				<?php if ( has_nav_menu( 'footer-menu', 'responsive' ) ) {
    					wp_nav_menu( array(
    						'container'      => '',
    						'fallback_cb'    => false,
    						'menu_class'     => 'footer-menu',
    						'theme_location' => 'footer-menu'
    					) );
    				} ?>
    			</div><!-- end of col-540 -->
    
    			<div class="grid col-380 fit">
    				<?php echo responsive_get_social_icons() ?>
    			</div><!-- end of col-380 fit -->
    
    		</div><!-- end of col-940 -->
    		<?php get_sidebar( 'colophon' ); ?>
    
    		<div class="grid col-300 copyright">
    			<?php esc_attr_e( '&copy;', 'responsive' ); ?> <?php echo date( 'Y' ); ?><a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
    				<?php bloginfo( 'name' ); ?>
    			</a>
    		</div><!-- end of .copyright -->
    
    		<div class="grid col-300 scroll-top"><a href="#scroll-top" title="<?php esc_attr_e( 'scroll to top', 'responsive' ); ?>"><?php _e( '&uarr;', 'responsive' ); ?></a></div>
    
    		<div class="grid col-300 fit powered">
    			<a href="<?php echo esc_url( 'http://cyberchimps.com/responsive-theme/' ); ?>" title="<?php esc_attr_e( 'Responsive Theme', 'responsive' ); ?>">
    				Responsive Theme</a>
    			<?php esc_attr_e( 'powered by', 'responsive' ); ?> <a href="<?php echo esc_url( 'http://ww.wp.xz.cn/' ); ?>" title="<?php esc_attr_e( 'WordPress', 'responsive' ); ?>">
    				WordPress</a>
    
    		</div><!-- end .powered -->
    
    	</div><!-- end #footer-wrapper -->
    
    	<?php responsive_footer_bottom(); ?>
    </div><!-- end #footer -->
    <?php responsive_footer_after(); ?>
    
    <?php wp_footer(); ?>
    </body>
    </html>
    Thread Starter maxwellharrison

    (@maxwellharrison)

    A link to the site

    http://troddenunderfoot.com/

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