plugins360
Forum Replies Created
-
Forum: Plugins
In reply to: [All-in-One Video Gallery] Like buttonYes, our TODO list is long and we already have “Like button”, “5 star ratings” in our plan. Please be patient.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video Gallery not showing in sidebarSince we introduced the front-end submission feature for users, we restricted the back-end access only for admins. But, our next version will give permission for editors to the back-end.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video Gallery not showing in sidebarI guess you’re speaking about the Video Gallery link in the /wp-admin/ page. If yes, the back-end plugin’s menu is restricted only for administrators. Kindly follow the steps below to provide access for the editor user role.
1. Open /wp-content/plugins/all-in-one-video-gallery/admin/videos.php file
2. Fine the line,
'show_ui' => current_user_can( 'administrator' ) ? true : false,
3. Replace it as,
'show_ui' => ( current_user_can( 'administrator' ) || current_user_can( 'editor' ) ) ? true : false,
4. Save the changes and try now.
Note, we have a separate front-end submission form to allow your users to submit their videos from the site front-end. So, if you want to allow your site visitors to upload their videos, we request you to use this feature https://plugins360.com/all-in-one-video-gallery/front-end-user-submission/
Hope, this solved your issue!
- This reply was modified 5 years, 6 months ago by plugins360.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Videos not playing in ChromeYou seem to be using our OLD version. Kindly upgrade to our latest version in which the issue is already solved.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Adding only a specific subcategory to a pageYes, that’s the solution. Happy that you found it.
There is not any setting to change the word “Sub Categories”. But, it’s translatable. Please follow https://plugins360.com/all-in-one-video-gallery/translate-to-your-language/ and translate the word “Sub Categories” as you like.
But, this affects all the category pages.
Forum: Plugins
In reply to: [All-in-One Video Gallery] LightboxYes, kindly look at our following demos,
https://demo.plugins360.com/popup/
https://demo.plugins360.com/slider/They are premium features. Please see the “Pricing” section here https://plugins360.com/
- This reply was modified 5 years, 8 months ago by plugins360.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video not playing in detail pageSince, we didn’t hear from you for a long time, we are closing this topic for now. But, you can re-open this later when you need.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Edit CSSI guess you should be adding your custom CSS code under your theme customizer. The player is an Iframe. So, none of your custom CSS code added here will work.
Solution:
You should use the “aiovg_player_head” hook to add your custom CSS code inside the player Iframe.
Example:
Please try using the following code in your theme’s functions.php file.
function aiovg_custom_player_css() { ?> <style type="text/css"> /** ADD YOUR CUSTOM CSS STYLES HERE **/ </style> <?php } add_action( 'aiovg_player_head', 'aiovg_custom_player_css' );
Hope, this solved your issue!
- This reply was modified 5 years, 8 months ago by plugins360.
- This reply was modified 5 years, 8 months ago by plugins360.
Forum: Plugins
In reply to: [All-in-One Video Gallery] SubtitlesThe solution suggested below may look silly. But, it works.
Simply open those video forms from back-end. Locate the “Subtitles” metabox and fill in the “Label” and “Srclang” fields with the values “English” and “en” respectively.
Hope, this solved your issue!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video not playing in detail pageReally strange. Please, try changing your theme. This is not a common issue. I did checked using a fresh WordPress installation now and YouTube videos are working fine for me here. So, it’s really hard to get you a fix without checking the issue page directly. It would better if you could add your site files in a development server and send us the link.
Alternatively, go to our plugin’s general settings page and check “YouTube” in the “Use Native Controls” option. Let me know if this worked.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Next and Previous navigation supportKindly look at the bottom of this DEMO page of us.
You can see there are navigation links to next and previous videos. Is this OK for you?
Those links are added by our theme itself using the WordPress core functions previous_post_link and next_post_link. A straightforward example can be found at this link https://wordpress.stackexchange.com/questions/76032/previous-post-link-and-next-post-link-with-a-custom-post-type
Our single video page is a custom post type “aiovg_videos”. So, the trick is to write a template override for our post type and add these navigation functions inside the loop. Kindly refer “Custom Post Type Template” section in this page https://plugins360.com/all-in-one-video-gallery/child-themes-and-templates/ to write an override for our post type.
- This reply was modified 5 years, 8 months ago by plugins360.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video not playing in detail pageActually, I would like to inspect the HTML source of this page URL https://localhost:65457/player-embed/id/4547 to find the exact reason for this issue.
I believe this is a conflict. So, kindly try disabling your plugins one by one to find which causes this issue. If you’re able to identify the conflicting plugin, then please check if they have any setting that can cause such conflicts and disable it.
If possible, kindly get me the HTML output generated in your browser for this URL https://localhost:65457/player-embed/id/4547. So, I can get a clue on this issue.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video not playing in detail pageIf you have problem sharing your site link publicly, you can share it to us privately here.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Video not playing in detail pageKindly share me your site link in where we can check this issue directly.