By Dmitry on Friday, 12 February 2016
Posted in General
Replies 5
Likes 0
Views 477
Votes 0
Hello

After playing some time with blog didn't find the way how to configure parts of the blog the way i like. Our developer can do anything of course but would love to do this without changing the code really as any update will result a lot of work to do again.

Would appreciate your answers / documentation links on following "how to" questions:
1. Subscribe Module - how to remove "your name" filed. Too much information required to subscribe
2. resolved
3. Is it possible to configure two joomla sites the following way:
we have installed the blog on site A, and would like to show recent posts module on site B. How do we achieve this?
4. layout settings - post options tab. I want to remove categories from the related post block. Possible?
5, comments settings. i switched Allow Registration When Posting Comments to NO. Still it shows the "Already Registered? Login Here" Is it a bug?
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here. Please find my response to your inquiries below:


1. Subscribe Module - how to remove "your name" filed. Too much information required to subscribe

Unfortunately this cannot be configured currently. You need to customize the theme file in /modules/mod_easyblogsubscribe/tmpl/default.php


3. Is it possible to configure two joomla sites the following way:
we have installed the blog on site A, and would like to show recent posts module on site B. How do we achieve this?

Unfortunately this is not possible unless you place a RSS Feed module which will read EasyBlog feeds from your site A


4. layout settings - post options tab. I want to remove categories from the related post block. Possible?

Not possible currently but you can remove this by modifying the theme file in /components/com_easyblog/themes/wireframe/blogs/entry/default.php


5, comments settings. i switched Allow Registration When Posting Comments to NO. Still it shows the "Already Registered? Login Here" Is it a bug?

It is not a bug. It's added for usability purposes. If you are not logged in, you can quickly login to the site by clicking on that link
·
Saturday, 13 February 2016 18:41
·
0 Likes
·
0 Votes
·
0 Comments
·
Is it possible to remove "Already Registered? Login Here" from the comments area? I don't want to anyone to be able to open the login area.
·
Wednesday, 24 February 2016 06:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Kim,

I am really sorry for the delay of this reply.

Currently we do not have settings to turn off the login in the comment form . However if you want to remove it manually, you can go to the following file, /components/com_easyblog/themes/wireframe/comments/form.php and remove the following code at line 27~32:
			<?php if ($this->my->guest) { ?>
<div class="pull-right">
<?php echo JText::_('COM_EASYBLOG_COMMENTS_ALREADY_REGISTERED');?>
<a href="<?php echo $loginURL;?>"><?php echo JText::_('COM_EASYBLOG_COMMENTS_ALREADY_REGISTERED_LOGIN_HERE');?></a>
</div>
<?php } ?>


Hope these help.
·
Wednesday, 24 February 2016 16:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Great. Thanks so much. That did the trick.
·
Thursday, 25 February 2016 06:01
·
0 Likes
·
0 Votes
·
0 Comments
·
You're welcome, glad to heard your issue resolved.
·
Thursday, 25 February 2016 11:37
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post