Alvind
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Premium features don’t workHi @greatkingevidial ,
Could you please open a new support topic for your issue? Thanks!
Hi there,
Could you open a topic on our Premium Support forum or send an email to support [at] generatepress.com? WordPress.org doesn’t allow us to provide support or discuss premium plugins in this forum.
We’ll be able to assist you there.
It looks like this may be a caching issue. Could you try temporarily deactivating the LiteSpeed Cache plugin and then check the layout again to see if the problem persists?
Hi @ram8079,
Could you share the URL of the page that has the issue so we can take a look?
Forum: Themes and Templates
In reply to: [GeneratePress] Проблемы с навигациейHi @naydanova ,
Could you confirm whether this snippet below has been completely removed?
add_filter( 'generate_show_post_navigation', '__return_false' );Hi @erkanakdag34,
Could you please open a Priority ticket from your GeneratePress.com account for this issue?
WordPress.org forum rules don’t allow us to provide support for paid plugins here, so once you open a Priority ticket, we’ll be able to assist you directly.
Thanks!
Forum: Themes and Templates
In reply to: [GeneratePress] Minor display issue with Image blockHi Guido,
If there’s a fix here, it would simply be to add the same CSS. I believe many other themes include this by default as a safeguard to silently handle overflow, whereas GeneratePress does not, so any overflow becomes visible as a scrollbar.
Our recommended approach for achieving a full-width layout is to use the Content Container Full Width option, which avoids overflow issues altogether.
I believe what you mean by the GeneratePress plugin is actually GenerateBlocks, is that correct? GeneratePress is a theme, and it’s not possible to have two themes active at the same time.
If you mean GenerateBlocks, then yes—it provides breakpoint styling options, so you can set different layout styles for desktop, tablet, and mobile.
Hi @joycegrace ,
Could you try this snippet:
add_action( 'after_setup_theme', function() {
// Remove customizer settings
remove_action( 'customize_register', 'generate_customize_register', 20 );
}, 9 );
// Remove GeneratePress admin menu
add_action( 'admin_menu', function() {
global $submenu;
if ( isset( $submenu['themes.php'] ) ) {
foreach ( $submenu['themes.php'] as $key => $item ) {
if ( isset( $item[2] ) && 'generate-options' === $item[2] ) {
unset( $submenu['themes.php'][ $key ] );
break;
}
}
}
}, 999 );Forum: Themes and Templates
In reply to: [GeneratePress] Gap between end of article and commentsHi @davejf,
Have you resolved this? I checked your site and it seems the issue is no longer present:

Hi there,
Those settings are only supported in Block Themes. Since GeneratePress is a classic theme, that’s why the settings aren’t available.
However, you can enable the settings by adding this snippet:
add_action('after_setup_theme', function () {
add_theme_support('appearance-tools');
add_theme_support('custom-spacing');
});Adding PHP: https://docs.generatepress.com/article/adding-php/
Hi @advocatus ,
We’re actively working on a permanent fix, but there’s no ETA at the moment. For now, the snippet is the only available workaround. If you run into any other issues that may be related to the widget, please let us know.
Forum: Plugins
In reply to: [GenerateBlocks] Unique ID not regenerating when duplicating GenerateBlocksHi there,
This is not the expected behavior. Please open a new thread in the Premium Support forum, as we are unable to provide assistance for paid plugins on the WordPress.org support forum. We will monitor your post there.
Thanks!
Forum: Themes and Templates
In reply to: [GeneratePress] Border radius imageGlad to hear that, Bas!