Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter xoldie

    (@xoldie)

    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.

    Thread Starter xoldie

    (@xoldie)

    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!!

    • This reply was modified 6 years, 2 months ago by xoldie. Reason: nevermind i didn't try add the code to the functions.php and it work.. sorry and thank you!!
    • This reply was modified 6 years, 2 months ago by xoldie.

    so 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.

    since 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.
Viewing 4 replies - 1 through 4 (of 4 total)