• Resolved Ambyomoron

    (@josiah-s-carberry)


    I have created a landing page using a custom template, which differs from the default template by having no title, no widgets, all the page in a single column. The appearance of the page in WPTouch is OK, except for the page title, which I do not want to appear. Is there a way to use my custom template within WPTouch (but only for that landing page); or is there a different way to avoid displaying the page title with WPTouch (again, only for that landing page)?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Custom page templates are supported in the child theme in WPtouch Pro. While you can modify the templates in WPtouch (free), all your changes will be overwritten in an event of an update.

    The change you’re looking to do can be done with CSS. To remove the page title from a specific page, add the CSS below to Appearance > Customize > Custom CSS, when editing the mobile theme.

    .page-id-2 .post-page-head-area {
    display: none;
    }

    where “2” is the page’s ID.

    Or use:

    .home .post-page-head-area {
    display: none;
    }

    if the page you want to remove the page title from is the homepage.

    Regards,

    Emilio Rivera
    WPtouch Support

    Thread Starter Ambyomoron

    (@josiah-s-carberry)

    Thanks for the CSS hint, Emilio. That works fine for me.

    Great to know that worked for you. You’re welcome.

    Regards,

    Emilio Rivera
    WPtouch Support

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom template for just one page?’ is closed to new replies.