Hello,
I have two questions:
1) How I can remove image hover with this “circle” – http://oi44.tinypic.com/2iw6qmx.jpg – on mainpage and on other pages, widgets etc.
2) How I can change comments and date information and also lenght of excerpt (only on mainpage in 3-columns post grid): http://oi44.tinypic.com/2iw6qmx.jpg
Best regards
Hey msfoto!
1.) Add this on your custom.css or Quick CSS:
.image-overlay {
display: none !important;
opacity: 0 !important;
}
2.) You can edit config-templatebuilder > avia-shortcodes > postslider.php, find this code:
if($show_meta && !empty($excerpt))
{
$output .= "<div class='slide-meta'>";
if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
{
$link_add = $commentCount === "0" ? "#respond" : "#comments";
$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
}
$markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
$output .= "</div>";
}
Regards,
Ismael
Thanks! You have the best support of all from themeforest ;)