wpvideogallery
Forum Replies Created
-
By default, the plugin will only filter the private videos. But, I understand this will fail in some cases and there should be an option to configure the list of Video URLs those need to be excluded from the gallery. Our next version can do this. Please be patient.
Forum: Plugins
In reply to: [Automatic YouTube Gallery] 2 Requests1 – Please add an option to show a a default video if the plugin can’t display videos for some issues like quota exceeded…
Sure, I appreciate your suggestion and have taken a note of this.
“Regarding the Quota exceeded issue,”
I’ve no idea how you use our plugin. But, recently we received a support ticket from one of our user who had the quota exceeded issue even though his website uses videos less than 500. The reason for the issue is he is not using our plugin’s caching option which is essential to avoid frequent API calls and to avoid the quota exceeded issue. So, please make sure you’re using the caching option of our plugin.
2 – If only ONE video is chosen in “Videos per page”, no need for the the bottom preview thumbnail.
Sure, our next version will do this. But, to show a single video, we always recommend using the “Single Video” option from the Source type.
- This reply was modified 6 years, 8 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Order category by countKindly remove all your code and simply replace the following line,
$categories = get_the_terms( get_the_ID(), 'aiovg_categories' );as
$categories = wp_get_object_terms( get_the_ID(), 'aiovg_categories', array( 'orderby' => 'count', 'order' => 'DESC' ));Hope, this solved your issue!
- This reply was modified 6 years, 9 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Order category by countYou simply need to edit the following template files,
/wp-content/plugins/all-in-one-video-gallery/public/templates/video-thumbnail.php /wp-content/plugins/all-in-one-video-gallery/public/templates/video-thumbnail-image-left.php /wp-content/plugins/all-in-one-video-gallery/public/templates/single-video.phpYou may see that our template files use “get_the_terms” function from WordPress to get the categories. Simply follow the tutorial here https://www.yukei.net/2016/04/use-get_the_terms-instead-of-wp_get_object_terms/ that provides the exact steps to change the ordering of the categories.
Hope, this helped you!
- This reply was modified 6 years, 9 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Order category by countAah. Sorry, the category links displayed under each video doesn’t respond to the categories ordering set in the plugin’s settings page. I promise our next version can do this. Please be patient.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Error when deleting the image of Category1. Kindly go to Video Gallery / Settings / General under your WordPress Admin Panel.
2. Find the option “Delete media files? ” and uncheck the option.
3. Save the changes. That’s it.Now, when you remove the category image it’s not deleted from the media manager. Hope, this is what you need.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Twitter links are brokenAah. This is an issue coming from plugin itself but occurs only when your title uses the pipe (|) character. Our next version will have this solved. As an immediate solution, kindly follow the steps below,
1. Open /wp-content/plugins/all-in-one-video-gallery/includes/functions.php
2. Locate the function named ‘the_aiovg_socialshare_buttons’
3. Find the line,
$title = str_replace( ' ', '%20', $title );4. Change it as,
$title = str_replace( ' ', '%20', $title ); $title = str_replace( '|', '%7C', $title );5. Save the changes and try now.
Hope, this solved your issue!
- This reply was modified 6 years, 9 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video count not working on self-hosted videosSorry, I always get “Server Not Found” error when trying to access your website. Is your server down or restricted in some countries? Please help me to view the issue page URL. I believe this could be a conflict. So, I need to check the page with the issue directly to see what goes wrong.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Social network fetching imgSorry, our current version doesn’t support YOAST “og” tags. I promise our next version can do this. Please be patient.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Add ‘excerpt’ to single videoOur single video page is a Custom Post Type called “aiovg_videos” which simiar to the standard WordPress “POSTS” page dispaly. So, it doesn’t display the excerpt. Instead it can show the complete description of the video. Please make sure you have some content in the Editor field (description) of our video form.
If still you want to show the excerpt and not the description, please follow the instructions below,
1. Open the file “wp-content/plugins/all-in-one-video-gallery/public/templates/single-video.php”
2, find the line,
<div class="aiovg-description"><?php echo wp_kses_post( $content ); ?></div>3. Replace it as,
<div class="aiovg-description"><?php the_excerpt(); ?></div>4. Save the changes and try now.
Hope, this solved your issue!
But, instead of modifying the core plugin file directly, we suggest you to write a override. So, it doesn’t break when you upgrade the plugin. Please check https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/
Forum: Plugins
In reply to: [All-in-One Video Gallery] Thumbnails is missingDoes this mean I must shy away from all lazy loading in the future?
Sorry, you can continue using that plugin or any other lazy loading plugin. But, the images in our plugin was blocked by the lazy loading plugin you use. This is the reason I suggested to disable it. Simply contact the lazy loading plugin author and report him about this issue. May be this could be a matter of a setting in their plugin which I’m not aware of. But, they could suggest a fix for this problem. Then, you can start using both the plugins.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Thumbnails is missingDo you use any lazy loading plugin? Kindly try disabling the plugin.
Hope, this solved your issue!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video Gallery and WordPress MediaGenerally, when you upload a video using our plugin’s video form, the video file is stored in the WordPress media and linked to our Custom Post Type “aiovg_videos”. But, there is not any option to automatically link the video files directly added to the WordPress media or through some other post types (posts).
The only solution is to use our Video form and link the video from WordPress media to our custom post type. Please refer https://plugins360.com/all-in-one-video-gallery/add-your-first-video/
Forum: Plugins
In reply to: [All-in-One Video Gallery] Missing the Featured ImageKindly try adding the following code in your theme’s functions.php file. This should enable the “Featured Image” meta box in the video form.
function aiovg_custom_init() { add_post_type_support( 'aiovg_videos', 'thumbnail' ); } add_action( 'init', 'aiovg_custom_init', 11 );Hope, this helped you!