• Is there any way with Customizr to make a mobile version that only includes certain elements of my main website, in other words a very stripped-down version? Thanks.

Viewing 15 replies - 1 through 15 (of 17 total)
  • Thread Starter millerguide

    (@millerguide)

    Let me rephrase: is there a way to make just one page/section of the mobile version of my site, not appear in mobile mode?

    you might try wp_is_mobile function in addition width is_page() hook

    I don’t think this is necessary in a fully responsive theme like Customizr but that’s just my opinion as I dislike mobile versions of sites.

    Bear in mind screensizes for mobiles ar eincreasing so it may ‘not’ be an issues to have all content displayed. Maybe going down the App route may be a better option for you

    Thread Starter millerguide

    (@millerguide)

    stellamaris5, overall it works fine on mobile. But, I have a sitemap that I would like to disable on mobile, because it resizes, and the click zones are no longer accurate. Is there a way to just disable that on mobile?

    Link to site?

    Oh, ok, so you want to hid one page for mobile, i think this can be done but i dont know how to do this..someone soon will be able to assist

    @stellamaris5 has been giving you sound advice, but let me help if I can.

    Need the site link to be able to see how to disable the sitemap.

    Thread Starter millerguide

    (@millerguide)

    I can see a button Location that points at the Page. Would it be right to hide that button on mobile? Is that the only link to the Page?

    If so, can you set an id on that button eg
    <a href="http://www.millerfoodguide.com/?page_id=220" class="aio-blue" id="hideLocation" title="位置 Location">位置 Location</a>

    Thread Starter millerguide

    (@millerguide)

    rdellconsulting, brilliant! Yes, if I just hide the button, it will hide the page. You are a genius!

    As for the code you posted, what exactly would it do? Would it be possible to have that button hide only in mobile mode?

    Again, thanks, and I look forward to your answer!

    Still on it. I’d have expected this to work but it doesn’t:

    @media all and (max-width:600px) {
    [title~="Location"] {
    display: none;
    }
    }

    Still trying to find a way to uniquely identify that button

    Thread Starter millerguide

    (@millerguide)

    rdell thank you so much for your trouble and time. I am very excited about a solution. You rock!

    OK, try this

    @media all and (max-width: 600px) {
    .aio-button-left a.aio-blue[href*="page_id=220"] {
    display: none;
    }
    }

    You need to decide at what setting yo need the button to disappear (eg 979, 800, 600 etc)

    You’ll be back with one more question…

    Thread Starter millerguide

    (@millerguide)

    rdellconsulting haha, thank you. I understand what you mean now. I appreciate your help and time.

    Thread Starter millerguide

    (@millerguide)

    Well, you were right about one last question. Ok your solution works great, and I really appreciate it: the button disappears on mobile.

    One last thing is this: where the button was, is a blank space. Is there a way to make that blank space disappear so that the surrounding buttons are even again, or am I just asking too much? Thanks!

    That was the question, and If I had a solution I would have given it yesterday! I’ve spent hours, and will continue to seek your solution! In the meantime, I hope the temporary solution suits you.

Viewing 15 replies - 1 through 15 (of 17 total)

The topic ‘Make completely separate mobile version?’ is closed to new replies.