Hello Support
The first file (title.create.php) looks like this:
<?php
/**
* @package EasySocial
* @copyright Copyright (C) 2010 - 2013 Stack Ideas Sdn Bhd. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* EasySocial 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( 'Unauthorized Access' );
?>
<?php echo $this->html('html.user', $actor->id);?> <i class="ies-arrow-right"></i> <?php echo $this->html('html.group', $group->id);?>
So I am guessing that there is nothing in there that I need to change?!?!
For the second (preview.create.php) file:
<?php
/**
* @package EasySocial
* @copyright Copyright (C) 2010 - 2013 Stack Ideas Sdn Bhd. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* EasySocial 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( 'Unauthorized Access' );
?>
<div class="stream-links">
<h4 class="content-title<?php echo $assets->get('image') || $assets->get('content') ? ' has-info' : '';?>">
<a target="_blank" class="jcepopup noicon" data-mediabox="width[1280];height[720]" href="/<?php echo $assets->get( 'link' );?>"<?php if ( $params->get( 'stream_link_nofollow' , false ) ) { ?> rel="nofollow"<?php } ?>><?php echo $assets->get( 'title' ); ?></a>
</h4>
<div class="links-content">
<div class="es-stream-preview fd-small">
<?php if( $params->get( 'stream_thumbnail' , true ) && $assets->get( 'image' ) ){ ?>
<?php if( isset( $oembed->html ) ){ ?>
<?php if( !isset( $oembed->thumbnail ) ){ ?>
<?php echo $oembed->html; ?>
<?php } else { ?>
<a href="javascript:void(0);" class="stream-preview-image" data-es-links-embed-item data-es-stream-embed-player="<?php echo $this->html( 'string.escape' , $oembed->html );?>">
<img src="<?php echo $oembed->thumbnail;?>" />
<i class="icon-es-video-play"></i>
</a>
<?php } ?>
<?php } else { ?>
<a href="<?php echo $assets->get( 'link' );?>" class="stream-preview-image" target="_blank"<?php if ( $params->get( 'stream_link_nofollow' , false ) ) { ?> rel="nofollow"<?php } ?>>
<img src="<?php echo $assets->get( 'image' );?>" />
</a>
<?php } ?>
<?php } ?>
<?php echo $assets->get( 'content' , '' ); ?>
</div>
</div>
</div>
All I did was search for this:
<a target="_blank" href="/<?php echo $assets->get( 'link' );?>"<?php if ( $params->get( 'stream_link_nofollow' , false ) ) { ?> rel="nofollow"<?php } ?>><?php echo $assets->get( 'title' ); ?></a>
Check out the links below,
http://facebook.com/StackIdeas
http://stackideas.com/support.html
http://stackideas.com/docs.html
Active Subscriptions
Your Reply
Bold
Italic
Underline
---------------
Link
Picture
Video
---------------
Bulleted list
Numeric list
List item
---------------
Quotes
Code
---------------
Happy
Smile
Surprised
Tongue
Unhappy
Wink
Site Details
Attachments
URL
Site URL :
Site Username:
Site Password:
FTP URL:
FTP Username:
FTP Password:
Optional Information:
And try and replace it with this:
<a target="_blank" class="jcepopup noicon" data-mediabox="width[1280];height[720]" href="/<?php echo $assets->get( 'link' );?>"<?php if ( $params->get( 'stream_link_nofollow' , false ) ) { ?> rel="nofollow"<?php } ?>><?php echo $assets->get( 'title' ); ?></a>
I am attaching a copy of the file in the hope that someone could take a look at it for me.
thanks
Paul