wpvideogallery
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatic YouTube Gallery] Is it possible to get smaller thumbnails loaded?Unfortunately, our current version doesn’t have any developer hook to override the thumbnail image URL. I promise that our next version will have this.
As a quick solution, you can simply edit the following file and change the thumbnail path,
/wp-content/plugins/automatic-youtube-gallery/public/templates/thumbnail.php
If you are using our PREMIUM version, you should edit the following file,
/wp-content/plugins/automatic-youtube-gallery-premium/public/templates/thumbnail.php
Hope this solved your issue!
Forum: Reviews
In reply to: [All-in-One Video Gallery] All-In-One Video Gallery Is One Of The Best PluginDid you update anything recently? I believe there is a conflict. Kindly write to us here https://plugins360.com/all-in-one-video-gallery/support/ along with this post link. So, we can request more details about your website privately to further investigate the issue.
If possible, please also attach a log file from your server. Kindly follow the steps below to generate a log file,
- Kindly install this plugin https://www.ads-software.com/plugins/debug-bar/
- Then, enable debugging in your website by adding the following code in your wp-config.php
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
// Disable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( 'SCRIPT_DEBUG', true );Now, when you receive the error next time, go to /wp-content/ folder and there should be a debug.log file. Please copy and send it to us. So, we can get a clue about the issue and assist you accordingly.
- This reply was modified 1 week, 6 days ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Portfolio in galleryUnfortunately, we don’t have a dedicated theme specifically for portfolios. However, you can use our plugin to achieve a portfolio-like setup with some customization.
Here are some steps and features that might help you set up a portfolio:
- Customization: You can use our plugin to organize videos by categories, tags, and authors, which can be tailored to fit a portfolio format. The option to display videos by author is particularly useful for showcasing individual creators’ work, which is a common feature in portfolios.
- Tutorial: For guidance on how to get started with setting up and customizing the plugin, please refer to our “Getting Started” tutorial here: https://plugins360.com/all-in-one-video-gallery/getting-started/
- Free Features: All these features are available in the standard FREE version of our plugin.
If you have any specific requirements or if you find that certain features are missing, please let us know. We value your feedback and can consider it for inclusion in future updates.
Thank you for considering our plugin. We look forward to hearing from you!
Forum: Plugins
In reply to: [All-in-One Video Gallery] RSS feed not valid?The custom taxonomy name for our tags are “aiovg_tags”.
So, the feed URL should look like
/aiovg_tags/featured-on-tgp/feed/
So, simply replace the
/video-tag/
part from your URL to/aiovg_tags/
Hope this solved your issue!
Forum: Reviews
In reply to: [All-in-One Video Gallery] All-In-One Video Gallery Is One Of The Best PluginI’m happy that your issue is solved. And, many thanks for updating your rating ??
- This reply was modified 3 months, 3 weeks ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Autoplay full screen on mobileThanks 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.
Forum: Reviews
In reply to: [All-in-One Video Gallery] All-In-One Video Gallery Is One Of The Best PluginHope 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!
Forum: Reviews
In reply to: [All-in-One Video Gallery] All-In-One Video Gallery Is One Of The Best PluginMy 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!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Autoplay full screen on mobileUnfortunately, 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.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Autoplay full screen on mobileThey 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”.
Forum: Plugins
In reply to: [All-in-One Video Gallery] PREMIERE A VIDEOUnfortunately, this is not possible using our current version ??
But, I promise that we will have this very soon in the future. Kindly be patient.
Forum: Plugins
In reply to: [Automatic YouTube Gallery] Is Multiple Channels possible in one embed?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://www.ads-software.com/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,
- Getting Started: https://plugins360.com/all-in-one-video-gallery/documentation/
- Auto Import YouTube Videos: https://plugins360.com/all-in-one-video-gallery/auto-import-youtube-videos/
So, the trick here is,
- Go to the “Video Gallery => Video Categories” menu, create separate categories each representing a YouTube Channel.
- 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.
- 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://www.ads-software.com/support/plugin/all-in-one-video-gallery/
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video slider issueIt 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.www.ads-software.com/reference/functions/wpautop/Kindly follow one of the solutions below,
Solution #1:
https://developer.www.ads-software.com/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.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video Tag Page appearanceKindly 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!
Forum: Plugins
In reply to: [Automatic YouTube Gallery] Not working for my client’s YouTube pageKindly 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.