Dipika Balajiwala
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Attachment details not updating correctly in Media LibraryHello @emmlan87
1. Please clear your browser cache and try accessing the images again. Additionally, if you’re using a cache plugin on your WordPress site, clear its cache as well to ensure the updates take effect.
2. Theme Compatibility: If you’re using a custom theme or framework for your headless setup, ensure it doesn’t interfere with media library functionality. Switch temporarily to a default WordPress theme (like Twenty Twenty-One) to check if the issue persists.Forum: Fixing WordPress
In reply to: All the styles including the header and footer are not rendered.Hello @monalisa1991
Check Theme and Child Theme
– Ensure that the theme you are using is up to date. If you are using a child theme, make sure it is correctly configured and that the parent theme is also up to date.
– Try switching to a default WordPress theme (like Twenty Twenty-One) to see if the problem persists. This can help determine if the issue is theme-related.Forum: Developing with WordPress
In reply to: Pagination – page 2 not showing postsHello @harshclimate
Please try to update Permalinks.
Go to Settings > Permalinks in your WordPress dashboard.
Ensure that a permalink structure is selected (e.g., Post name or a custom structure) . Click “Save Changes” to regenerate rewrite rules, even if you don’t make any changes.Forum: Fixing WordPress
In reply to: Mobile menu breakpointHello @lunacer
https://prnt.sc/D7TKp0fEcNco
https://prnt.sc/IyZlmdlLW_cq
Because of these 2 CSS your menu is not showing properly in your below 959px screens, please add the below CSS and share your feedback.?
@media?(max-width: 959px)?{
.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open)?{
display: none;
}
}
@media?(max-width: 959px)?{
.wp-block-navigation__responsive-container-open:not(.always-shown)?{
display: block;
}
}Forum: Developing with WordPress
In reply to: Gutenberg without Block EditorHello @e-lab innovations
To remove the block editor and block settings from the Gutenberg editor for your custom post type “certificates” while retaining the Gutenberg editor for state management and utilizing@wordpress/components
, add the following code to your theme’sfunctions.php
file or a custom plugin:add_filter( 'use_block_editor_for_post_type', 'disable_block_editor_for_certificates', 10, 2 ); function disable_block_editor_for_certificates( $can_edit, $post_type ) { if ( $post_type === 'certificates' ) { return false; } return $can_edit; }
This code snippet disables the block editor for the “certificates” post type, allowing you to continue using the Gutenberg editor for state management and
@wordpress/components
for development without the block editor interface. Adjust the post type slug (certificates
) as needed.Forum: Everything else WordPress
In reply to: instagram carouselHello @sibichan
If you’re using Elementor Pro, you can utilize the “Media Carousel” widget provided by Elementor. This widget allows you to create a carousel of media items, including videos. You can add Instagram videos to the carousel, and it provides an option to open videos in a lightbox when clicked. Utilizing Elementor Pro’s Media Carousel widget gives you the flexibility to showcase videos in a carousel format directly within your Elementor-built pages, providing a seamless user experience.Forum: Developing with WordPress
In reply to: Remove Link to post only for some posts IDsHello @charlie67p
To disable the “Link to post” option on the featured image and post title for specific posts while using the Query Loop Block, you can utilize therender_block
filter hook. This hook allows you to modify the attributes of the Query Loop Block dynamically.