Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/content-.../inc/freemius/template.../plugin-i...
File: description.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* @package Freemius
[2] Fix | Delete
* @copyright Copyright (c) 2015, Freemius, Inc.
[3] Fix | Delete
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
[4] Fix | Delete
* @since 1.0.6
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[8] Fix | Delete
exit;
[9] Fix | Delete
}
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* @var array $VARS
[13] Fix | Delete
*
[14] Fix | Delete
* @var FS_Plugin $plugin
[15] Fix | Delete
*/
[16] Fix | Delete
$plugin = $VARS['plugin'];
[17] Fix | Delete
[18] Fix | Delete
if ( ! empty( $plugin->info->selling_point_0 ) ||
[19] Fix | Delete
! empty( $plugin->info->selling_point_1 ) ||
[20] Fix | Delete
! empty( $plugin->info->selling_point_2 )
[21] Fix | Delete
) : ?>
[22] Fix | Delete
<div class="fs-selling-points">
[23] Fix | Delete
<ul>
[24] Fix | Delete
<?php for ( $i = 0; $i < 3; $i ++ ) : ?>
[25] Fix | Delete
<?php if ( ! empty( $plugin->info->{'selling_point_' . $i} ) ) : ?>
[26] Fix | Delete
<li><i class="dashicons dashicons-yes"></i>
[27] Fix | Delete
[28] Fix | Delete
<h3><?php echo esc_html( $plugin->info->{'selling_point_' . $i} ) ?></h3></li>
[29] Fix | Delete
<?php endif ?>
[30] Fix | Delete
<?php endfor ?>
[31] Fix | Delete
</ul>
[32] Fix | Delete
</div>
[33] Fix | Delete
<?php endif ?>
[34] Fix | Delete
<div>
[35] Fix | Delete
<?php
[36] Fix | Delete
echo wp_kses( $plugin->info->description, array(
[37] Fix | Delete
'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
[38] Fix | Delete
'b' => array(),
[39] Fix | Delete
'i' => array(),
[40] Fix | Delete
'p' => array(),
[41] Fix | Delete
'blockquote' => array(),
[42] Fix | Delete
'h2' => array(),
[43] Fix | Delete
'h3' => array(),
[44] Fix | Delete
'ul' => array(),
[45] Fix | Delete
'ol' => array(),
[46] Fix | Delete
'li' => array()
[47] Fix | Delete
) );
[48] Fix | Delete
?>
[49] Fix | Delete
</div>
[50] Fix | Delete
<?php if ( ! empty( $plugin->info->screenshots ) ) : ?>
[51] Fix | Delete
<?php $screenshots = $plugin->info->screenshots ?>
[52] Fix | Delete
<div class="fs-screenshots clearfix">
[53] Fix | Delete
<h3><?php fs_esc_html_echo_inline( 'Screenshots', 'screenshots', $plugin->slug ) ?></h3>
[54] Fix | Delete
<ul>
[55] Fix | Delete
<?php $i = 0;
[56] Fix | Delete
foreach ( $screenshots as $s => $url ) : ?>
[57] Fix | Delete
<li class="<?php echo ( 0 === $i % 2 ) ? 'odd' : 'even' ?>">
[58] Fix | Delete
<style>
[59] Fix | Delete
#section-description .fs-screenshots <?php echo ".fs-screenshot-{$i}" ?>
[60] Fix | Delete
{
[61] Fix | Delete
background-image: url('<?php echo $url ?>');
[62] Fix | Delete
}
[63] Fix | Delete
</style>
[64] Fix | Delete
<a href="<?php echo $url ?>"
[65] Fix | Delete
title="<?php echo esc_attr( sprintf( fs_text_inline( 'Click to view full-size screenshot %d', 'view-full-size-x', $plugin->slug ), $i ) ) ?>"
[66] Fix | Delete
class="fs-screenshot-<?php echo $i ?>"></a>
[67] Fix | Delete
</li>
[68] Fix | Delete
<?php $i ++; endforeach ?>
[69] Fix | Delete
</ul>
[70] Fix | Delete
</div>
[71] Fix | Delete
<?php endif ?>
[72] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function