Tecca
Forum Replies Created
-
Was wondering what had broke the site last night. 3.12.13 helps but still seems like there’s some wonkiness on the frontend with CSS. 12.12 would just break the theme entirely. The versions prior to that worked great on my end.
Yes, WooCommerce for me as well.
Just started coming across this issue as well, had to deactivate the plugin for the time being.
Hey there. The block name is “All Products” to display all the products from the store.
This should fix it. In
/plugins/subscriber-login-for-youtube/src/Site/Session.phppublic static function start() { if (session_status() !== PHP_SESSION_ACTIVE) { session_start([ 'read_and_close' => true, ]); } }Child pages: pushing over a subpage doesn’t keep its parent page attribute (parent page exists on both sites). It will actually remove the parent page after it was manually set and then pushed again.
Private post: if you try pushing a private post, it will create another post instead of editing the current one.
Switching to draft & deleting: draft status and deleting post doesn’t sync between sites.
Having these things sync would be great.
Misspoke; ignore
- This reply was modified 4 years, 10 months ago by Tecca.
Forum: Plugins
In reply to: [hCaptcha for WP] Feature request: Invisible HcaptchaAwesome! Will be checking it out now. Thanks for the update.
Ah, thanks for your time, kaggdesign. I tested it in the same way as you just now, as well as with min-length fields (initial reason why users would fail the form input). The only other difference between the forms that fail is that I’m using the Conditional Fields plugin in those: https://wordpress.org/plugins/cf7-conditional-fields/
May be due to that, not sure atm. Will need further investigation.
Edit: Okay, so it’s not the Conditional Plugin per se, but the fact that there’s technically two forms, and thus two captchas, on a single page (with help from the Conditional plugin). So I imagine that hCaptcha is conflicting between the two in some way. Thankfully it works fine if the user doesn’t fail any fields and the conflict only happens upon failure.
Can’t really blame this plugin for my setup, but if anyone has any useful tips, it would be much appreciated. ReCaptcha worked fine using this exact setup, so maybe there is something else that can be done. Kind of out of my field though.
- This reply was modified 4 years, 10 months ago by Tecca.
Gotcha. Thanks for your time, Mr Clayton!
Forum: Plugins
In reply to: [hCaptcha for WP] Feature request: Invisible HcaptchaAbsolutely agree. Decided to move from ReCaptcha to hCaptcha because it seems to be 1:1, but the plugin itself doesn’t seem to offer this option.
Forum: Plugins
In reply to: [Disable REST API] Black list functionAgreed, this would be a great way to go about it. Especially since WordPress and plugins in the future will start relying even more heavily on the API being accessible.
Forum: Plugins
In reply to: [DocsPress - Online Documentation] Private Posts ListIsn’t this WordPress’ default functionality? “Private: Only visible to site admins and editors” is what’s shown when you change the post visibility.
If you want logged in users (subscriber by default) to view private docs, use a role editor plugin and enable the
read_private_docscapability for that role. Do that for any other role that you want as well.Forum: Plugins
In reply to: [W3 Total Cache] W3CT is replacing relative link in pre/code blocksThanks for the reply, Marko.
It makes sense that W3 Total Cache would replace assets with the CDN links, but is there any relevance to replacing them in code blocks? A resource is not trying to be displayed, rather it’s a literal string of text inside of a code block.
So if you’re writing an article or tutorial on your website and typing text like
/favicon.icoinside of pre/code HTML elements, W3 Total Cache replaces the text — but the literal string is needed to write a proper tutorial, not the replacement that W3TC imposes, which would end up beinghttps://cdn.example.com/favicon.ico.gz— making the reader confused and unable to simply copy/paste your code.The question is more so “why does W3TC replace strings inside of code blocks and is there a way to stop that from happening without turning off CDN options?” I can’t see why it would be helpful to replace assets inside of code blocks because they are not meant to be displayed as assets, just text. Seems it would be considered a bug than part of the feature set.