I am using the Newsflash Theme as mentioned above. I am trying to get rid of the Roople Theme logo that appears at the bottom of the screen. Although I can find the location of the png file, I cannot find how this file is called up.

Comments

mm167’s picture

why not donate some $$ to roople and ask them to do it for u?

lionheart8’s picture

Hi
I have never used the Newsflash Theme, but I use Tapestry.
I dont know if there is any similarity in their structure, but if that is the case, that code may be in page.tpl.php.
I used the instructions in this post http://www.roopletheme.com/forum/index.php?topic=462.0 to remove the logo in in my case.
Give it a try & check out page.tpl.php of Newsflash ...

For some reason the Roopletheme forum support is nothing like it was over a year ago & support questions there are not answered or it takes ages to get any response at all.

Regards

lionheart8’s picture

If you open the page.tpl.php, towards the bottom is this portion of code:

<div id="footer">
      <?php if ($footer_region) { ?>
        <div id="footer-region"><?php print $footer_region?></div>
      <?php } ?>
      <?php if ($footer_message) { ?>
        <div id="footer-message"><?php print $footer_message ?></div>
      <?php } ?>
      <br />
     <?php $logo_path = base_path() . path_to_theme() . "/images/" . get_newsflash_style(); ?>
      <a href="http://www.roopletheme.com" title="RoopleTheme!"><img src="<?php print $logo_path . '/RoopleThemeLogo.png'; ?>" alt="RoopleTheme!"/></a>
    </div><!-- /footer -->
 <?php $logo_path = base_path() . path_to_theme() . "/images/" . get_newsflash_style(); ?>
      <a href="http://www.roopletheme.com" title="RoopleTheme!"><img src="<?php print $logo_path . '/RoopleThemeLogo.png'; ?>" alt="RoopleTheme!"/></a>

Try removing that bit I show again below, but back up your original copy BEFORE, just in case.
It should do the trick, or at least the solution is not far from that.

The file page.tpl.php is inside the Newsflash theme folder

heleng’s picture

Thanks lionheart8 - that worked. For some reason when I searched for RoopleThemeLogo.png on the whole of my directory originally it never found it. I did a search within files. But never mind....its sorted now. Tahnks for your help.