wpvideogallery
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatic YouTube Gallery] Add MP4 videoVery sorry. The “Automatic YouTube Gallery” plugin only supports the YouTube videos.
But, we have another plugin that supports YouTube + MP4 videos. Please check https://wordpress.org/plugins/all-in-one-video-gallery/
Also, kindly refer to the following links to get started with this plugin:
- https://plugins360.com/all-in-one-video-gallery/getting-started/
- https://plugins360.com/all-in-one-video-gallery/auto-import-youtube-videos/
Hope this helped you!
Please feel free to contact us for further questions.
- This reply was modified 1 year, 2 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Error in Server log causing crashThank you for reaching out, and I’m really sorry for the trouble you’re facing. Based on the error messages, it looks like our plugin settings haven’t been properly inserted into your website’s database. This sometimes happens when the plugin is network-activated on a WordPress multisite setup. Unfortunately, our plugin doesn’t support network activation at the moment.
Are you using a multisite? Would you mind trying to activate the plugin individually on each site within your multisite network instead? That should help resolve the issue.
Another possible fix:
- Please go to “Video Gallery” → “Settings” in your WordPress Admin Dashboard.
- Open each settings tab and click “Save Changes” to ensure the missing settings are added.
I hope this helps! If the issue persists, please don’t hesitate to submit a support ticket here: https://plugins360.com/all-in-one-video-gallery/support/ with a link to this forum post. That way, we can take a closer look and assist you further in a private environment.
Thanks for your patience, and I truly appreciate your time! 😊
Kindly try adding the following CSS code under “Appearance => Customize => Additional CSS” menu from your WordPress Admin Dashboard,
@media only screen and (max-width: 480px) {
.ayg-col {
width: 50% !important;
}
}Hope this solved your issue!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Quotation markThe last parenthesis was opened in
add_filter( 'widget_title'.Also, I confirm that all the parentheses are opened and closed properly. Did you try adding the code to your theme’s
functions.phpfile? Does the issue still persist? If yes, kindly submit a ticket here: https://plugins360.com/all-in-one-video-gallery/support/Forum: Plugins
In reply to: [All-in-One Video Gallery] Quotation markThank you for your response. However, I’m not entirely clear on your reply — could you please elaborate a bit further?
Forum: Plugins
In reply to: [All-in-One Video Gallery] Quotation markThanks for your question and the detailed explanation. I tested this on my own setup by adding the following title to the AIOVG – Video Gallery Widget:
colecția mea de „filmulețe”On my site, this worked perfectly — the front-end correctly displayed:
colecția mea de „filmulețe”Why It Works for Me (But Not for You)
This difference happens because WordPress handles widget titles differently depending on your theme and active plugins.
In some environments (like mine), WordPress automatically decodes HTML entities in widget titles when rendering them on the front-end. This allows entities like
„and”to work correctly.However, in many WordPress setups — especially if your theme or plugins apply stricter sanitization — widget titles are treated as plain text. In those cases, WordPress does not decode the entities, which is why they appear literally (
„) instead of being converted into the correct quotation marks („).Two Ways to Fix This
#1. Recommended: Paste the Actual Characters Directly
The simplest and most reliable approach is to paste the correct characters directly into the title field, like this:
colecția mea de „filmulețe”This works across all environments, regardless of how widget titles are handled.
#2. Optional (for Developers): Add a Filter to Allow Entities
If you prefer to use HTML entities, you can force WordPress to decode them by adding this code to your theme’s
functions.phpfile:add_filter( 'widget_title', function( $title ) {
return html_entity_decode( $title, ENT_QUOTES | ENT_HTML5, 'UTF-8' );
}, 20 );This code ensures that widget titles always process entities like
„into the correct characters on the front-end.Hope this helped you!
If the filter doesn’t work, kindly submit a ticket here https://plugins360.com/all-in-one-video-gallery/support/
Forum: Plugins
In reply to: [All-in-One Video Gallery] Hide Restricted VideosSince we haven’t received a response from you in a while, we’re temporarily closing this topic. Feel free to reopen it whenever you need assistance in the future.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Hide Restricted VideosCurrently, our plugin does not support hiding thumbnails from the gallery. Instead, it displays a “Restricted” label on video thumbnails. However, we plan to introduce an option for this in a future update. We appreciate your patience.
In your case, do you restrict all videos based on a specific user role globally, without overriding restrictions for individual videos? If so, we can provide a code patch to address your needs. Please share an example page URL from your website that should be hidden from non-members, and we’ll share the relevant code patch with you.
Does the slider plugin you are using support plugin shortcodes? Unfortunately, it seems that it doesn’t. I recommend reaching out to the author of your slider plugin to inquire whether they support WordPress shortcodes or if there’s a setting that can enable this functionality.
The shortcode you have added is wrong. Kindly try adding
[aiovg_last_video_title]Hope this solved your issue!
Unfortunately, there isn’t a built-in shortcode for this. However, no worries! We’ve created a custom shortcode based on your request. Simply add the following PHP code to the bottom of your theme’s
functions.phpfile and use the[aiovg_last_video_title]shortcode in your Smart Slider 3 slide.function aiovg_last_video_title() {
$args = array(
'post_type' => 'aiovg_videos',
'post_status' => 'publish',
'posts_per_page' => 1,
'orderby' => 'date',
'order' => 'DESC'
);
$aiovg_query = new WP_Query( $args );
if ( $aiovg_query->have_posts() ) {
while ( $aiovg_query->have_posts() ) {
$aiovg_query->the_post();
return sprintf(
'<a href="%s">%s</a>',
esc_url( get_permalink() ),
esc_html( get_the_title() )
);
}
wp_reset_postdata();
}
return '';
}
add_shortcode( 'aiovg_last_video_title', 'aiovg_last_video_title' );Hope this helped you!
- This reply was modified 1 year, 3 months ago by wpvideogallery.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Poster Black bars (object-fit:contain)Thank you for reaching out to us! We truly appreciate your feedback. I’m happy to share that our next version will include the fix you suggested. 🙂
Forum: Plugins
In reply to: [All-in-One Video Gallery] How to add a link on the video detail page?I’m delighted that you were able to resolve the issue on your own. Thank you for sharing the fix you applied—it will be invaluable in helping us assist other users facing similar challenges in the future. Thank you!
Forum: Plugins
In reply to: [All-in-One Video Gallery] How to add a link on the video detail page?Alternatively, you can add the custom code we provided using a third-party plugin called WPCode. For step-by-step instructions, please refer to this tutorial: How to Easily Add Custom Code in WordPress Without Breaking Your Site.
Hope this helps!
Forum: Plugins
In reply to: [All-in-One Video Gallery] How to add a link on the video detail page?Unfortunately, our current version doesn’t support the back button feature on single video pages. However, this functionality can still be implemented with some custom code.
Kindly try adding the following code to the bottom of your theme’s functions.php file.
function aiovg_before_post_content( $content ) {
if ( is_singular( 'aiovg_videos' ) ) {
if ( wp_get_referer() ) {
$button = "<p><button id='my-back-button' class='btn button my-back-button' onclick='javascript:history.back()'>" . __( '« Back' ) . "</button></p>";
return $button . $content;
}
}
return $content;
}
add_filter( 'the_content', 'aiovg_before_post_content', 99 );Please note that the back button only functions when accessing the single video page via a click on a video from the thumbnail gallery
Hope this solved your issue!