Title: Plugins360 Labs's Replies - page 4 | WordPress.org

---

# Plugins360 Labs

  [  ](https://wordpress.org/support/users/plugins360/)

 *   [Profile](https://wordpress.org/support/users/plugins360/)
 *   [Topics Started](https://wordpress.org/support/users/plugins360/topics/)
 *   [Replies Created](https://wordpress.org/support/users/plugins360/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/plugins360/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/plugins360/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/plugins360/engagements/)
 *   [Favorites](https://wordpress.org/support/users/plugins360/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 46 through 60 (of 70 total)

[←](https://wordpress.org/support/users/plugins360/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/plugins360/replies/?output_format=md) [2](https://wordpress.org/support/users/plugins360/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/plugins360/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/plugins360/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/plugins360/replies/page/5/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Disable thumb on video player](https://wordpress.org/support/topic/disable-thumb-on-video-player/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/disable-thumb-on-video-player/#post-11099389)
 * Hi, I’m able recreate “click two times” issue and this occurs when “Autoplay”
   is enabled and happens because of the recent Autoplay policy changes by Chrome&
   Safari [https://developers.google.com/web/updates/2017/09/autoplay-policy-changes](https://developers.google.com/web/updates/2017/09/autoplay-policy-changes)
 * Our next version will have this solved. Until then, I would suggest you to disable
   the “Autoplay” feature.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Disable thumb on video player](https://wordpress.org/support/topic/disable-thumb-on-video-player/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/disable-thumb-on-video-player/#post-11099308)
 * Our plugin uses MediaElement.js (WordPress core player) and this player library
   itself adds an layer over the player and protects the native Vimeo controls. 
   So, disabling the custom player controls will have no use and still you cannot
   access the native Vimeo controls without writing a CSS hack. If you’re OK with
   Vimeo player controls, then I would recommend using our “Iframe Embed Code” option
   and add the Vimeo embed code.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Disable thumb on video player](https://wordpress.org/support/topic/disable-thumb-on-video-player/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/disable-thumb-on-video-player/#post-11098504)
 * **1. I use this plugin with vimeo, so I dont need the thumb in the player that
   the plugin insert, because vimeo adds his own, so, is there any way to disable
   the thumb image of the plugin ON PLAYER (not on the video thumb category)?**
 * Kindly use the following PHP code in your theme’s functions.php file. This should
   remove custom poster images on Vimeo videos.
 *     ```
       function aiovg_custom_video_attributes( $attributes ) {
       	if ( ! empty( $attributes['poster'] ) ) {
       		if ( strpos( $attributes['poster'], 'vimeocdn.com' ) !== false ) {
       			unset( $attributes['poster'] );
       		}
       	}
   
       	return $attributes;
       }
       add_filter( 'aiovg_video_attributes', 'aiovg_custom_video_attributes' );
       ```
   
 * **2. I see that i need to click two times to run the video on my website (I used
   the vimeo option). It happens in all the videos, on click to “focus the video”
   and another click to play the video from the player controls of the plugins. 
   It’s possible to fix this? (If i used the embed/iframe option instead the vimeo
   option, i only need to click one time, but im not a fan of using iframes.**
 * Strange. I need only single click to play the videos in my local setup here. 
   Please get me your site link in where I can check this issue directly.
    -  This reply was modified 7 years, 6 months ago by [Plugins360 Labs](https://wordpress.org/support/users/plugins360/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Title font size](https://wordpress.org/support/topic/title-font-size-14/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/title-font-size-14/#post-11077022)
 * You can change the font size using CSS. We suggest adding your custom CSS code
   in the “Advanced CSS” option of your theme’s customizer panel.
 * Example:
 *     ```
       .aiovg .aiovg-title { 
       font-size: 18px; 
       font-weight: bold;
       line-height: 1.5;  
       }
       ```
   
    -  This reply was modified 7 years, 7 months ago by [Plugins360 Labs](https://wordpress.org/support/users/plugins360/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] sub categories](https://wordpress.org/support/topic/sub-categories-29/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/sub-categories-29/#post-11046714)
 * Yes, you can create unlimited levels of sub categories and add videos to them.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] change relative date to absolute date](https://wordpress.org/support/topic/change-relative-date-to-absolute-date/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/change-relative-date-to-absolute-date/#post-11046709)
 * Kindly try using the following code,
 *     ```
       if ( $attributes['show_date'] ) {
       $meta[] = get_the_date( 'd-m-Y' );
       }
       ```
   
 * Hope, this helped you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Disable user channel video and more videos when click pause](https://wordpress.org/support/topic/disable-user-channel-video-and-more-videos-when-click-pause/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/disable-user-channel-video-and-more-videos-when-click-pause/#post-11031610)
 * Sorry, not possible. This is a recent change from YouTube API [https://developers.google.com/youtube/player_parameters#release_notes_08_23_2018](https://developers.google.com/youtube/player_parameters#release_notes_08_23_2018)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Related Videos](https://wordpress.org/support/topic/related-videos-7/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/related-videos-7/#post-11024013)
 * This reply suggests an alternate solution to solve this issue. Kindly check below,
 * “All-in-One Video Gallery” plugin provides several options to add a video gallery
   in your WordPress Pages/Posts.
 * 1. Shortcode ( [aiovg_videos], [aiovg_category], etc. )
    2. Widget 3. Gutenberg
   Block
 * By default, all these 3 methods take the settings from the “Video Gallery Pages”
   section of our “Display” Settings page. But, each of these settings can be overridden
   per gallery.
 * For example, [aiovg_videos] shortcode displays all videos with the columns count
   configured under our main settings page. But, you can override the columns count
   like [aiovg_videos columns=”5″]. Please check [https://plugins360.com/all-in-one-video-gallery/displaying-video-gallery/](https://plugins360.com/all-in-one-video-gallery/displaying-video-gallery/)
   for more details.
 * Coming to the point, the related videos section in our single video page also
   uses the same settings. But, it doesn’t get affected by the individual gallery
   settings and it always takes values from our main settings page.
 * So, the trick is to configure the main settings page to match your related videos
   section and configure the other gallery pages using their own settings as you
   need.
 * Hope, this solves your issue. Please feel free to ask me if you have got any 
   questions.
 * **NOTE:**
 * Sorry, our next version is not going to have separate settings section for “Related
   Videos” as we are getting mixed feedback from our users and team. The main reason
   is we feel it’s unnecessary to duplicate the same settings from “Video Gallery
   Pages” to “Related Videos”. So, we had put a temporary hold on this issue and
   will update you when we made a final decision. We are open to your suggestions.
   So, please reply us your thoughts.
    -  This reply was modified 7 years, 7 months ago by [Plugins360 Labs](https://wordpress.org/support/users/plugins360/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Video Detail Page Settings](https://wordpress.org/support/topic/video-detail-page-settings/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/video-detail-page-settings/#post-11023802)
 * Please check “Custom Post Type Template” section in [https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/](https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Category links not working](https://wordpress.org/support/topic/category-links-not-working-22/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/category-links-not-working-22/#post-11016281)
 * I guess you’re having the same issue discussed here [https://wordpress.org/support/topic/video-gallery-shortcode-not-working/](https://wordpress.org/support/topic/video-gallery-shortcode-not-working/).
   Please check.
 * If not, kindly get me your site link to check the issue and guide you accordingly.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Video Enhanced] Resize Player Video](https://wordpress.org/support/topic/resize-player-video/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/resize-player-video/#post-10998320)
 * Simply use the “width” and “height” attributes in the shortcode.
 * Example: [video src="sample.mp4" width="750" height="450"]
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Video Gallery shortcode not working](https://wordpress.org/support/topic/video-gallery-shortcode-not-working/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/video-gallery-shortcode-not-working/#post-10878075)
 * Kindly remove the [aiovg_categories id=”0″] shortcode from your Video Gallery(
   Single Category) page. Instead, create separate page for the categories display
   with the shortcode [aiovg_categories id=”0″] and add this page as a menu item
   to your site front-end.
 * Also, remove the [aiovg_category] shortcode page from your **menu** (Appearance
   => Menus) configuration. So, the users don’t see this page.
    -  This reply was modified 7 years, 9 months ago by [Plugins360 Labs](https://wordpress.org/support/users/plugins360/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Video Gallery shortcode not working](https://wordpress.org/support/topic/video-gallery-shortcode-not-working/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/video-gallery-shortcode-not-working/#post-10875994)
 * Probably a mis-configuration issue.
 * Kindly get me your site link where we can check this issue directly.
 * During the activating, our plugin will add some pages dynamically (WordPress 
   Admin Panel => Pages) to your website and configure them accordingly under our
   plugin’s “Advanced” settings page. These pages are required for the logical workflow
   of our plugin. I suspect you must have modified our plugin settings related to
   these pages or edited the pages itself with different shortcode. Kindly try reverting
   your changes. If you need to display all categories, simply create a new page(
   don’t edit the pages added by our plugin) with shortcode [aiovg_categories] and
   add it to your site menu. This is enough.
 * If you don’t remember the changes you’ve made, go to your “WordPress Admin Panel
   => Video Gallery => Settings => Advanced” page, find the “Pages” settings section
   and read the notes next to each setting. Now, open these pages under “WordPress
   Admin Panel => Pages” menu and make sure they have the same shortcode as mentioned
   in the note.
    -  This reply was modified 7 years, 9 months ago by [Plugins360 Labs](https://wordpress.org/support/users/plugins360/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Translation](https://wordpress.org/support/topic/translation-952/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/translation-952/#post-10836606)
 * Hello Aquorange,
 * I’m very grateful for your contribution.
 * Sorry, we have no person working on German translations at the moment. It would
   be helpful if you could translate all the plugin text here [https://translate.wordpress.org/locale/de/formal/wp-plugins/all-in-one-video-gallery](https://translate.wordpress.org/locale/de/formal/wp-plugins/all-in-one-video-gallery)
 * At least a maximum possible. Again, Thanks for your contribution 🙂
 * Regards,
    San Rosh
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-in-One Video Gallery – Video Player & Galleries for YouTube, Vimeo & Self-Hosted Videos] Related Videos](https://wordpress.org/support/topic/related-videos-7/)
 *  Plugin Author [Plugins360 Labs](https://wordpress.org/support/users/plugins360/)
 * (@plugins360)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/related-videos-7/#post-10836597)
 * [@apaterson](https://wordpress.org/support/users/apaterson/),
 * Our next version(November) will have an option for this. Kindly be patient.

Viewing 15 replies - 46 through 60 (of 70 total)

[←](https://wordpress.org/support/users/plugins360/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/plugins360/replies/?output_format=md) [2](https://wordpress.org/support/users/plugins360/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/plugins360/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/plugins360/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/plugins360/replies/page/5/?output_format=md)