Removing video

Discussion in 'Cloriato WordPress Theme' started by tomw497, Dec 2, 2012.

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

    tomw497 New Member

    Joined:
    Apr 13, 2012
    Messages:
    13
    Likes Received:
    0
    Hi,

    Is there a way to remove the video and the associated title and read more links from the home page?

    Thanks,
    Tom
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .one_third{
    display:none;
    }
     
  3. tomw497

    tomw497 New Member

    Joined:
    Apr 13, 2012
    Messages:
    13
    Likes Received:
    0
    When I put the code in the Custom CSS area it took the video and the three pictures at the bottom of the page away... Is there anyway to just get the video to go away?

    Thanks
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to front-page.php present in your theme directory and remove the code given below

    Code:
     <div class="feature_inner">
            <?php if ( get_option('inkthemes_col_right_heading') !='' ) {  ?>
            <h2><a href="<?php if ( get_option('inkthemes_col_right_readmore') !='' ) { echo get_option('inkthemes_col_right_readmore'); } ?>"><?php echo stripslashes(get_option('inkthemes_col_right_heading')); ?></a></h2>
            <?php } else {  ?>
            <h2><a href="#">Out Latest Project</a></h2>
            <?php } ?> 
            <?php if ( get_option('inkthemes_col_right_desc') !='' ) {  ?>
            <p><?php echo stripslashes(get_option('inkthemes_col_right_desc')); ?></p>
            <?php } else {  ?>
            <p class="iframe"><object width="285" height="150"><param name="movie" value="http://www.youtube.com/v/ydn3aQKYxTM?version=3&hl=fr_FR&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/miAMATblEE8?version=3&hl=fr_FR&rel=0" type="application/x-shockwave-flash" width="285" height="192" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
            <?php } ?>
    <a TARGET="_blank"href="<?php if ( get_option('inkthemes_col_right_readmore') !='' ) { echo get_option('inkthemes_col_right_readmore'); } ?>" class="read_more">read more</a>
            </div>
    Sending image for refrence

    [​IMG]


    This will solve your issue.
     
  5. tomw497

    tomw497 New Member

    Joined:
    Apr 13, 2012
    Messages:
    13
    Likes Received:
    0
    That solved it.

    Thanks for the help!
     
Thread Status:
Not open for further replies.

Share This Page