xoldie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: allowed hmtl ( unfiltered hmtl) in comments?so my visitor have no chance to leave a video comments in ASL (America sign language) on wordpress? There gotta be a way for them to leave video comments.
They were using this site https://streamable.com/ to embed the video in the comments.Forum: Themes and Templates
In reply to: [Twenty Twenty] hide the text “no comments”OK maybe I am not clear on this.. I only want to hide “No comments” text when i do get new comments I still want to show 1 comments , 2 comments.. just look ugly to have all post showing “NO COMMENTS!” if this make sense…
nevermind i didn’t try add the code to the functions.php and it work.. sorry and thank you!!Forum: Themes and Templates
In reply to: [Less Reloaded] Profile Pictureso you do everything on your phone?
to remove the image completely
just remove this code in the header start<?php // grab admin email and their photo $admin_email = get_option('admin_email'); echo get_avatar( $admin_email, 100 ); ?>good luck
- This reply was modified 7 years, 3 months ago by xoldie.
Forum: Themes and Templates
In reply to: [Less Reloaded] Profile Picturesince the creator didn’t answer your problem,
I found a way to fix this just go to
theme editor > Main index template > look for ( Start header )copy & paste this code
<img src="PASTE YOUR IMAGE FULL URL HERE" alt="" width="100" height="100" class="alignnone size-thumbnail wp-image-7" />**grab the image URL paste it in the code.**
here the example where to paste the code
——————————————<div class="gravatar"> <img src="PASTE YOUR IMAGE FULL URL HERE" alt="" width="100" height="100" class="alignnone size-thumbnail wp-image-7" /> <?php // grab admin email and their photo $admin_email = get_option('admin_email'); echo get_avatar( $admin_email, 100 ); ?> </div><!--/ author -->————–
and it’s work http://xoldie.com
- This reply was modified 7 years, 3 months ago by xoldie.