Hi all, newbie PHP coder here and I'm stuck...
I'm building a website in Drupal, and am trying to hide a <div> only on a specific path/page. I've used a bit of PHP to hide the <div> (called "right") on the front page with no problem, here's the code:
<?php if ( ! $is_front ) : ?>
<div id="right"><?php print $content; ?></div>
<?php endif; ?>
However, I don't want to hide the <div> on the front page, instead I want to hide the <div> on another specific path/page... in this case the path/page would be www.****.com/ellen/home
Any ideas? I know the solution must be embarrassingly simple, but I've been stabbing in the dark all day on Drupal.org and Google with no luck. 😃
Thank you!