Knowledgebase

Handmade: Titles break Featured Gallery widget layout

Intro

The following workaround will truncate the title at 30 characters. Edit the slider-widget.php and replace line 52: <h3><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h3> with: <h3><a href=”<?php the_permalink(); ?>”><?php echo substr(the_title($before = ”, $after = ‘…’, FALSE), 0, 30); ?></a></h3> Your final code should look like this: <li> <?php […]

Solution

The following workaround will truncate the title at 30 characters.

Edit the slider-widget.php and replace line 52:

<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>  

with:

<h3><a href="<?php the_permalink(); ?>"><?php echo substr(the_title($before = '', $after = '...', FALSE), 0, 30); ?></a></h3>

Your final code should look like this:

                        <li>
                        <?php echo $image; ?>
         <h3><a href="<?php the_permalink(); ?>"><?php echo substr(the_title($before = '', $after = '...', FALSE), 0, 30); ?></a></h3>
</li>

 

Get 15% off!

Signup and get 15% off any of our Ghost or Framer themes immediately