• Resolved mach887

    (@mach887)


    I created a custom post type and a custom archive page for that post type.
    I wrote the following in my archive page to make a drop down menu, it shows perfect on a web browser but doesn’t show on the app.(see link)
    What should I do? Thanks!

    <div class=”sa-wrapper”>

    <ul class=”sa-nav”>
    <?php
    $args = array(
    ‘post_type’ => ‘selfacademy’,
    ‘title_li’ => ”
    );
    wp_list_pages( $args ); ?>

    </div>

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AmauriC

    (@amauric)

    To be able to use your website theme feature in the app you need to enable in the app the theme:

    Native interface + your website theme

    Thread Starter mach887

    (@mach887)

    Yes it works! But now I also have my header and footer on the app which I don’t want. Is there a code I can use to not display header and footer only on pages seen on the app (css maybe?)? I have other pages seen on web where I do need header and footer. Thanks!

    Plugin Author AmauriC

    (@amauric)

    Add this in CSS and Javascript > In the App > CSS:

    header, footer {
    display: none;
    }

    ??

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