davedecc
Forum Replies Created
-
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] disable meta boxes in post editorReporting back to say this worked perfectly, thanks so much!
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] disable meta boxes in post editorThanks so much for the snippet and following up. I will be attempting to implement this soon as I’m just getting back from the holiday break.
There was an error in the page template that did not load the header.php correctly, now fixed.
Forum: Reviews
In reply to: [Cloudflare] Powerful integrationAppreciate that, thanks for letting me know @neotrope
Forum: Plugins
In reply to: [Cloudflare] Same issue as others have stated with settings page not loadingI’m able to get the Settings page to load for me on WP 6.8+, does it work for you now?
Forum: Plugins
In reply to: [Cloudflare] Please Add CLICF CLI would be awesome, unfortunately it seems they are no longer actively supporting it.
From March 2025:
We are not maintaining the APO plugin at the moment, so you will not see an updated version soon.
See: https://github.com/cloudflare/Cloudflare-WordPress/issues/544#issuecomment-2754870996
Forum: Plugins
In reply to: [Cloudflare] support for MySQL 8.4 and PHP 8.3It would be great if Cloudflare updated this plugin, unfortunately it seems they are no longer actively supporting it.
From March 2025:
We are not maintaining the APO plugin at the moment, so you will not see an updated version soon.
See: https://github.com/cloudflare/Cloudflare-WordPress/issues/544#issuecomment-2754870996
Forum: Plugins
In reply to: [Cloudflare] Plugin update file system errorNot sure about this, last plugin update was a year ago, not recently.
Forum: Plugins
In reply to: [Social Integration for BlueSky] Undefined variable $replacement on line 376Related / same issue: https://ww.wp.xz.cn/support/topic/fatal-error-4890/
Forum: Plugins
In reply to: [Social Integration for BlueSky] Undefined variable $replacement on line 376Also had this issue, tried to report it here but now it was removed by mods. Asked to copy to a new thread. Will do.
Thanks Mia!
The sql file is in the njt-package directory of the old (current) site. In this instance we are taking backups of a site. The sql file is also included in the njt-installer folder in the zip, which is exactly where we want it. Just looking to not store the sql file in addition in the uploads folder, if I’m making any sense 🙂
Thanks @apexws !
Is this something that would work for all future events, or just the current events? Do you happen to have any snippet examples of this?
Beyond my scope, perhaps this would be a nice feature request — when using a CPT to bypass ‘post is event’ checkbox to keep the workflow a little smoother (or a setting to do so). Appreciate the consideration and help!
Got it, the add_action needs a higher priority to take effect. This works, may want to update the documentation.
function remove_AA_widget()
{ remove_meta_box('advads-dashboard-widget', 'dashboard','side'); }
add_action( 'wp_dashboard_setup', 'remove_AA_widget', 20);Unfortunately that doesn’t work either.
Code I’m using:
function remove_AA_widget() { remove_meta_box('advads-dashboard-widget', 'dashboard','side'); } add_action( 'wp_dashboard_setup', 'remove_AA_widget');I have other remove_meta_box calls that work just fine, including:
remove_meta_box('dashboard_site_health', 'dashboard', 'side'); // site health
remove_meta_box('dashboard_incoming_links', 'dashboard', 'normal'); // Incoming Links
remove_meta_box('dashboard_plugins', 'dashboard', 'normal'); // Plugins
remove_meta_box('dashboard_quick_press', 'dashboard', 'side'); // Quick Press
remove_meta_box('dashboard_recent_drafts', 'dashboard', 'side'); // Recent Drafts
remove_meta_box('dashboard_primary', 'dashboard', 'side'); // WordPress blog
remove_meta_box('dashboard_secondary', 'dashboard', 'side'); // Other WordPress NewsI have tried various versions of the AA removal code in this same function, but none of these work (one or all at a time)
remove_meta_box('advads_dashboard_widget', 'dashboard', 'normal');
remove_meta_box('advads_dashboard_widget', 'dashboard', 'side');
remove_meta_box('advads_dashboard_widget', 'dashboard', 'advanced');- This reply was modified 1 year ago by davedecc.
Forum: Fixing WordPress
In reply to: Increase in Spam Comment Campaigns: Same IP, different commentersThanks @threadi. Yes, I also posted there, though I’m not convinced it’s an issue with wpdiscuz, which relies on the WP core comment system.
We use akismet, cloudflare, and other methods to reduce spam. What is interesting is how these new campaigns involve guessing email addresses to seemingly validate them against gravatar. And these comments look legit to spam filters, so they do get through them.
Mostly I am posting here to see if others are seeing these sort of campaigns on their WP sites, and to help share knowledge from what we have learned about it so far.