• I have playlists on separate pages on my site. The main video plays, but the videos below in the playlist won’t play. When I click one I get a message telling me there are no results found.

    I’ve searched for this topic and tried some things. I was able to resolve some issues on my own but not this one yet.

    I have done this and it did not work:
    “Go to WP admin ->Settings -> Permalinks -> set to default and check. If it is working fine, now change the permalink to “post name” or any other option. If you are still facing any issue in this, feel free to contact us.”

    https://wordpress.org/plugins/contus-video-gallery/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter thisisfitworkouts

    (@thisisfitworkouts)

    Actually, now the main video on those category pages isn’t playing! Oy.

    Hi,

    Please share your site link. So that I can check and assist you accordingly.

    Hi karthikeyani,

    I also meet this problem. After installing the plugin, only the featured video can be displayed, could you please help me to look into it?

    Here is my page:
    http://www.indulwich.com/video-home/

    Thanks,
    Irene

    Hi,

    Yes by default we will play featured videos on the video home page player. Let me know what video you want to play. If you want to play recent videos then open \wp-content\plugins\contus-video-gallery\hdflvvideoshare.php file and find $singleVideodata = $pageOBJ->_featuredvideodata; and replace with the following code.

    $thumImageorder = 'w.vid DESC';
    	$where = '';
    	$singleVideodata = $contOBJ->home_playxmldata ( $getVid, $thumImageorder, $where, $numberofvideos );

    If you want play popular videos replace with the following code.

    $thumImageorder = 'w.hitcount DESC';
    	$where = '';
    	$singleVideodata = $contOBJ->home_playxmldata ( $getVid, $thumImageorder, $where, $numberofvideos );

    And also noticed some design issue in your site. To fix that open /wp-content/plugins/contus-video-gallery/css/style.css and add the following code at the end of the file.

    #popular_video h2, #recent_video h2, #featured_video h2 {
        color: #d20013 !important;
    }

    Now go to admin -> Video Gallery -> Settings -> Find Skin Visible and enable it.

    Sorry the file path is wrong in the above post. Please open \wp-content\plugins\contus-video-gallery\myextractXML.php instead of \wp-content\plugins\contus-video-gallery\hdflvvideoshare.php file and make the above changes.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Playlist videos receive 'no results found' when clicked.’ is closed to new replies.