I've searched the forums but didn't found where we're looking for.
Is there an code similar to the Wordpress code If homepage / frontpage for Dolphin 7.3.2?
if ( is_front_page() ) { echo'<h2>Only Displays On The Front Page</h2>';
}
I've searched the forums but didn't found where we're looking for. if ( is_front_page() ) { echo'<h2>Only Displays On The Front Page</h2>'; |
Try this
if (defined('BX_INDEX_PAGE')) { // this is homepage so much to do.... |
Thanks!!! Worked.. |