Forum Replies Created

Viewing 15 replies - 646 through 660 (of 677 total)
  • Hi,

    Thank you for your interest on our product. For your kind information, lightbox effect is not available in our default package. However you can customize this feature. If you like to customize the package, please contact our Business Development Team at [email protected]. They will check the feasibility and assist you accordingly.

    Hi,

    Please open /wp-content/plugins/contus-video-gallery/configXML.php and find the below code.

    $playXml                = APPTHA_VGALLERY_BASEURL . 'myextractXML.php';
    $midrollXml             = APPTHA_VGALLERY_BASEURL . 'mymidrollXML.php';
    $imaAdsXML              = APPTHA_VGALLERY_BASEURL . 'myimaadsXML.php';
    $langXML                = APPTHA_VGALLERY_BASEURL . 'languageXML.php';
    $emailPath              = APPTHA_VGALLERY_BASEURL . 'hdflvplayer/email.php';
    $downloadPath           = APPTHA_VGALLERY_BASEURL . 'hdflvplayer/download.php';
    $adsXml                 = APPTHA_VGALLERY_BASEURL . 'myadsXML.php';
    $skinPath               = APPTHA_VGALLERY_BASEURL . 'hdflvplayer' . DS . 'skin/skin_hdflv_white.swf';

    Now replace with the following code and check.

    $playXml                =  'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/myextractXML.php';
    $midrollXml             =  'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/mymidrollXML.php';
    $imaAdsXML              =  'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/myimaadsXML.php';
    $langXML                =  'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/languageXML.php';
    $emailPath              =  'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/hdflvplayer/email.php';
    $downloadPath           =  'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/hdflvplayer/download.php';
    $adsXml                 =  'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/myadsXML.php';
    $skinPath               = 'https://www.sherylandcorey.com.php53-9.ord1-1.websitetestlink.com/wp-content/plugins/contus-video-gallery/hdflvplayer/skin/skin_hdflv_white.swf';

    Hi,

    Please open \wp-content\plugins\contus-video-gallery\front\views\videomore.php and go to line 219 and find the below code

    //PAGINATION STARTS
    $total          = $CountOFVideos;
    $num_of_pages   = ceil($total / $dataLimit);
    $page_links     = paginate_links(array(
    'base'      => add_query_arg('pagenum', '%#%'),
    'format'    => '',
    'prev_text' => __('?', 'aag'),
    'next_text' => __('?', 'aag'),
    'total'     => $num_of_pages,
    'current'   => $pagenum
    ));
    
    if ($page_links) {
    $div .='<div class="tablenav"><div class="tablenav-pages" >' . $page_links . '</div></div>';
    }
    //PAGINATION ENDS

    Now replace with the following code.

    if($dataLimit!=0){
    //PAGINATION STARTS
    $total          = $CountOFVideos;
    $num_of_pages   = ceil($total / $dataLimit);
    $page_links     = paginate_links(array(
    'base'      => add_query_arg('pagenum', '%#%'),
    'format'    => '',
    'prev_text' => __('?', 'aag'),
    'next_text' => __('?', 'aag'),
    'total'     => $num_of_pages,
    'current'   => $pagenum
    ));
    
    if ($page_links) {
    $div .='<div class="tablenav"><div class="tablenav-pages" >' . $page_links . '</div></div>';
    }
    //PAGINATION ENDS
    }

    Kindly note that you must have entered rows or/and columns as zero for “Featured” , “Recent”, “Popular”, “Category” videos in admin video gallery settings page. So that this issue happened.

    Hi,

    Kindly note that, if you want to post your video on your facebook timeline using video gallery, it is not available in default package and it is an additional task. If you like to customize the file, please contact our Business Development Team at [email protected]. They will check the feasibility and assist you accordingly.

    Hi,

    Please share your site link and make sure that you have set “post name” or “default” as permalink in WP Admin -> Settings -> Permalinks.

    Hi,

    I have checked your site and found that you are facing the issue in “Home page”
    (https://screencast.com/t/vZKqdh4C). To resolve the issue, please open \wp-content\plugins\contus-video-gallery\front\views\videohome.php and find “function categoryList”. Inside the function, you can find the below code.

    if (strlen($playList->name) > 30) {
     $playListName = substr($playList->name, 0, 30) . "";
    } else {
     $playListName = $playList->name;
    }

    Replace with the following code, if you want to display the full title.

    $playListName = $playList->name;

    If you just want to increase the title length, then increase the value 30 and check. If you are still facing any difficulties in this feel free to contact us.

    Hi,

    /wp-admin/ is for accessing admin part of the WordPress and since our plugin is developed in MVC structure, admin.php is a controller for our plugin in WordPress admin panel. We will redirect to the other pages based on task using this controller. Please refer the following link https://screencast.com/t/MPOfxO5Bily6 for your reference.

    Hi,

    Please refer the following link https://screencast.com/t/lBsst9CMpHY7 and share any one of a post link from your site. I have noticed that, you have deactivated the video gallery plugin in your site. please activate the plugin and let me know. So that I can check and assist you accordingly.

    Hi,

    Do you want to increase the length of the video title when you clicking on particular playlist (please refer the link https://screencast.com/t/cDPUlrCneaSj)? If so, please open \wp-content\plugins\contus-video-gallery\front\views\videomore.php and find “function categoryList”. Inside the function, you can find the below code.

    if (strlen($playList->name) > 30) {
    $playListName = substr($playList->name, 0, 30) . "";
    }

    Please increase the value 30 and check. If you are still facing any difficulties in this feel free to contact us with screenshot or site link.

    Hi,

    Please share any post link (not a page link) that you have posted on your site. It would be helpful for us to analyze your issue and assist you accordingly.

    If you don’t have any post on your site, please create a new one and share the link.

    Hi,

    Please open “configXML.php” file from the following path /wp-content/plugins/contus-video-gallery/ and remove all the blank lines and remove “ob_clean();” code from the first line of the file and add before the following code and check.

    echo ‘<?xml version=”1.0″ encoding=”utf-8″?>’;

    If you are still facing the same issue, feel free to post here.

    Hi,

    Kindly note that, if you want to create a custom template file to call video gallery, it is not available in default package and it is an additional task. If you like to custom the file, please contact our Business Development Team at [email protected]. They will check the feasibility and assist you accordingly.

    Hi,

    It is not possible to place short code in custom php file. Whereas you can call the function to display video home page in your php file. Please open the php file where you want to display the videohome page and place the following code and check.

    echo video_homereplace();

    If you are still facing any difficulties in this, feel free to contact us.

    Hi,

    If you don’t want to display the widget on the video gallery page, then please refer the following link for your reference. https://www.ads-software.com/support/topic/how-to-edit-the-post-type-videogallery

    If you have nay other queries feel free to contact us.

    Hi,

    Yes you can assign different widgets on you sidebar for video gallery pages. Please refer the plugin https://www.ads-software.com/plugins/display-widgets/ . It allows you to do this. Please refer the following link for your reference. https://screencast.com/t/HEhWMOKuK

    If you have any other queries feel free to contact us.

Viewing 15 replies - 646 through 660 (of 677 total)