Hi,
1) It’s inheriting the settings in Add-ons tab in template manager, you can open this file:
ROOT/templates/ja_social_ii/tpls/blocks/header-features-intro.php
Remove this snippet of code:
<?php if ($this->getParam('addon_offcanvas_enable')) : ?>
<?php $this->loadBlock ('off-canvas') ?>
<?php endif ?>
2) It’s header title of off-canvas:
-
If you want to translate the text, just open the language file of template which you’re using on your site, for example, with English: ROOT/language/en-GB/en-GB.tpl_ja_social_ii.ini
Look for this text field: T3_SIDEBAR ="Sidebar" , then change to your desired text
- In case that you want to remove, open the off-canvas block: ROOT/templates/ja_social_ii/tpls/blocks/off-canvas.php
Line 28, remove this line of code:
<h 2 class="t3-off-canvas-header-title"><?php echo JText::_('T3_SIDEBAR'); ?></h2>
Hope this helps.
Regards