publicradio
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Permalinks on all sites’ media have changed to the file pathI figured it out. I am running Relevanssi (premium) on all sites and there’s an option in the attachments tab to redirect attachments to the files themselves. This universally replaces get_permalink(). Also, when I enable WP Safe Mode, for whatever reason Relevanssi keeps running. Manually deactivating it fixed the problem.
I was scanning Heartland.help.
Sorry, I don’t remember the link.
Thanks for the reply. It was internal, and it looks like the edit finally cleared.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Advice on suspicious search queriesThanks for the reply. If it works with the smallest set of characters, why add https: and http:? Why not just put http in the list? Same with <: why are you listing HTML tags if the opening bracket is in there?
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Disable block inline CSSHi, thanks for the reply, and sorry I didn’t see it until now. After trying a lot of things, this turned out to be the winner:
add_filter('get_footer', function(){
wp_dequeue_style( 'jetpack-block-slideshow' );
}, 9999);The ‘9999’ is crucial to get it to actually disappear. Now, if only I could get it to also disappear from the backend (block editor), then my blocks there would look closer to the way they do on the front.
Forum: Requests and Feedback
In reply to: Curlies in code examples: the eternal curse of WordPressI’m surprised this isn’t getting more traction. It’s a chronic, very pervasive problem. WordPress’ own developer reference has this problem! Yeah, there’s a code block further down the page, like @gappiah said, but the H1 at the top of the page includes single quotes that have auto-converted to prime symbols.
Can you imagine how many developers have copied this into their code and spun their wheels until they realized their single quotes were just lookalike characters?
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Force block preview to be full widthThanks, I tried to get pro support but it locked me out. My agency owns a pro license but there was some issue where it thought I was a bot and then I had to submit some form to even log in.
I just used a CSS hack to force the blocks full width in both preview and edit mode. Good enough.
Forum: Plugins
In reply to: [WP Crontrol] Can PHP cron work with standard WordPress hooks?Nevermind, I ran a test and it worked. So the answer to my question is ‘yes.’
Forum: Requests and Feedback
In reply to: Curlies in code examples: the eternal curse of WordPressThat doesn’t solve the problem, though. For me, personally, I am aware of this problem and can make sure smart quotes don’t show in my code snippets. This doesn’t fix the thousands of tutorials already on the web with converted characters in the code examples.
Forum: Plugins
In reply to: [WPGlobus] Paid version support not workingSame. I convinced a client to buy Globus Plus so that we could open support tickets. I have done this in the past, and gotten prompt replies from Alex G. Over the last month, I’ve sent more than 5 emails to support@wpglobus.com and never heard back from any of them. And obviously you opened this two months ago, and there wasn’t even a reply here. I would say wpglobus is effectively abandonware.
Forum: Fixing WordPress
In reply to: WP Cli warnings unsuppressableThanks for the reply. The –skip-plugins flag did the trick. Do you know if there’s any way to define this as a constant, so I don’t have to add the flag every time?
Forum: Plugins
In reply to: [WPGlobus] Shortcode showing in outgoing emailsSorry, as soon as I posted this, I realized that I had added a line in my functions to force outgoing emails to come from my site’s name, and not ‘WordPress’:
add_filter( 'wp_mail_from_name', function(){ return get_bloginfo('name'); });So I changed this to ‘hard code’ in the name of my site. Problem solved.
Thanks for the reply. It appears to be a conflict with a plugin called ‘user tags’. Disabling this fixed my problem.
OK, I figured it out. The htauth wall was preventing the API from working.