Steven Jay Cohen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Chaplin] CODE BLOCK not picking up Editor ColorThe issue is only within the editor. It renders perfectly on the published site.
Two Blocks – First Verse (working), then Code (not working)
What I wrote was “Testing Verse” (in a Verse Block) then “Testing Code” (in a Code Block). The text in the Editor UI is where the issue is. If I publish the page, both blocks would display perfectly on the public facing website.
Since this is only a back end issue, I don’t have a link that shows the problem.
- This reply was modified 4 years, 1 month ago by Steven Jay Cohen.
Same issue here. Check this thread. It’s already a v5.9 known bug: https://core.trac.ww.wp.xz.cn/ticket/55019
Forum: Plugins
In reply to: [hCaptcha for WP] Integration with Jetpack Contact FormAlso, how about adopting the required field styles from the form that it appears in?
Other required fields will have the word (required) — possibly with specific styles. Shouldn’t the hcaptcha widget have the same styles since it is essentially acting as a required field in the form?
Forum: Plugins
In reply to: [hCaptcha for WP] Integration with Jetpack Contact FormIf you do not complete hCaptcha but fill the form, the email is not sent, but the form fields are cleared.
It would be better if some kind of error occurred. If someone honestly missed the hcaptcha field, then they will assume that the form was properly submitted.
Understanding the limitations here, would it be possible to add some kind of Error Notice to the page on reload? Anything would be better than nothing.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Blog Posts included in Default Podcast Feed?Absolutely! Always happy to help with documentation 🙂
Yes, using Posts (I think that was the default).
Using the query in the earlier comment, I cleared out the field in over 1500 posts. This was similar to a manual recommendation made in an earlier issue on this forum but seemed more practical because of the volume of edits needed.
Do I need to do anything else to clean this up?
(Would seem to be an installer issue. I’d be happy to help you patch that for future users.)- This reply was modified 4 years, 5 months ago by Steven Jay Cohen.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Blog Posts included in Default Podcast Feed?I wound up using the following query to remove erroneous data created by the plugin at install on over 1500 posts that happen to contain audio files that were NOT part of a podcast.
UPDATEsrnet_postmetaSETmeta_value='' WHERE meta_key="audio_file" and meta_value not like '%cast%'If it were only a few entries, I would have fixed it manually. If there is anything else that I should be checking to make certain that nothing is broken, please let me know.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Blog Posts included in Default Podcast Feed?Needed to add the following CSS to hide the Castos Player appearing on regular posts that happened to contain audio (NOT PODCAST EPISODES):
body.single-post div.podcast_player, body.single-post div.podcast_meta { display: none !important; }The Castos Player was non-functional. I can remove this CSS if you need it visible to test a fix.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Purge 2 images from photonThank you!
Here are the relevant lines in my custom code:
// Load WP components, no themes. define('WP_USE_THEMES', false); require_once('/home3/xxx/public_html/XXXXX.com/wp-load.php'); // send test message using wp_mail function. $sent_message = wp_mail( $to, $subject, $message, $headers, $attachments );Typically, something like this would be run as a Cron Job, but since it is not in my case, your DOING_CRON exception does not apply.
This is why I’d really like a toggle added.
- This reply was modified 5 years, 11 months ago by Steven Jay Cohen. Reason: anonymizing code
Truly similar issue, but a different solution.
In my case, custom code meant that the E-Notice was replacing the $message, not the $to field. So, the recipients were getting the notice instead of the message body.
I’ve looked back in this support forum and see that issues related to this have come up from time to time, and I’d like to suggest you implement a different solution.
//in file: file-based-page-cache.php //DEV TEAM - Please Consider Allowing Users to Toggle This setting //MY HACK $no_cache_because=''; if (!empty($no_cache_because)) { $message = implode(', ', $no_cache_because); // Add http header if (!defined('DOING_CRON') || !DOING_CRON) { wpo_cache_add_nocache_http_header($message); } // Only output if the user has turned on debugging output if (((defined('WP_DEBUG') && WP_DEBUG) || isset($_GET['wpo_cache_debug'])) && (!defined('DOING_CRON') || !DOING_CRON)) { wpo_cache_add_footer_output("Page not served from cache because: ".htmlspecialchars($message)); } return; }Instead of chasing down each instance that causes an issue with your design decision to insert comments into the HTML, please consider allowing users to turn it off completely — even if you choose to hide the toggle in the ADVANCED Section.
Same answer that I gave in the other thread Benjamin.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] fail to change monthsSuperCache. Do you have folders that you would like me to exclude in the plugin?
I will not be turning it off (except for testing).
Yes, I have tried as much of the troubleshooting as is applicable.
Forum: Themes and Templates
In reply to: [Oblique] Infinite Scroll jumbling postsWill do!
And, will post a resolution here (once there is one).
Forum: Plugins
In reply to: [Cue by AudioTheme.com] using only mobile view of cueSame thought. I would like to tell 1 playlist in particular to use the small screen view on a large screen.
Is there something I can add to the shortcode to accomplish this?
Forum: Themes and Templates
In reply to: [Boardwalk] Blog Posts style for Porfolio Page?That’s what I meant Sarah. It’s not showing up that way in the theme preview function. The style only applies to the blog page within that function.
Thanks for the info.