Forum Replies Created
-
Author
-
masta76
ParticipantDone! 🙂
if anyone reading this wants to know how to rate a theme on themeforest (the function is well hidden), here is a picture showing how: http://themeforest.net/forums/thread/how-to-rate-a-file-template-download-it-now-/58963
masta76
ParticipantHi, yes now it works like a charm!
Thanks a lot for the help (and for an incredibly well designed theme)!
/Marek
masta76
ParticipantHi, and thanks for the answer!
However, it doe not work as expected…
1. When I replace return ‘camera’; with return ”; the camera does disappear, however, on mouse over there is still a round shadow that appears.
2. When adding the code you specify above to my child functions file the short code kleo_img_rounded seems to stop working. The images disappear and I only see the text saying [kleo_img_rounded src=”http://www.testtest.com/wp-content/uploads/great.jpg”%5D
Maybe it is interfering with some other custom function? I have added a few from your other support threads, so my child functions.php now looks like this:
/* Replace the heart with a empty function */
function my_custom_icon () {
return '';
}/* Replace the heart from register modal with a user icon function */
function my_custom_icon_register () {
return 'user';
}
/* Replace the heart from about us widget with a user icon function */
function my_custom_icon_about_widget () {
return 'user';
}/* This code should remove the light-box over the round images */
function kleo_img_rounded( $atts, $content = null ) {
extract(shortcode_atts(array(
'src' => '',
), $atts));$output = '<div class="circle-image">';
$output .= '
<span class="overlay"></span>
<span class="read"><i class="icon-'.apply_filters('kleo_img_rounded_icon','heart').'"></i></span>
</div>';return $output;
}?>
-
AuthorPosts