rinart73
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Hide Posts] Settings aren’t saved when trying to enable for PagesI have the same issue.
WordPress: 6.4.3
PHP: 7.4
Theme: Kadence- This reply was modified 1 year, 1 month ago by rinart73.
Ok I see now that my mistake was using CF7 Gutenberg block instead of the plugin shortcode. Now it works, I apologize.
Forum: Plugins
In reply to: [WebP Express] Quality settings don’t do anythingUPDATE: It seems that “auto-limit” UI checkbox is not available anymore, which is why the quality suffers.
If I set “auto-limit”: false in the config.json for ImageMagic the quality improves. But if I change the settings via UI the auto-limit is removed from config.json. This is a bug.
- This reply was modified 1 year, 3 months ago by rinart73.
Changed the settings, thank you, it worked.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form Selector block is broken in 5.7.1Theme: GeneratePress
Plugins:- Advanced Custom Fields
- Blocks Animation: CSS Animations for Gutenberg Blocks
- Blocks CSS: CSS Editor for Gutenberg Blocks
- Check & Log Email
- Contact Form 7
- Contextual Related Posts
- Custom Post Type UI
- Cyr-To-Lat
- Easy Table of Contents
- Easy WP SMTP
- Flamingo
- GDPR Cookie Compliance
- hCaptcha for WordPress
- Honeypot for Contact Form 7
- Kadence Blocks – Gutenberg Blocks for Page Builder Features
- Lazy Blocks
- LiteSpeed Cache
- Loco Translate
- Message Filter for Contact Form 7
- Polylang
- Rank Math SEO
- Regenerate Thumbnails
- Show modified Date in admin lists
- Smush
- WebP Express
- Wordfence Security
Everything updated to the last version.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form Selector block is broken in 5.7.1I’m seeing the message every time I try to edit Contact Form Selector block or add that block and select a form in it. Both on old and new pages. And this also results in Gutenberg displaying the following message: “This block has encountered an error and cannot be previewed.”
You’re using Shortpixel CDN. When I’m trying to locate the style.css file that is responsible for hiding paragraphs I get this: https://cdn.shortpixel.ai/spai/q_glossy+ret_img+to_webp+v_3/https://www.bromptons.net/wp-content/themes/bromptons/style.css?ver=1.0
Alternatively you could edit your style.css and change the theme version. Depending on the CDN settings and the way your theme is structured it may force CDN to update the file:
/* Theme Name: Bromptons Theme Theme URI: - Description: - Version: 1.0 Author: responsive-it.com Author URI: https://responsive-it.com Tags: Bromptons Theme */
change to
Version: 1.0.1
In the end of all of this make sure to empty the cache of any caching plugin that you’re using so the changes would be visible to guests.
- This reply was modified 2 years, 3 months ago by rinart73.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 plugin not sending message and not respondingI just found the reason for this, it was the REST API setting! if disabled the contact form 7 stop responding and stop sending messages!!
Careful with disabling REST API. While in the past it was fine, nowadays a lot of things including Gutenberg editor use it.
—
UPD for my case of the issue. I checked and Contact Form 7 mailing code didn’t change at least since 5.6. So it was unlikely to be the plugin issue.
In my case I was trying to send mail via standard
wp_mail
function and my “From” field had the mail “[email protected]”, while I didn’t really have that address. Instead my domain corporative mail was “[email protected]”. These 2 things together, it seems, have triggered spam filters and my mail was sent successfully but never delivered.So basically I installed SMTP plugin for WordPress and made sure that my mail is being sent via actually existing mail “[email protected]”. Now mails get delivered.
Forum: Plugins
In reply to: [Contact Form 7] What information should go in “Mail”— ‘From’?In the Contact Form 7 form configuration there is a text area called “Additional headers”. Inside of it you need to insert
Reply-To: [your-email]
where “your-email” is the field where the visitor enteirs their email address. This way when you’ll try to reply the mail should automatically be sent to the person that filled the form.The issue is that in one of the recent updates Contact Form 7 started to wrap fields into “p” (paragraph) tags. Nobody asked for this change.
And since in your theme those paragraph tags are hidden when they’re inside
.form-row
, it causes the fields inside them to be hidden too.In your case, deleting
display: none
didn’t help because you’re using CDN and files there didn’t update yet. I would suggest forcefully updating cached files stored on CDN.Forum: Plugins
In reply to: [Contact Form 7] Contact Form Selector block is broken in 5.7.1Forum: Plugins
In reply to: [Contact Form 7] p tag around checkbox is newThe “autop” filter replaces double line-breaks with paragraph elements.
Right now paragraph tags are being added even with 1 line break.
- This reply was modified 2 years, 3 months ago by rinart73.
Forum: Plugins
In reply to: [Contact Form 7] Ver 5.7.1 hasn’t fixed styling issueSame here. From what I can see, Contact Form 7 now adds “
” tags that it didn’t add before. And since they have margin, it causes gaps.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 plugin not sending message and not respondingI get the message that the form was processed just fine and it’s saved in Flamingo. But same, no mail is being sent.
UPDATE: In case anyone needs it, the following code will make certain Rank Math SEO options properly translateable via the Strings tab in Polylang.
/* * Translate Rank Math SEO settings */ $my_theme_translateable_rank_math_options = [ 'img_alt_format', 'img_title_format', 'breadcrumbs_separator', 'breadcrumbs_prefix', 'breadcrumbs_home_link', 'breadcrumbs_home_label', 'breadcrumbs_archive_format', 'breadcrumbs_search_format', 'breadcrumbs_404_label', 'rss_before_content', 'rss_after_content', 'title_separator', 'homepage_title', 'homepage_description', 'homepage_facebook_title', 'homepage_facebook_description', 'author_archive_title', 'author_archive_description', 'date_archive_title', 'date_archive_description', 'search_title', '404_title', ]; add_filter('option_rank-math-options-titles', 'my_theme_translate_rank_math_seo_options', 10, 2); add_filter('option_rank-math-options-general', 'my_theme_translate_rank_math_seo_options', 10, 2); function my_theme_translate_rank_math_seo_options($arr, $name) { global $my_theme_translateable_rank_math_options; if(is_admin() or !function_exists('pll__')) { return $arr; } foreach($my_theme_translateable_rank_math_options as $option) { if(isset($arr[$option])) { $arr[$option] = pll__($arr[$option]); } } return $arr; } /* * Reinitialize Rank Math SEO settings in order to translate them */ add_action('init', function() { if(!is_admin() and function_exists('pll__')) { rank_math()->settings->reset(); } });