Different landing page for desktop vs mobile theme?

No worries. I should have linked to instructions here too! There is a nice illustrated set of instructions you can check out here. It’s possible you might be on the latest version of Discourse, in which case the UX for themes and components has changed a little. Let me know if the instructions I linked to still leave you a little lost. I’d be happy to help you figure it out.

By the way, the topic below is the home of this theme component now:

2 Me gusta

thanks @tshenry i’ll take a look.

however I’ve just fiddled round with the customization settings - I’ve never had an issue before, and now my site has disappeared!! Just produces a blank screen, but the code is there!!

any idea how to reverse changes from the cli???

cheers

You’ll need to go to your site’s safe mode Air Cadet Central and check “disable current theme” then you’ll want to revert whatever change you made in the customizations.

2 Me gusta

thanks fella - didn’t know that existed! Lifesaver!

1 me gusta

OK back up and working - thanks again - I’ve installed your theme and it’s installing as a Theme not a Theme Component??? any ideas. I’m on Version: v2.1.0.beta5 +66

cheers, and thanks for your hard work :smiley:

No problem. If you select it from the list of themes, then scroll down, you should see a section like this:

You’ll want to click the “make component” button then confirm. You should then be able to add it to your main theme the way it’s outlined in the instructions I linked to earlier.

Fab, getting there! Making it a component works, but when I add it to my theme it adds a component with the others but there’s no text for the link, but the (x) button is there. The link it produces ends in a # where the others don’t??
and it doesn’t seem to work!!

Cheers

Ah yeah, I think that might be a little bug that’s still getting worked out. Try refreshing the page, then click the (x) if that blank theme component is still there, then try selecting the Force Mobile Homepage component again. You might also try selecting another theme component from the dropdown list, then open the list again and select the Force Mobile Homepage component again. Click the “add” button and hopefully that should do it!

3 Me gusta

You are indeed a hero - now working as advertised! Many thanks for your help today, greatly appreciated!

1 me gusta

Yes, I’ve come across this several times. Has this been reported I wonder?

I don’t know - I haven’t - but @tshenry 's suggestion of moving in and out of the drop down menu after a page reload worked.

1 me gusta

Nice one! thanks @tshenry :heart:

1 me gusta

Any reason not to combine your script with the following in Customize --> Themes --> Mobile --> Header?

<script>
  if (window.location.pathname == "/")
  {   window.location.href = "/latest";
  }
</script>

This will handle the initial redirect to /latest if the user arrives on the homepage.

1 me gusta

No particular reason, no. That said, I no longer use that script. With the addition of user-selectable homepages I just have those that prefer /latest select it.

1 me gusta

I originally found this topic when searching for a solution to my problem:

As it explains, I have my forum set up to display categories + latest since I don’t only want to display the latest on desktop. Here are the two Discourse settings that make that layout possible:

It’s the ideal layout for me since it both displays the categories for users looking to post something new and makes the latest available for other people who are just coming back to see what’s new.

For anyone reading along who wants to do the same thing, here’s what you need to do:

  1. Go to the Edit CSS/HTML section of your theme:

  2. Add the following script in the MobileHeader section (so it only affects visitors on mobile devices):

    Here’s the script so you can copy/paste it:

    <script>
        if (window.location.pathname == "/")
        {   window.location.href = "/latest";
        }
    </script>
    
    <script type="text/discourse-plugin" version="0.4">
        api.changeWidgetSetting('home-logo', 'href', '/latest')
    </script>
    

Update: The Forced Mobile Homepage theme component linked above is probably a better way to accomplish this.

10 Me gusta

¿Sería posible tener esta función por usuario? Es decir, que cada usuario pueda elegir su página predeterminada en móviles en las preferencias de su interfaz (ya existe una general allí, solo necesitaríamos una exclusiva para móviles).

3 Me gusta

Actualmente tengo el mismo problema: en el escritorio prefiero la vista de categorías donde el último tema aparece a la derecha. En el móvil, la vista de categorías solo muestra las categorías. En el móvil, preferiría tener la vista de “últimos” cambios en los temas.

Sería genial tener dos preferencias:

  • página de inicio predeterminada en escritorio: [campo de selección]
  • página de inicio predeterminada en móvil: [campo de selección]

¿Es esto algo para lo que se aceptaría una PR?

7 Me gusta

¿Podría tratarse también de una configuración por dispositivo? Las soluciones alternativas publicadas anteriormente no son ideales porque obligan a aplicar la configuración a todos los usuarios móviles (y en este sentido, es difícil clasificar las tabletas). Además, es bastante evidente que a menudo puede tener sentido tener preferencias diferentes según el dispositivo, no solo la distinción entre escritorio y móvil.

1 me gusta

¡Esto es lo mejor desde la invención de la rueda! Gracias, hermano.

1 me gusta

Me encantaría tener esas preferencias también… ¿Hay alguna forma de hacerlo?