wpvideogallery
Forum Replies Created
-
Forum: Plugins
In reply to: [All-in-One Video Gallery] It possiblt to sort the categories by 2 options?Sorry, you need to custom develop the feature.
The files you should edit are,
1. /wp-content/plugins/all-in-one-video-gallery/public/templates/search-form-template-horizontal.php 2. /wp-content/plugins/all-in-one-video-gallery/public/templates/search-form-template-vertical.php
But, instead of editing the core plugin files directly, we would recommend writing an override. Kindly check https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/ to write an override.
Note: Our categories belong to the custom taxonomy “aiovg_categories”.
- This reply was modified 5 years, 2 months ago by wpvideogallery.
- This reply was modified 5 years, 2 months ago by wpvideogallery.
- This reply was modified 5 years, 2 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Most recent cideoSorry, there is not any direct method to achieve this.
As an alternate solution, just edit those special videos from back-end and mark them as featured. Then, use the shortcode below in your POST/PAGE where you want to show these videos as a gallery,
[aiovg_videos featured="1"]
This will just show the videos marked as featured.
Hope, this helped you!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Problem with Add Image buttonI had double-checked after reading your report and I confirm this is not a common issue and works fine for us with the standard WordPress installation. I believe this is a conflict. Kindly try disabling the other third-party plugins you use one by one to find which causes this issue.
If still the issue remains, kindly submit a ticket on our website here https://plugins360.com/support/
Forum: Plugins
In reply to: [All-in-One Video Gallery] Vídeo not playingProbably a conflict with the cache plugin (WP Fastest Cache) you use.
1. Go to your WordPress Admin Panel => Pages menu.
2. Find the page with the title “Player Embed”.
3. Edit the page, locate the setting to disable the cache on this page and disable it.Hope, this solved your issue!
If still, this doesn’t work, kindly submit a ticket on our website here https://plugins360.com/support/
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video category does not appear in menu settingsSimply, create a new page with the shortcode below and add it as a menu item.
Shortcode: [aiovg_videos category=”YOUR_CATEGORY_ID”]
Note, you must replace “YOUR_CATEGORY_ID” with your video category ID.
Please refer https://plugins360.com/all-in-one-video-gallery/displaying-video-gallery-using-shortcode/ for more shortcode attributes.
If your website uses Gutenberg, kindly refer https://plugins360.com/all-in-one-video-gallery/displaying-video-gallery-using-gutenberg/
- This reply was modified 5 years, 2 months ago by wpvideogallery.
- This reply was modified 5 years, 2 months ago by wpvideogallery.
- This reply was modified 5 years, 2 months ago by wpvideogallery.
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 5 years, 3 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 5 years, 3 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.php
You 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 5 years, 3 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 5 years, 3 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/