Forum Replies Created

Viewing 15 replies - 76 through 90 (of 674 total)
  • Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Thanks for your reply.

    Unfortunately, Facebook videos must be added using their native embed because their Player API doesn’t offer enough flexibility to integrate with our custom video player. As a result, it’s not possible to enable fullscreen mode with Facebook videos when clicking the play button.

    However, YouTube videos can be played using our custom video player. To enable this, go to the “Video Gallery => Settings” menu in your WordPress Admin Dashboard, find the “Use Native Controls” setting, and make sure the “YouTube” option is unchecked. This will allow YouTube videos to be played with our custom player, and the fullscreen option will be available.

    The same procedure applies to Vimeo videos.

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    @shubh01an7,

    Hope you received our previous reply and that it resolved your issue.

    We use the iframe player type by default to avoid conflicts with third-party CSS and JS code. If you would prefer to continue using our iframe player, please let me know so we can provide steps to remove the no-index tag from our player page. After reviewing your question, we’ve decided to remove the no-index meta tag from our player page in the next version or at least offer an option for this. The no-index tag was added to prevent duplicate page indexing, but since there is already a canonical tag pointing to the main video page, we believe removing the no-index meta tag will not cause any issues.

    We’ve invested many sleepless nights into developing and maintaining this plugin. If the issue has been resolved, we would greatly appreciate it if you could consider updating your review.

    Thank you for your understanding!

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    @shubh01an7,

    My sincere apologies for any inconvenience caused. By default, our plugin uses an iframe to add the player, and this iframe page includes a no-index meta tag to prevent the player page from being indexed. However, this should not affect the indexing of the video page itself.

    As an alternative, you can use the JavaScript-based initialization option in our plugin, which does not use an iframe and does not add no-index meta tags.

    Solution:

    Please navigate to “Video Gallery => Settings” in your WordPress Admin Dashboard. Locate and enable the “Force JavaScript Based Initialization” option, then save the changes and check if the issue is resolved.

    If the issue persists, please provide us with the URL of an example video page from your website. This will allow us to investigate further and assist you more effectively.

    Hope this helps you!

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Unfortunately, the “Playsinline” attribute is supported only on iOS.

    No worries, kindly try adding the following code to the bottom of your theme’s functions.php file to open the videos in fullscreen on your Android devices.

    function aiovg_custom_extend_player() {
    if ( ! wp_is_mobile() ) return;
    ?>
    <script type="text/javascript">
    // Listen to the player initialized event
    window.addEventListener( 'player.init', function( evt ) {
    var player = evt.detail.player;

    // play
    var fullscreenRequested = false;

    player.on( 'play', function() {
    if ( fullscreenRequested ) return true;

    player.requestFullscreen();
    fullscreenRequested = true;
    });

    // ended
    player.on( 'ended', function() {
    player.exitFullscreen();
    });
    });
    </script>
    <?php
    }
    add_action( 'aiovg_player_footer', 'aiovg_custom_extend_player' );

    But, the above code works only when the videos are played using our custom video player. I remember that you use Dailymotion videos on your website but that uses the native Dailymotion embed. Sorry, the code patch above will not work for Dailymotion videos 🙁

    The Dailymotion’s Player API has been completely changed. So, our current custom player version cannot play the Dailymotion videos. But, I promise that we will support their latest Player API very soon. Kindly be patient.

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    They are old posts. Our last version introduced a setting for this option. So, you no longer need to depend on the code patch.

    Kindly go to the “Video Gallery => Settings” menu from your WordPress Admin Dashboard, find the “Playsinline” option, and simply disable that.

    Hope this solved your issue!

    In case the issue remains, kindly share with us an example page URL from your website where the issue remains. So, we could get a clue about the issue and assist you accordingly.

    Note the “Playsinline” option works only on iOS. Also, the video goes fullscreen only when you click the “Play Button”.

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Unfortunately, this is not possible using our current version 🙁

    But, I promise that we will have this very soon in the future. Kindly be patient.

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Thanks for contacting us.

    Unfortunately, our current version doesn’t support multiple channels in a single gallery/shortcode.

    Alternative Solution:

    We have another plugin called “All-in-One Video Gallery” https://wordpress.org/plugins/all-in-one-video-gallery/ and you can use this plugin to achieve this.

    But, the way the “All-in-One Video Gallery” plugin works is completely different from the “Automatic YouTube Gallery” plugin.

    Kindly refer to the following links,

    1. Getting Started: https://plugins360.com/all-in-one-video-gallery/documentation/
    2. Auto Import YouTube Videos: https://plugins360.com/all-in-one-video-gallery/auto-import-youtube-videos/

    So, the trick here is,

    1. Go to the “Video Gallery => Video Categories” menu, create separate categories each representing a YouTube Channel.
    2. Then, go to the “Video Gallery => Automations” menu, and create separate automations for each your YouTube Channel. The automation form has the option to select categories for the imported videos. Kindly select the respective category for the imported videos.
    3. Finally, use our gallery shortcode to display videos from multiple categories in the order you need.

    Example Shortcode:

    [aiovg_videos category="1,2,3" orderby="date"]

    The numeric values “1, 2, and 3” in the above shortcode belongs to your category IDs that you can find under your “Video Gallery => Video Categories” menu.

    Hope this helped you!

    If you are interested with this plugin and have more doubts, kindly use the respective plugin forum link here https://wordpress.org/support/plugin/all-in-one-video-gallery/

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    It shows that your theme or editor wraps line breaks with paragraph elements and that creates the issue.

    In other words, your theme or editor uses the “wpautop” function https://developer.wordpress.org/reference/functions/wpautop/

    Kindly follow one of the solutions below,

    Solution #1:

    https://developer.wordpress.org/reference/functions/wpautop/#user-contributed-notes

    Solution #2:

    Kindly try adding the following CSS code under the “Appearance => Customize => Additional CSS” menu from your WordPress Admin Dashboard,

    .aiovg-thumbnail p,
    .aiovg-thumbnail br {
    display: none;
    }

    Hope this solved your issue!

    In case the issue remains, kindly submit a ticket here https://plugins360.com/support/

    So, we could get more details about your website privately to further investigate the issue and share with you a fix accordingly.

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Kindly go to the “Appearance => Customize => Additional CSS” menu from your WordPress Admin Dashboard, and try adding the following CSS code,

    .aiovg-tags-list {    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    }

    .aiovg-tags-list a.tag-cloud-link {
    font-size: 1rem !important;
    }

    Hope this solved your issue!

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Kindly try using the shortcode below,

    [automatic_youtube_gallery type="channel" channel="https://www.youtube.com/watch?v=nQEtkPglIkA"]

    Hope this solved your issue!

    Reason for the issue:

    Technically, our plugin uses the YouTube Data API to get videos from your Channel.

    Unfortunately, the YouTube API doesn’t support the channel URL format you have shared with us. So, the solution is to add a channel ID or a Video URL from your channel. When you add a video URL from your channel, our plugin will use the video URL to find your channel ID and display the videos from the detected channel automatically.

    The shortcode above uses a video URL from your channel.

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Apologies. This is not possible using our current plugin version 🙁

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Kindly refer to https://plugins360.com/all-in-one-video-gallery/front-end-user-submission/

    Hope this helped you!

    Please write us here https://plugins360.com/support/ for further questions related to our PRO version.

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    “All-in-One Video Gallery” uses the built-in commenting system from WordPress.

    You simply need to disable the “Enable threaded (nested) comments _ levels deep” option from the “WordPress Admin Dashboard => Settings => Discussion” settings. Kindly check https://wordpress.org/documentation/article/comments-in-wordpress/#comment-display for more details.

    Hope this helped you!

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Thanks for your feedback.

    If possible, kindly let us know what hiding controls you expect. Your information would be helpful for us to plan out future versions accordingly.

    Have a nice day!

    Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Sure, this is possible. Kindly try using the following shortcode,

    [aiovg_videos include="YOUR_VIDEO_ID"]

    Note: You must replace “YOUR_VIDEO_ID” from the shortcode above with the actual Video ID that you can get from your “WordPress Admin Panel => Video Gallery => All Videos” menu.

Viewing 15 replies - 76 through 90 (of 674 total)