By Darren Knipe on Wednesday, 19 August 2015
Posted in General Issues
Replies 7
Likes 0
Views 0.9K
Votes 0
Couple of issues:
1. I get this when I try create post in backend:
Fatal error: Call to a member function hasCustomFields() on boolean in .../administrator/components/com_easyblog/includes/composer/composer.php on line 283

2. The module "EasyBlog - Latest Blogs Module" on frontpage is not allowing link to the blog when sent via email, but instead homepage.
Hello Darren,

Your first issue is may be caused by the default category. There are two possibilities; You don't have a default category or your default category is not public. Please give a try.

As for the second issue, can you elaborate more on it?
·
Wednesday, 19 August 2015 13:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Nick

Thanks resolved first issue.

The second issue is relating to publishing via email does not correctly link on the module "EasyBlog - Latest Blogs Module".

As shown on my homepage in attachment, the test blog was written in backend and links to article correctly. The prior article "Vacancy" was sent via email and links to homepage and not the article.
·
Wednesday, 19 August 2015 16:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Darren,

Ah, I see. Can you provide us your backend and FTP access so we can have a better look on your issue here?
·
Wednesday, 19 August 2015 16:57
·
0 Likes
·
0 Votes
·
0 Comments
·
Details here
·
Wednesday, 19 August 2015 17:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Darren,

Can you please try replace the attached file in: ../administrator/components/com_easyblog/includes/mailbox/adapters/post.php and do the remote posting again. If the issue still there, we need your FTP to debug this.
·
Wednesday, 19 August 2015 19:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Ok found issue in :
.../modules/mod_easybloglatestblogs/tmpl/default_item.php

line 73:
		<?php if (in_array($post->posttype, array('twitter', 'email', 'link'))) { ?>
<div class="eb-mod-title">
<a href="<?php echo $post->posttype == 'link'? $post->getAsset('link'):$url; ?>" class="eb-mod-media-title"><?php echo $post->title;?></a>
</div>


change to:
		<?php if (in_array($post->posttype, array('twitter', 'email', 'link'))) { ?>
<div class="eb-mod-title">
<a href="<?php echo $post->getPermalink(); ?>" class="eb-mod-media-title"><?php echo $post->title;?></a>
</div>
·
Wednesday, 19 August 2015 22:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Darren,

Great! Glad you have found the issue. I will update this in our repo.
·
Thursday, 20 August 2015 12:05
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post