Open sidebar-browse.php
and replace:
<?php
$ad160_show = of_get_option( 'ac_ad160_show' );
$ad160_code = of_get_option( 'ac_ad160_code' );
$ad160_title = of_get_option( 'ac_ad160_title' );
$ad160_url = of_get_option( 'ac_ad160_url' );
if ( $ad160_show && $ad160_code != '' ) : ?>
<div class="banner-160-wrap">
<div class="ad160">
<?php
if ( $ad160_title != '' ) {
echo '<h5 class="banner-small-title"><a href="' . esc_url( $ad160_url ) . '">' . esc_html( $ad160_title ) . '</a></h5>';
}
if ( $ad160_code != '' ) {
echo $ad160_code;
}
?>
</div>
</div>
<?php endif; ?>
with:
<div class="banner-160-wrap">
<div class="ad160">
YOUR AD CODE GOES HERE
</div>
</div>
I hope I don’t have to tell you that you need to use a child theme.