Results 1 to 4 of 4

 

Thread: PHP If At This URL - Don't Show This Code.

  1. #1
    Paul Smith's Avatar
    Registered User

    Status
    Offline
    Join Date
    Mar 2007
    Posts
    280
    Thanks
    16
    Thanked 23 Times in 20 Posts


    Hi All

    I've added some code to the wordpress sidebar which simply shows an image link. I'm trying to make it so this code doesn't show on a specific page though, as the image is the same as the one on the page it links too.

    Not a coder, but was thinking this could be done with php if / else statements?

    Was working on something like:

    <?
    $comppage = "/page-i-dont-want-code-to-show-on/";
    $comppage = $_SERVER['REQUEST_URI'];
    if($comppage==$currentpage) {
    echo "";
    else
    echo "image code here";
    }
    ?>
    But this just removes the whole sidebar - I hotched it together from reading other forum posts. Anyone know how I can do this?

    Cheers

    Paul
    Paul Smith
    Gifts Guide UK

  2. #2
    Paul Smith's Avatar
    Registered User

    Status
    Offline
    Join Date
    Mar 2007
    Posts
    280
    Thanks
    16
    Thanked 23 Times in 20 Posts
    Nevermind, realised my mistake.

    <?php if (stripos($_SERVER['REQUEST_URI'],'/page-i-dont-want-code-to-show-on/') !== false) {echo '';}
    else
    {echo 'image code here';}
    ?>
    All good.
    Paul Smith
    Gifts Guide UK

  3. #3
    Registered User

    Status
    Offline
    Join Date
    Aug 2003
    Location
    Colchester
    Posts
    246
    Thanks
    42
    Thanked 20 Times in 19 Posts
    For non-coders there is plugin called WordPress › Widget Logic that makes it fairly easy and without changing the php code.

    This adds an extra field to each widget where you can add a conditional statement to control when it should display.

    e.g.

    • is_home()
    • is_page(array(71,1548))
    • !is_page(9) /* is not */
    • in_category(array(252))
    • is_category('softtoys')

  4. The Following User Says Thank You to gerry180 For This Useful Post:

    kickflip (13-11-10)

  5. #4
    kickflip's Avatar
    Registered User

    Status
    Offline
    Join Date
    Oct 2008
    Location
    Stafford
    Posts
    255
    Thanks
    26
    Thanked 21 Times in 20 Posts
    That looks like a great plugin, cheers!



Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
To Top

Content Relevant URLs by vBSEO 3.5.0 RC2