-
AuthorPosts
-
dpchap015 Friend
dpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
October 15, 2013 at 7:19 am #191390i tried it on my localhost.. i want to see only biography and one more tab like intro.
i deleted(blank) it from the .ini file as mention
TPL_COM_CONTENT_CATEGORY_GENERAL=””
TPL_COM_CONTENT_CATEGORY_BIOGRAPHY=””
TPL_COM_CONTENT_CATEGORY_TRACKS=””
TPL_COM_CONTENT_CATEGORY_ALBUMS=””
TPL_COM_CONTENT_CATEGORY_VIDEO=””
TPL_COM_CONTENT_CATEGORY_PHOTOS=””
TPL_COM_CONTENT_CATEGORY_EVENT=””. but the artist category single article still show all of the category in red bar.
i selected none option for all in template config…but result same. see this
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
October 15, 2013 at 10:24 am #509035Hi
To modify that go to your template manager >> Ja Music Default template >> Templates Config >> You will see a list of Categories
Simply select None for every unwanted category and save the new configurationdpchap015 Frienddpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
October 15, 2013 at 12:28 pm #509045<em>@pavit 393662 wrote:</em><blockquote>Hi
To modify that go to your template manager >> Ja Music Default template >> Templates Config >> You will see a list of Categories
Simply select None for every unwanted category and save the new configuration</blockquote>hi … i already told u in my first message that i selected none for unwanted category but no change..
:pSaguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 16, 2013 at 9:38 am #509147Do you have any other style rather than default one in template manager section? That style maybe assigned to these menu items so that when changing default one, it doesn’t take effect.
dpchap015 Frienddpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
October 16, 2013 at 10:34 am #509159<em>@Saguaros 393812 wrote:</em><blockquote>Do you have any other style rather than default one in template manager section? That style maybe assigned to these menu items so that when changing default one, it doesn’t take effect.</blockquote>
okk. thanksdpchap015 Frienddpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
October 23, 2013 at 11:23 am #509966i am using the sidebar template for the event blog layout..
when i hide the bar from template options for event
it will hide the red bar from single article(event category)
but the it will crash the event blog layout.
see this http://awesomescreenshot.com/0a61v6kp3ei know i can change it from hide it from article php file. but i want to do it from template options.
and how can i change the name general to some to other name.?Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 25, 2013 at 4:12 am #510173Hi dpchap015,
<blockquote>when i hide the bar from template options for event
it will hide the red bar from single article(event category)
but the it will crash the event blog layout.
see this http://awesomescreenshot.com/0a61v6kp3e</blockquote>Yes, when hiding the options for event, it will load the default layout. You can open file: /templates/ja_muzic/html/com_content/category/event_item.php
<?php if ($params->get('show_create_date')) : ?>
<?phpif($event_category == $this->item->catid){ ?>
<div class="created-date">
<span class="day"><?php echo JHtml::_('date', $this->item->publish_up, JText::_('TPL_DATE_FORMAT_DAY'));?></span>
<span class="month"><?php echo JHtml::_('date', $this->item->publish_up, JText::_('TPL_DATE_FORMAT_MONTH'));?></span>
</div>
<?php }else{ ?>
<dd class="create">
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', '<span>'.JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC3')).'</span>'); ?>
</dd>
<?php }?>
<?php endif; ?>
If you want it always keeps the same layout though the option for event is off or not, you can change above code to:
<?php if ($params->get('show_create_date')) : ?>
<div class="created-date">
<span class="day"><?php echo JHtml::_('date', $this->item->publish_up, JText::_('TPL_DATE_FORMAT_DAY'));?></span>
<span class="month"><?php echo JHtml::_('date', $this->item->publish_up, JText::_('TPL_DATE_FORMAT_MONTH'));?></span>
</div>
<?php endif; ?>
For the year shifted above, you can open file: /templates/ja_muzic/css/custom.css, add this css rule:
.view-category.ja-muzic-events .ja-muzic-events .items-row.month:first-child span, .view-category.ja-muzic-events .ja-muzic-events .items-row.year:first-child span {
top: -44px;
}
dpchap015 Frienddpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
October 25, 2013 at 6:02 am #510176okk i will do it. but what about the article name in event category..
left side articles shows only single word name.
not the full name. see attachment again..Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 25, 2013 at 6:46 am #510183I tried to reproduce by following all of steps you described but I don’t see error with article title, could you pm me admin and ftp account of your site? I will take a look at this.
AuthorPostsViewing 9 posts - 1 through 9 (of 9 total)This topic contains 9 replies, has 3 voices, and was last updated by Saguaros 11 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum
How to customize single article red bar
Viewing 9 posts - 1 through 9 (of 9 total)