how to create subtitle in menus in joomla 3.3

Everything to do with Joomla! 1.5 templates and templating.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Locked
Jorgo
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Wed Nov 19, 2014 2:58 pm

how to create subtitle in menus in joomla 3.3

Post by Jorgo » Wed Nov 19, 2014 3:04 pm

On my old template I used "||" between the title and subtitle and it worked automatically. Why doesn't it anymore?

itoctopus
Joomla! Virtuoso
Joomla! Virtuoso
Posts: 4025
Joined: Mon Nov 25, 2013 4:35 pm
Location: Montreal, Canada
Contact:

Re: how to create subtitle in menus in joomla 3.3

Post by itoctopus » Wed Nov 19, 2014 3:13 pm

Joomla doesn't do that by default. That feature was probably built-in in your previous template. You can easily modify your current template to do that the following way:

Code: Select all

$arrTitle = explode("||", $item->title); //or $article->title;
$title = $arrTitle[0];
$subtitle = '';
if (count($arrTitle) > 1)
    $subtitle = $arrTitle[1];
http://www.itoctopus.com - Joomla consulting at its finest
https://twitter.com/itoctopus - Follow us on Twitter

Jorgo
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Wed Nov 19, 2014 2:58 pm

Re: how to create subtitle in menus in joomla 3.3

Post by Jorgo » Wed Nov 19, 2014 4:03 pm

Thanks for your reply! I'm not familiar with modifying a template. Can you point out where I need to make the modification?

User avatar
dpacadmin
Joomla! Champion
Joomla! Champion
Posts: 6029
Joined: Sat Aug 16, 2008 1:46 pm
Location: the Bat Cave
Contact:

Re: how to create subtitle in menus in joomla 3.3

Post by dpacadmin » Wed Nov 19, 2014 7:26 pm

This would be a great question to ask in theJoomla 3 templates forum.


Locked

Return to “Templates for Joomla! 1.5”