Alvind
Forum Replies Created
-
Hi there,
Try this one:
add_action( 'wp', function() {
remove_action( 'generate_before_content', 'generate_featured_page_header_inside_single', 10 );
add_action( 'generate_before_main_content', 'generate_featured_page_header_inside_single' );
}, 55 );If it still doesn’t work, another alternative is to use CSS, similar to what you’ve already implemented.
Forum: Plugins
In reply to: [GenerateBlocks] Should I use blocks?Hi there,
Looking at the current direction of WordPress, with all the Full Site Editing (FSE) features and so on, it confirms that blocks are definitely the future of WordPress. People who still use the Classic Editor should consider transitioning to the Block Editor, as the Classic Editor will not be supported in the near future.
The good news is that your existing pages created with the Classic Editor will remain unaffected. You will only need to use the Block Editor for creating new content.
No problem!
Hi there,
It was a core block; you can tell by the icon color. GenerateBlocks blocks have a soft blue icon color. You can use both, but the core ones are very limited in terms of the features they offer.
Forum: Themes and Templates
In reply to: [GeneratePress] Custom BreakpointsHi there,
Did you wrap the filter with the
wphook like this?add_action( 'wp', function() {
add_filter( 'generate_media_queries', function( $args ) {
$args['desktop'] = '(min-width:1081px)';
$args['tablet_only'] = '(max-width:1080)';
$args['tablet'] = '(min-width: 811px) and (max-width: 1080px)';
$args['mobile'] = '(max-width:810px)';
return $args;
} );
}, 20 );Forum: Themes and Templates
In reply to: [GeneratePress] Second page of product catalogue not workingHave you tried resaving the permalinks?
Or do you have a custom query applied to the archive, similar to what’s discussed in the topic below?
Forum: Themes and Templates
In reply to: [GeneratePress] Second page of product catalogue not workingHi there,
Under Settings > Reading, check the number of posts set to display per page. Try matching this number with the total number of products displayed on your product archive page, which currently seems to be set to 12.
Forum: Themes and Templates
In reply to: [GeneratePress] Loop – carousel for postHi there,
There are no plans for that feature at the moment, but you can suggest it here:
You’re welcome!
For the post title, it uses H1 so you’ll need to go to Content > Heading 1 (H1) and set the letter spacing there.
Using the custom selector should work, so it’s unclear why it isn’t in your case.
If you’re using the block editor, the simplest method is to add the letter spacing directly to the Paragraph block.
You can upload those screenshots to PostImages and share the link.
From what I see, the layout is messed up due to the ad placement on your site.
Hi there,
- Could you please provide a screenshot highlighting the margin issue you’re referring to? It’s difficult to spot it due to the numerous ads displayed on the page. This will help me better understand and address the problem.
- You should be able to adjust the font size under Customize > Typography > Content section.
In that case, choose ‘Custom’ as the Target Element and add this CSS selector:
.content-area pIt will target the text with
ptag within the content area.Hi there,
Are you referring to the content area, such as the section where your blog post content appears?
If so, when adding new typography, choose the element under”Content” as the Target Element.