Roy Orbitson
Forum Replies Created
-
Forum: Plugins
In reply to: [Disable Yoast's Structured Data] Need update to WP 5.8It’s extremely unlikely to stop being compatible with WordPress itself, WP’s version is practically irrelevant. What does matter is Yoast’s changes. Are you actually seeing ld+json output when you view your page source? Press Ctrl + U to view the HTML code WordPress produces.
- This reply was modified 4 years, 7 months ago by Roy Orbitson.
Forum: Plugins
In reply to: [More Mails for CF7] Attachment in third email v2I offered a patch to that plugin’s author. You will have to wait for them to decide if and when they incorporate the change.
Forum: Plugins
In reply to: [Contact Form 7] Cookie nonce is invalid with status 403@takayukister why is this still marked resolved? @paolabozhilova said it’s not.
I’ve experienced the same problem, it happens when a “nonce” (a small validity token) expires. The form that crashes completely, with no feedback to the user, see https://github.com/takayukister/contact-form-7/issues/421
Forum: Plugins
In reply to: [More Mails for CF7] Attachment in third email v2Without any further information about what URL you’re referring to, I’ll have to assume that this is a conflict with another plugin and mark this as resolved.
Forum: Plugins
In reply to: [More Mails for CF7] Attachment in third email v2Are you following the CF7 guidelines for attachments?
Forum: Plugins
In reply to: [More Mails for CF7] Attachment in third email v2How large are the files you’re attaching? When I’ve tested this in the past, there is no URL, attached files are fully encapsulated in the email message itself, as I would expect them to be.
Forum: Plugins
In reply to: [More Mails for CF7] Still in use?It really depends on the author of CF7. WP itself is pretty decent at backwards compatibility. CF7’s API sometimes breaks.
Forum: Plugins
In reply to: [More Mails for CF7] Still in use?Yes. I just don’t bump the “tested with” version very often. I’m still using it. Is it not working for you?
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Request for maintenanceSad to see this plugin wane, but it’s totally understandable. CF7, despite its ubiquity, is not especially extensible and its author does not seem bothered by regularly making backwards-incompatible changes. I wouldn’t want to keep playing catch-up, either.
Thanks, @flixos90.
Forum: Plugins
In reply to: [Contact Form 7] typeError: Cannot set property ‘innerText’ of null@takayukister We have the same problem, and so do others.
In your (minified) code, there are some lines like this:
e.wpcf7.parent.querySelector('.screen-reader-response [role="status"]').innerText = '', e.wpcf7.parent.querySelector('.screen-reader-response ul').innerText = '',which assume the presence of certain tags, but there is no tag with a
role="status"attribute under thediv.screen-reader-responseon our page. One should always check for existence before setting properties, like this:var x; (x=e.wpcf7.parent.querySelector('.screen-reader-response [role="status"]') )&&x.innerText = '', (x=e.wpcf7.parent.querySelector('.screen-reader-response ul'))&&x.innerText = ''We had to downgrade to 5.3.2 (download at the bottom of https://wordpress.org/plugins/contact-form-7/advanced/). On 5.4, no forms could be submitted at all.
Forum: Reviews
In reply to: [More Mails for CF7] Working fine with WordPress 5.6Cheers.
Forum: Reviews
In reply to: [More Mails for CF7] I like this pluginYou’re welcome!
A simpler version:
add_filter( 'wpseo_frontend_presenter_classes' , function($filter) { return array_diff($filter, [ 'Yoast\WP\SEO\Presenters\Open_Graph\Article_Published_Time_Presenter', 'Yoast\WP\SEO\Presenters\Open_Graph\Article_Modified_Time_Presenter', ]); } );Forum: Plugins
In reply to: [Contact Form 7] Dropdown Tag (no multiple attr) returning arrayIt is on purpose.
@takayukister It would have been nice to have this breaking API change documented in the release notes. I had a few form integrations on multiple sites that have had silent data loss because a
<select>, which always been POSTed and handled by your plugin as a scalar, is suddenly the wrong type.Forum: Plugins
In reply to: [More Mails for CF7] Send third mail with a delayDelayed delivery is not built into WordPress, nor CF7. This plugin does not change how mail is generated and delivered. To delay messages, you’d have to
- Prevent a message from being sent.
- Store it in its entirety somewhere along with info on when to deliver it.
- Have a scheduled (cron) task to check for messages to send and send them.
- Provide a visible log of delivery results to admins, because the feedback for non-delivery is no longer instant.
There may be a plugin that already does this, I don’t know. It’s not a basic feature to add.
Go to Contact > More mails, to set how many Mail sections you need per form, and save. There isn’t a limit, but this is really for unique messages. If you want many people to get the same message, use a
CcorBccheader instead.