Alvind
Forum Replies Created
-
Hi there,
Since you’re using GP Premium and GenerateBlocks Pro, please open a new topic on the Premium Support forum. WordPress.org doesn’t allow us to provide support for premium products here.
Thanks for understanding!
Forum: Themes and Templates
In reply to: [GeneratePress] Error trying to update WidgetsHi there,
We’re currently investigating this issue. In the meantime, you can use the following snippet to temporarily disable the feature from the Widgets screen:
add_action( 'admin_footer', function() {
$screen = get_current_screen();
if ( 'widgets' === $screen->base ) {
?>
<script>
wp.domReady( function() {
var unregisterPlugin = wp.plugins.unregisterPlugin;
unregisterPlugin( 'generatepress-content-width' );
} );
</script>
<?php
}
} );You’re welcome!
Hi there,
With the CSS approach, the element is only hidden visually and the HTML still exists in the page. The PHP approach actually removes the HTML from the output entirely.
You’re welcome!
Hi there,
This article might help:
May I know exactly how you added the embed code? I tested it on my site, and the aspect ratio appears correct for the Shorts dimensions.
Hi there,
Try using the YouTube embed code instead of just pasting the video URL. You can check out this article to get the actual embed code:
https://support.google.com/youtube/answer/171780?sjid=5522275097948933098-NC
Thank you for sharing your solution!
Hi there,
That was added by WordPress itself starting from version 6.3. You can refer to this article:
Image performance enhancements in WordPress 6.3
Forum: Themes and Templates
In reply to: [GeneratePress] Blocks and TabHi there,
If you’re referring to the Tabs block from GenerateBlocks Pro, please open a new topic in the Premium Support forum. We’re not allowed to provide support or discuss paid plugins in this WordPress forum, as it’s against the rules. Thanks for your understanding!
Forum: Themes and Templates
In reply to: [GeneratePress] cant upload imagesThat’s great to hear, Gary!
Forum: Themes and Templates
In reply to: [GeneratePress] cant upload imagesHi there,
The theme should not interfere with the image upload process, as that is a WordPress functionality.
If you temporarily switch to the default WordPress theme, does the issue resolve?
Hi there,
The Site Library is a GP Premium feature. WordPress does not permit us to provide support for paid plugins in this forum. Could you please open a topic in the Premium Support Forum instead?
Thank you for your understanding.
Forum: Themes and Templates
In reply to: [GeneratePress] Render image size depending on screen sizeHi there,
The theme doesn’t control how responsive images are served, that’s handled by WordPress itself using the
srcsetandsizesattributes. The theme’s role is to output the appropriate image size (like medium, large, full, etc.), and WordPress fills in the rest based on the available image sizes it generated during upload.