Vimeo Single Post Image Size

Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #14956
    aespaterson
    Member

    Hi,

    Just inserted a test vimeo on this post; it appears perfectly on the home page & blog home page but when you click on ‘read more’, the image does not go full width.

    Any ideas ?

    #14958
    aespaterson
    Member
    This reply has been marked as private.
    #14970
    Raghavendra
    Moderator

    I will need to find a better solution for this in the next update. Meanwhile, pls remove the is_single() check in line number 601 in framework/framework.php and you should do fine.

    #14998
    aespaterson
    Member

    Hey thanks, but I’m not comfortable with code, plus, line 601 ??

    I found this, what exactly should I delete ?

    if (!is_single()) {

    Thanks 😉

    #15051
    Raghavendra
    Moderator

    We have an update submitted which should take care of this. Anyway for now, you can replace –

    if (!is_single()) {
                    wp_enqueue_script('jquery-validate', MO_SCRIPTS_LIB_URL . '/jquery.validate.min.js', array('jquery'), '1.9.0', true);
                    wp_enqueue_script('jquery-ytpplayer', MO_SCRIPTS_LIB_URL . '/jquery.mb.YTPlayer.js', array('jquery'), '1.0', true);
                    wp_enqueue_script('jquery-prettyphoto', MO_SCRIPTS_LIB_URL . '/jquery.prettyPhoto.js', array('jquery'), '3.1.5', true);
                    wp_enqueue_script('jquery-isotope', MO_SCRIPTS_LIB_URL . '/jquery.isotope.min.js', array('jquery'), '1.5.19', true);
                }
    

    with

     wp_enqueue_script('jquery-validate', MO_SCRIPTS_LIB_URL . '/jquery.validate.min.js', array('jquery'), '1.9.0', true);
                wp_enqueue_script('jquery-ytpplayer', MO_SCRIPTS_LIB_URL . '/jquery.mb.YTPlayer.js', array('jquery'), '1.0', true);
                wp_enqueue_script('jquery-prettyphoto', MO_SCRIPTS_LIB_URL . '/jquery.prettyPhoto.js', array('jquery'), '3.1.6', true);
                wp_enqueue_script('jquery-isotope', MO_SCRIPTS_LIB_URL . '/jquery.isotope.min.js', array('jquery'), '1.5.19', true);
    
    

    Pls note the removal of ending bracket as well.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘Fusion Theme Support’ is closed to new topics and replies.