By Zeosing on Tuesday, 04 March 2014
Posted in Technical Issues
Replies 7
Likes 0
Views 848
Votes 0
We have to customize this module , but when we do, the module has a codification error , we donĀ“t find the error.
<?php
/**
* @package EasyBlog
* @copyright Copyright (C) 2010 Stack Ideas Private Limited. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*
* EasyBlog is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

defined('_JEXEC') or die('Restricted access');
?>
<?php if( $params->get( 'enableratings' ) )
{
$disabled = false;
}
else
{
$disabled = true;
}?>
<div class="ezb-mod ezblog-relatedpost<?php echo $params->get( 'moduleclass_sfx' ) ?>">

<!-- Entries -->
<?php if( $posts ){ ?>
<div class="ezb-mod">
<?php foreach( $posts as $post ){ ?>
<?php
$itemId = modRelatedPostHelper::_getMenuItemId($post, $params);
$url = EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id=' . $post->id . $itemId );

$posterURL = EasyBlogRouter::_( 'index.php?option=com_easyblog&view=blogger&layout=listings&id=' . $post->author->id . $itemId );
$posterName = $post->author->getName();
?>
<div class="mod-item">
<a class="box-link" href="/<?php echo $url; ?>"> </a>

<?php $backgroungImage = str_replace(" ", "%20", $post->getImage()->getSource('related')); ?>
<div class="back-image" style="background-image: url('/<?php echo $backgroungImage;?>'); background-size:cover">
<div class="box-overlay"></div>


<div class="mod-post-title">
<a href="/<?php echo $url; ?>"><?php echo $post->title;?></a>
</div>

<?php if( $params->get( 'showcategory') ){ ?>
<div class="mod-post-type">
<a href="/<?php echo EasyBlogRouter::_( 'index.php?option=com_easyblog&view=categories&layout=listings&id=' . $post->category_id . $itemId );?>"><?php echo $post->getCategoryName();?></a>
</div>
<?php } ?>

<?php if( $params->get( 'showintro' , '-1' ) != '-1' ){ ?>
<div class="mod-post-content clearfix">

<?php if( $post->protect ){ ?>
<?php echo $post->content; ?>
<?php } else { ?>
<?php echo $post->summary;?>
<?php } ?>

</div>
<?php } ?>

<!-- Blog post actions -->
<?php if( $params->get( 'showcommentcount' , 0 ) || $params->get( 'showhits' , 0 ) || $params->get( 'showreadmore' , true ) ){ ?>
<div class="mod-post-meta small">
<?php if($params->get('showcommentcount', 0)) : ?>
<span class="post-comments">
<a href="/<?php echo $url;?>"><?php echo JText::_( 'MOD_EASYBLOGRELATED_COMMENTS' ); ?> (<?php echo $post->commentCount;?>)</a>
</span>
<?php endif; ?>

<?php if( $params->get( 'showhits' , true ) ): ?>
<span class="post-hit">
<a href="/<?php echo $url;?>"><?php echo JText::_( 'MOD_EASYBLOGRELATED_HITS' );?> (<?php echo $post->hits;?>)</a>
</span>
<?php endif; ?>

</div>
<?php } ?>
</div>

</div>
<?php } ?>
</div>

<?php } else { ?>
<?php echo JText::_( 'MOD_EASYBLOGRELATED_NO_POST'); ?>
<?php } ?>
</div>


Any Idea?

Thanks.
Hello,

You should actually do some tests on $post->getImage() before calling getSource
·
Wednesday, 05 March 2014 10:56
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Can you please post your site's ftp access and the URL to the page that has errors so that we can check on this?
·
Tuesday, 04 March 2014 23:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Here it is, sorry
·
Tuesday, 04 March 2014 23:14
·
0 Likes
·
0 Votes
·
0 Comments
·
Where is the page that has errors? Please provide us with the direct url to the page that has errors
·
Wednesday, 05 March 2014 00:20
·
0 Likes
·
0 Votes
·
0 Comments
·
I post you in the ftp url
·
Wednesday, 05 March 2014 01:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Perfect as always , thanks
·
Wednesday, 05 March 2014 13:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

You're welcome.
·
Wednesday, 05 March 2014 15:35
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post