Your basket is currently empty!
Customising Abandoned Theme
Customising a theme that is no longer in development, specifically to show automatically show past and future events, converting “Portfolio” and “Team Members” custom post types to “Events” and “Artists”, merging CSS and JavaScript assets and locating and removing a redundant, hard-coded mailchimp external JavaScript include on https://www.bridgepointrye.com
WP Accounts WooCommerce Compatibility
Making our WP Accounts plugin compatible with WooCommerce so that clients can pay using any WooCommerce payment gateway.
Whitelist WooCommerce API in Deny All Firewall
Updating the
.htaccess
rules in our Deny All Firewall plugin to allow access to the WooCommerce API when Lock Down mode has been enabled.Integrating Wordfence with Cloudflare
Updating our WordPress Maintenance plugin to enable Cloudflare “Under Attack” mode when Wordfence “increased attack rate” is detected.
Automatic WordPress Service Notifications
Developed an automatic warning system to alert site administrators via email as to when their websites are due a WordPress service with our WordPress Maintenance plugin.
Remove “Archives” from HTML Title
To remove the “Archives” text added by WooCommerce on product category pages to the <title> tag in the <head> of the <html> we’ve created this simple filter …
add_filter('pre_get_document_title', 'custom_pre_get_document_title', 16); function custom_pre_get_document_title($title) { if (is_tax('product_cat')) { $title = str_replace(' Archives - ', ' - ', $title); } return $title; }
Reporting PHP Error Warning
Reporting a PHP error warning and suggesting a fix in Merge + Minify + Refresh plugin.
Integrate hCaptcha on Sign In
Setting up hCaptcha on Sign In and Subscribe forms on https://ryesussex.uk
Reporting Error Notice in WordPress Plugin
Reporting a PHP error notice in WP Extended Search.