Remove single video attributes

Discussion in 'VideoCraft WordPress Theme' started by smurph2020, Nov 5, 2013.

Thread Status:
Not open for further replies.
  1. smurph2020

    smurph2020 New Member

    Joined:
    Nov 4, 2013
    Messages:
    11
    Likes Received:
    0
    To whom it may concern:
    I am trying to remove the attributes for a single embedded video in the VideoCraft theme. I would like to remove the date and the author of the single video directly underneath as well as the author, star rating, and social "like" buttons underneath. I looked through the previous posts but didn't find anything.
    Screen Shot remove attributes.png Thank you for your help,
    Sean
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .video_post .video_post_meta {
    display: none;
    }
    .single_page_ratting {
    display: none;
    }
    
     
  3. smurph2020

    smurph2020 New Member

    Joined:
    Nov 4, 2013
    Messages:
    11
    Likes Received:
    0
    Gourav,
    Thank you this removed everything with the exception of the email address above the ratings. Is there any way to remove this as well. Again, thank you for your time and expertise.
    Sean
     
  4. smurph2020

    smurph2020 New Member

    Joined:
    Nov 4, 2013
    Messages:
    11
    Likes Received:
    0
    Gourav,
    I figured it out. In order to hide the elements under a single video on the single video page you need to add this code into the Custom CSS option of the Theme Editor.

    .video_post .video_post_meta .posted_by {
    display: none;
    }
    .video_post .video_post_meta .post_date {
    display: none;
    }

    The first code removed the Posted By graphic on the screen and the second the posting date.

    Good luck everyone.
     
Thread Status:
Not open for further replies.

Share This Page