• Resolved hrtliah

    (@hrtliah)


    `Hi, anyone can help me, I am using bazar theme. I want my footer not appear in my checkout page. What should I do? Please explain in detail, because i’m just a novice.

Viewing 3 replies - 1 through 3 (of 3 total)
  • yomisimie

    (@yomisimie)

    Depending on what content you need to hide just check for the current page in footer
    <?php if(is_page("checkout")) { //do nothing } else { //here you have your footer } ?>

    Thread Starter hrtliah

    (@hrtliah)

    Thankyou yomisimie. I already solved this problem.

    <?php if( !is_page('390') ) :?>

    390 is my checkoutpage id

    yomisimie

    (@yomisimie)

    Yea, works with ID too, but you better do if(( !is_page('390') ) || (!is_page('checkout'))) just to be sure. In case you change the page and the id changes.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove footer in bazar theme’ is closed to new replies.