Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default if statement for additional text in tpl_main_page.php

    I wanted to use EZpages text to display below the category pictures.
    I started with this code:

    HTML Code:
    <!--bof- SEO Ezpage text -->
    <div id="seo_content">
    	<?php 
        $page_query = $db->Execute("SELECT pages_html_text FROM zen_ezpages WHERE pages_title='SEO'");
        $seo_text = $page_query->fields['pages_html_text'];
        echo $seo_text;
        ?>
    </div>
    <!--eof- SEO Ezpage text -->
    It displays the text where I want it BUT now it shows on all pages. Could I put an if statement to make it ONLY show on the home page? I have tried but my php is not solid at all. Any suggestions?
    Live and learn... the Zen way.

  2. #2
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: if statement for additional text in tpl_main_page.php

    I think this should work. Any comments on the code appreciated. Just getting my feet wet with php.

    HTML Code:
    <!--bof- SEO Ezpage text -->
    <div id="seo_content">
    <?php
    if ($this_is_home_page) {
        $page_query = $db->Execute("SELECT pages_html_text FROM zen_ezpages WHERE pages_title='SEO'");
        $seo_text = $page_query->fields['pages_html_text'];
        echo $seo_text;
        } ?>  
    </div>
    <!--eof- SEO Ezpage text -->
    Live and learn... the Zen way.

 

 

Similar Threads

  1. v152 tpl_main_page.php Question
    By rbarbour in forum General Questions
    Replies: 1
    Last Post: 4 Jun 2014, 05:08 AM
  2. v139h tpl_main_page.php for my home page...
    By swamyg1 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 3 Dec 2012, 01:35 AM
  3. need html_header.php & tpl_main_page.php files
    By marvin in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 23 Nov 2011, 06:32 PM
  4. PHP help with broken tpl_main_page.php
    By HeresySnowboarding in forum General Questions
    Replies: 4
    Last Post: 18 Sep 2008, 07:48 PM
  5. Multiple tpl_main_page.php
    By jsico in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 27 Jul 2007, 06:08 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg