Your basket is currently empty!
WooCommerce Feature Request in Progress
Our feature request we made in July 2023 for WooCommerce to auto archive old orders has received enough support for its status to be changed to “in progress”!
Resolve JavaScript Error on WooCommerce Installation
Identify source and redevelop code to resolve a
DOMSubtreeModified
JavaScript error that only presents itself on the shop pages of https://www.orendagd.com.auWP 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.301 Redirect Old URLs
Identifying old photographer pages and setting up
.htaccess
301 redirect rules to point to new photographer WooCommerce categories using Deny All Firewall plugin on https://albumen-gallery.comConfigure Stripe Endpoint
Setup WooCommerce endpoint webhook on Stripe and validate the domain to enable Apple Pay and Google Pay express checkouts on https://albumen-gallery.com
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; }