• PaulBUK

    (@paulbuk)


    I just updated Customizr and now social button images and images associated with posts appear to be missing. Videos are now a clapper board instead of previews.

    https://www.hiker-bigtex.com

    Thanks for any assistance,

    Paul

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter PaulBUK

    (@paulbuk)

    I cleared cache and logged into admin and appears the social button issue is resolved. But i still do not get videos posted onto home page as before. is there a way to have the video on the post title?

    Also on my latest post there is no side image unlike other posts.

    Thanks

    To show video or audio in post lists, you should add this to your child-theme functions.php :

    add_filter('tc_show_excerpt', 'display_video_audio');
    function display_video_audio( $bool ){
      if ( in_array( get_post_format(), array('video', 'audio') ) )
        return false;
      return $bool;
    }

    This will switch, for those post formats, from displaying the excerpt to displaying the content. This means that all the text inside that post will be displayed to, unless you use the tag more.

    Hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image issue since latest update’ is closed to new replies.