Muhibul Haque
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] How to adjust default spacing between images and text sitewideHi there!
I’m sorry to hear about the trouble, but thanks for reaching out.
Upon checking your website with different theme and plugins detection plugins I found you are not using Gutenberg plugins, so the issue is not related to this support forum. The theme you are using “Toujours” was not updated in last 2 years.
However, as little CSS change can fix the issue, could you please apply this CSS and confirm if this helps?Log in to your WordPress Dashboard.Go to Appearance > Customize. Navigate to Additional CSS in the Customizer panel.
- Log in to your WordPress Dashboard.
- Go to Appearance > Customize.
- Navigate to Additional CSS in the Customizer panel.
img {margin-top: 1.5em; margin-bottom:1.5em;}
Note: Please adjust the height depending on your need.Thank you!
Forum: Plugins
In reply to: [WooCommerce] Decimal Quantity ProductHi there! I understand your concern. It seems you may have forgotten to include the plugin link you mentioned earlier. Sharing that would help me recommend other compatible plugins. However, you can consider using a plugin that allows decimal quantities, like the?WooCommerce Quantity Increment?or?Decimal Product Quantity for WooCommerce?plugin.?
Forum: Plugins
In reply to: [WooCommerce] Replace a word on websiteIf your theme does not allow to change the text, using the?Say What? plugin?can assist you, if you don’t want to edit your theme files.
Forum: Plugins
In reply to: [Say what?] Not Changing Text with Block ThemeCan I translate string with links? Can I replace “Developed by Link” this type of text or only I need to change “Developed by”?
In version based release I noticed country based list and company based list.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] ?Like“-ButtonIt’s coming from sharing option.
Jetpack Like Option If you are using block theme you can disable this from here and add “Jetpack Like” block that will help you adding the block without any text. So you can add your own translated text here.
https://jetpack.com/support/likes/#setup-like-buttonI also tried installing translation plugin and this is working fine. So you can install a translation plugins like: https://www.ads-software.com/plugins/translatepress-multilingual/
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] ?Like“-ButtonMay be this is coming from other plugin or theme. Can you add screenshot so I can check where from it coming. I searched on your website, but did not found the text.
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.