wpvideogallery
Forum Replies Created
-
Forum: Plugins
In reply to: [All-in-One Video Gallery] Images sizeGo to Video Gallery / Settings from your WordPress Admin Panel. Select the “Display” tab. Click on the “Image Settings” sub-menu to adjust the image sizes.
Also, we would suggest reducing the number of columns by selecting the “Categories Layout” sub-menu.
- This reply was modified 4 years, 11 months ago by wpvideogallery.
- This reply was modified 4 years, 11 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Videos not playing – I can see only the imageProbably a conflict.
1. If you have installed the AUTOPTIMIZE plugin in your website, please follow the same solution suggested here https://www.ads-software.com/support/topic/no-controls-are-displayed-at-all/#post-11619991
2. If you have installed a CACHE plugin, follow the solution suggested here https://www.ads-software.com/support/topic/video-not-playing-10/#post-11924001
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] URL on search resultThe search URL is controlled by the same file,
/wp-content/plugins/all-in-one-video-gallery/public/templates/search-form-template-horizontal.php
Note the search form uses the “GET” method. So, all the field names are appended to the form’s “ACTION URL” when you hit the search button.
If you want to remove empty options from the URL, you should write a JavaScript code that validates the form values and strips the empty options during the form submission.
- This reply was modified 5 years ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Aiovg Video templateKindly refer “Custom Post Type Template” section in https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/
Forum: Plugins
In reply to: [All-in-One Video Gallery] URL on search resultThey are controlled by the search form itself. You can find the code related to this in the following files,
/wp-content/plugins/all-in-one-video-gallery/public/templates/search-form-template-vertical.php /wp-content/plugins/all-in-one-video-gallery/public/templates/search-form-template-horizontal.php
Forum: Plugins
In reply to: [All-in-One Video Gallery] Featured imageHow do you add the YouTube videos? Do you use the “Iframe Embed Code” source type? If yes, kindly add the YouTube videos using the “YouTube” source type option. If you already use the “YouTube” source type, go to Video Gallery => Settings => Player Settings from your WordPress Admin Panel, locate the “Use Native Controls” option, uncheck “YouTube” from the list and save the changes. This should use the image added using the “Image” field of the video form.
Hope, this solved your issue!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Featured imageSorry, I don’t see our plugin on your home page. But, I see a “VIDEO” menu in where the images are showing fine. Does this mean you have found the solution on your own? If not, please share me a screenshot of the issue (or) let me know where exactly I can see the issue.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video Gallery not showing in sidebarSorry, we don’t recommend allowing contributors to submit videos from your site back-end. Kindly use our Front-end User Submission feature.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video Gallery not showing in sidebarVideo gallery link? Is that a menu item or do you speak about our widgets? Sorry, I’ve trouble understanding your question.
I see a “Videos” section in the bottom of your link and it works fine for us here. Similarly, the “Videos” menu in your website also working for us here. Do you mean the particular link itself is not showing or the page that comes after clicking the link is not working? Please share me a screenshot on the issue. So, I can better understand the issue.
If the issue comes after clicking the link, simply edit open the page (with issue) from back-end and check if it uses the shortcode [aiovg_user_videos]. If yes, simply replace it with [aiovg_videos]. Save the changes and try now.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Remove blog from urlKindly try adding the following code in your theme’s functions.php file,
function aiovg_remove_blog_from_url( $args, $post_type ) { if ( 'aiovg_videos' == $post_type ) { $args['rewrite']['with_front'] = false; } return $args; } add_filter( 'register_post_type_args', 'aiovg_remove_blog_from_url', 10, 2 );
Hope, this solved your issue!
- This reply was modified 5 years, 1 month ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Default SubtitlesThanks for your feedback ??
Kindly try adding the following CSS code at the bottom of your theme’s functions.php file,
function aiovg_custom_subtitle_styles() { ?> <style type="text/css"> .mejs__captions-text, .mejs__captions-text * { font-size: 18px; } </style> <?php } add_action( 'aiovg_player_head', 'aiovg_custom_subtitle_styles' );
Hope, this solved your issue!
- This reply was modified 5 years, 1 month ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Default SubtitlesForum: Plugins
In reply to: [All-in-One Video Gallery] Social network fetching imgYes, the last update support YOAST og:image tags. Please check and let me know if you have problem with this.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Social network previous imgSince the “Auto Publish” functionality was handled by “WP2Social” plugin, you should contact that plugin author on this.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Player Controls they are not displayedYour site is in offline mode. So, I’m not able to check your link. Please submit a ticket in our website here https://plugins360.com/support/ with the proper credentials. So, I can check what goes wrong.