3 replies [Last post]
mimetic2's picture
Offline
Joined: 08/07/2007
Juice: 478
Was this information Helpful?

Hello,

I'm trying to theme the catalog block title. I want to change it from Catalog to a different text (which I can do in block admin) however, I need to add a span class.

So for instance I'd like to change 'catalog' to

my new title

How should i go about doing this?

Thanks uberdudes Smiling

mimetic2's picture
Offline
Joined: 08/07/2007
Juice: 478
Nevermind Figured it out!

NM! Figured it out. Just themed the block.tpl.php.

<div id="sidebar">

    <?php if ($block->subject): ?>
  <h3 class="title block-title">shop<span><?php echo $block->subject; ?></span></h3>
<?php endif; ?>

    <div class="content">
      <?php echo $block->content; ?>
    </div>
   
  <?php print $edit_links; ?>

</div>

TR
TR's picture
Offline
Bug FinderFAQ ModeratorGetting busy with the Ubercode.
Joined: 11/05/2007
Juice: 3424
Re: Theme Catalog Block Title

In your theme, copy block.tpl.php to block-uc_catalog.tpl.php then modify the markup to your heart's content. If your theme doesn't have a default block.tpl.php, use the one found at themes/engines/phptemplate/block.tpl.php

<tr>.
manoloka's picture
Offline
Joined: 04/30/2011
Juice: 10
Re: Re: Theme Catalog Block Title