Muhibul Haque
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] ?Like“-ButtonI searched the term on your website, but didn’t find anything similar. For translating any string for Jetpack to German you can visit this: https://translate.www.ads-software.com/locale/de/default/wp-plugins/jetpack/
You can see the images with .avif extension is not loading properly. May be this is happening for image speed optimisation by Jetpack, so can you check if this option is enabled and try disabling the “Speed up image load times”. You can find this under “Performance” tab of your Jetpack settings.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] identity crisisIf you created the site with staging site then you need to remove that connection first and then reconnect with your original site. Your site was previously set up using a staging domain (e.g.,
wpcomstaging .com
) and the Jetpack connection wasn’t updated after migrating to the live site.From the Jetpack>Dashboard> Manage Site Connection try to disconnect it first and clear the settings of that staging site.
From the article I can see you are using the below function.
function jeherve_custom_thumb_size( $get_image_options ) {
$get_image_options['avatar_size'] = 600;
return $get_image_options;
}
add_filter( 'jetpack_top_posts_widget_image_options', 'jeherve_custom_thumb_size' );This is trying to match the image size of 600px, so if any thumbnail does not have the 600px version it’s not loading. Try Force Regenerate Thumbnails again and make sure all images has 600px version, hope the problem will be solved.
Forum: Fixing WordPress
In reply to: User Confirmation Email Not Being Sent@threadi If I already used SMTP plugins, do I need to set DKIM and SPF records as well? I am asking because I recently noticed some emails are not going to inbox even I set up SMTP. I would love to hear your insight about this. thanks
Forum: Fixing WordPress
In reply to: Encountered with Error Establishing a Database ConnectionAre you using any plugins for the download? Have you tried manually downloading WordPress directly from the hosting server? You can export the databases using phpMyAdmin.
Forum: Fixing WordPress
In reply to: Fatal Error on pageOnce I had similar issue and I fixed it by increasing memory limit. You can try adding the line on wp-config.php
define( 'WP_MEMORY_LIMIT', '512M' );
Or if you are using local wp then open the “Site Folder>conf>php>php.ini.hbs” file and find memory_limit = 256M and you can increase it to memory_limit = 512M or more. Hope this will solve your issue.
Forum: Developing with WordPress
In reply to: Rounding the corners in media and text block@somnath2016 that make sense. Thanks for the clarification. Using css in block.json file looks complicated to me. Thus I am searching solution that will help adding css in json file in json format.
Exactly, you can check the theme name from Appearance>Themes. Sorry for using the word activate and deactivate. You can activate any other theme, so the TT4 will be deactivate and then reactivate the TT4 again. Themes do not have deactivate button. But when we activate other themes, the active on get deactivated. I wanted to tell that.
I’ve noticed you are using TT4 theme. Whenever I face caching issues with block theme, I try to deactivate and activate the theme and most of the time this solves my problem. So, I will suggest you to apply this technique.
Forum: Everything else WordPress
In reply to: Header line on pageAs you mentioned header line on the page, I can see a white space appeared at the top of the page. This is coming because of the broken logo. If you fix the logo, it will be disappeared.
Blank page on header Forum: Fixing WordPress
In reply to: Error on Blog pageYou can enable debugging on your website.
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);Try resetting the permalinks again from Settings > Permalinks.
I am assuming another thing it may occur for your template pages. May be there has code error on your home.php or index.php, because blog pages are using these templates. You can also try single.php file.Forum: Fixing WordPress
In reply to: Where Did Header H1-H6 Options go?Convert Paragraph to Heading Block You can easily convert your paragraph to heading block and heading tags like H1 to H6 will be available for that.
Forum: Developing with WordPress
In reply to: Rounding the corners in media and text block@somnath2016 I am also curious to know, some expected behaviour I’ve noticed does not work when I try to style with block.json. Do we need to solve all these with css styles?
Forum: Fixing WordPress
In reply to: Am receving this errorThese tables dropped for some reason or table names were renamed. Did you imported this table from other sites? Can you explain what you worked last few days on your website please?