• Resolved giovanicrim

    (@giovanicrim)


    Hi!

    first of all… great plugin!

    I’ve a problem… with new version of plugin i must choose a start page among all wordpress pages… but, in my case, i need to use my front-page.php as start page. In my theme, the home page is a customized version of front-page.php without a specific wordpress page. How to resolve?

    Thanks!
    Danilo

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Nico Martin

    (@nico_martin)

    Hi Danilo

    Thanks for your feedback! I changed this because I got several feedback from users that thought it would be more intuitive if they could just select a start page than writing it themselves. But I might find a better way for upcoming versions.

    In the meanwhile you could use this filter to customize the URL:

    add_filter( 'web_app_manifest', function( $values ){
      $values['start_url'] = 'your custom url';
      return $values;
    }, 50 );

    Kind regards,
    Nico

    Thread Starter giovanicrim

    (@giovanicrim)

    Thanks! It works!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problem with Start Page’ is closed to new replies.