• Resolved alittlebitofnothing

    (@ecomonkey)


    I created a child theme and wanted to use woocommerce homepage control, so swapped out in index.php your code with the following

    <div class="container">
    	<div class="row">
    		<div id="primary" <?php bavotasan_primary_attr(); ?>>
    			<?php
    			if ( is_home() ) {
    				do_action( 'homepage');
    			}
    			?>
    		</div>
    
    		<?php get_sidebar(); ?>
    	</div>
    </div>

    Everything works fine – I think – but it looks like the homepage control plugin won’t work!

    I was thinking of upgrading, but perhaps I should look a bit further for a homepage control compatible theme?

    Thanks for your help

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter alittlebitofnothing

    (@ecomonkey)

    Maybe this was the wrong place to ask, anyway things have moved on apace.

    Thanks all the same …

    Tienda uses the front-page.php template so you would have to add the code to that file in your child theme in order for it to work.

    Thread Starter alittlebitofnothing

    (@ecomonkey)

    A belated thanks.

    I struggled to get tienda-basic to work.

    Category filters and admin product search were broken in the backend, ditto order management; The symptom no search results whatever the query. An invalid custom post error message was the only clue with filters applied. I didn’t manage to find time to solve it.

    And there was a @media query that fouled up clickable images on smaller devices – the following fixed it:

    @media( max-width: 992px ) {
    .pull-right {
    float: none !important;
    }
    }

    I have now moved on … but thought you’d appreciate the heads up.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Homepage control’ is closed to new replies.