By Lorenzo on Saturday, 03 January 2015
Posted in Technical Issues
Replies 4
Likes 0
Views 671
Votes 0
Hello everybody
I'm new on this forum, thank you for your patience because the component is quite complex and it will take me a while to be able to set it correctly.
Question: Is there an option to place "Subscribe to blog" and "Subscribe via RSS" buttons below the toolbar, or should I target them via css rules?

Thank you

Hello Lorenzo Rossini,

I am really sorry for the delay of this reply as it is a weekend for us here.
Yes, that was right as Aikigi mentioned, there do not have setting available to change this, you have to modify on this file JoomlaFolder\components\com_easyblog\themes\default\toolbar.php

//LINE 56 until 70
<?php if( $system->config->get( 'main_sitesubscription' ) || $system->config->get( 'main_rss' ) ){ ?>
<div class="component-links float-r">
<?php if( $system->config->get( 'main_sitesubscription' ) ){ ?>
<a href="javascript:void(0);" onclick="eblog.subscription.show('<?php echo EBLOG_SUBSCRIPTION_SITE; ?>');" class="link-email">
<span><?php echo JText::_('COM_EASYBLOG_SUBSCRIPTION_SUBSCRIBE_TO_SITE'); ?></span>
</a>
<?php } ?>

<?php if( $system->config->get( 'main_rss' ) ){ ?>
<a href="<?php echo EasyBlogHelper::getHelper( 'Feeds' )->getFeedURL( 'index.php?option=com_easyblog' );?>" title="<?php echo JText::_('COM_EASYBLOG_SUBSCRIBE_FEEDS'); ?>" class="link-rss">
<span><?php echo JText::_('COM_EASYBLOG_SUBSCRIBE_FEEDS'); ?></span>
</a>
<?php } ?>
</div>
<?php } ?>

//Move above code in LINE 345
//After this line of code
<?php echo EasyBlogHelper::renderModule( 'easyblog-after-toolbar' ); ?>

Hope this help.
·
Sunday, 04 January 2015 10:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Lorenzo,

From what I know, there is no option to move them under the navigation bar (but i'm not from the stackideas team so I could be wrong!!)

You will have to do it via css or by overriding the layout file in joomla.
·
Sunday, 04 January 2015 09:57
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello and thank you both
I changed the code by adopting the method of the override and it works for the php file, on the other side I have a problem with overrides CSS files, all icons disappear, I think the relative path is no longer correct, is this normal? Should I change the path for all images (anyway I can't target the right path)? I rather think that the problem is elsewhere ...

Thank you
·
Sunday, 04 January 2015 21:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Lorenzo,

I am sorry for the late reply. Glad to hear your issue is resolved.
However, about your overrides CSS files, do you mean by template overrides? If so, can you provide us with backend access and FTP access so that we can assist you further on this issue. You also can refer to this documentation for a guide on this issue: http://stackideas.com/docs/easyblog/customizations/338-template-overriding .
By the way, it would be nice and better of you to create a new ticket/thread on this issue since this issue is a whole new issue. This can minimize the confusion on both sides.

Please advise.
Thanks.
·
Monday, 05 January 2015 11:39
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post