Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #468534

    Hello, I have built my site using your theme and i have an issue with the filtering option i have created that appears below the products on a mobile. Is there a way for this to be positioned above the products on the shop overview page?

    Many thanks

    #468735

    Hi theroyds!

    I’m not sure I understand what you are trying to change, could you provide us with a screenshot highlighting your intentions please?

    Cheers!
    Rikard

    #469500

    Hello Rikard,
    I have provided a link to 3 mobile screenshots (Archive.zip)

    Mobile Image 1 is at the top…as i scroll down the page on my mobile..
    Mobile Image 2 – still scrolling down the page on my mobile
    Mobile Image 3 – as you can see the filter options are at the bottom rather then at the top…does that make sense?

    #470137

    Hi!

    although it sounds easy, it requires quite a lot of coding and time to achieve that. Please refer to this answer: https://kriesi.at/support/topic/reward-for-sidebar-top-on-mobile-screens/#post-130977
    I recommend to hire a freelancer for this job.

    Best regards,
    Andy

    #470430

    Thats disappointing you would think that in this day and age filter option on a mobile would be pretty standard. Really disappointed with Kriesi and will have to tell the client.

    Can you make this clear on your website so people who want a proper mobile responsive theme to look elsewhere

    cheers

    Jason

    #470436

    Hi Jason!

    As a workaround, you can create a custom widget area in Appearance > Widgets and then add widget area element to top of your page and choose to display that widget. Then please enable custom CSS field for ALB elements – kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then give it a custom CSS class and add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (min-width: 769px) {
    .your-custom-class { display: none !important; }}

    Please also see – http://kriesi.at/documentation/enfold/custom-woocommerce-shop-overview/

    Best regards,
    Yigit

    #471828

    Thank you for getting back to me is it possible if i give you my login details, could you quickly do this for me?

    #472163

    Hey!

    The problem is, you can’t use the advance layout builder when you set a page as shop base page. However, you can move the sidebar on top of the content. Please refer to this link: https://kriesi.at/support/topic/widget-in-sidebar-disappear-in-responsive/#post-468104

    Remove browser cache then reload the page.

    Regards,
    Ismael

    #472199

    HI Ismael

    I need a little help with this

    1 Do I use the the suggested code on the theme functions.php page using editor.

    2 – Do I create a sidebar for the top of the page.

    ?

    Jason

    #472206

    Hello

    Can you code this to work please I am really struggling. Please use the following page.

    I set up http://www.luminairearts.co.uk/test-product-page/

    Many Thanks

    #472969

    Hi,

    I’ll do it for you, can you please hand me a temporary FTP / SFTP account? post it here as a private reply.

    Regards,
    Josue

    #472995

    Hi josue

    For some reason Ii cannot see http://www.luminairearts.co.uk can you tell me what has happened please.

    I have also attached the info as requested

    #473013

    Hi Josue
    Is it possible you can look at this as a matter of urgency please, it is really worrying that the site is down and i cannot see why…please help

    I have also sent the login details for the wordpress control panel…

    Many thanks

    #473031

    its back up thank you

    #473032

    It’s done, check the shop page:
    http://www.luminairearts.co.uk/shop/

    Here’s what i did (update-proof):
    1. Added the following to Plugins > Edit Functions (this will clone the filter and put it before the sort options at the top, only runs on Shop page):

    function clone_filter(){
    	if(is_shop()) { ?>
    	<script>
    	(function($){
    
    			$('.content .product-sorting').prepend($('.inner_sidebar > .widget_layered_nav').clone());
    
    	})(jQuery);
    
    	</script>
    	<?php
    	}
    }
    add_action('wp_footer', 'clone_filter'); 

    2. Added this to Quick CSS (this will make sure the cloned filters only appear on mobile):

    @media only screen and (min-width: 767px) {
        .product-sorting > .widget_layered_nav {
            display: none;
        }
    }

    Cheers!
    Josue

    #473066

    Excellent J

    Many thanks indeed – very very happy

    Jason

    #473075

    You are welcome Jason, glad to help :)

    Regards,
    Josue

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Filter option below my products on Mobile device’ is closed to new replies.