clothncraft
Forum Replies Created
-
Forum: Plugins
In reply to: [Broadcast] error with latest Broadcast updateOk, SO I just deactivated and reactivated and the error seems to have disappeared – will let you know if it comes back…
Forum: Plugins
In reply to: [Broadcast] Override child post permalinks NOT WORKINGI’ve been trying to think through what might be causing this error.
My site is set up for directories – not sub-domains – would that make a difference?
The plugin in network activated – does that make a difference?
I have tried changing the permalinks (in Settings -> Permalinks) on both sites and it doesn’t seem to make a difference.
Are there any known conflicts with other plugins? If it was a conflict with another plugin, would it be one that is network activated or one that is activated on just one of the sites I’m working with?
Am keen to thrash this out and see what could be the error since the developer (@edward_plainview) is not able to repeat the error on his system.
Another thought – Is there any other settings in PHP (or Apache or anything else server related) that could be effecting this?
Forum: Plugins
In reply to: [Broadcast] Override child post permalinks NOT WORKINGI have the same issue. REALLY need this to work as this is what I’ve been looking for! Am willing to throw a LITTLE money at this to if we can get it working. (ie my site doesn’t earn me any money yet so there’s not a lot to throw around ?? )
Forum: Plugins
In reply to: [WooCommerce] Change "Sort Code" to "BSB" for Bacs payment method.I’ve discovered this code seems to work …
function wpse_77783_woo_bacs_ibn($translation, $text, $domain) { if ($domain == 'woocommerce') { switch ($text) { case 'Sort Code': $translation = 'BSB'; break; } } return $translation; } add_filter('gettext', 'wpse_77783_woo_bacs_ibn', 10, 3);
Placed in the themes functions file
It worked! You so totally ROCK! Thanks heaps!
Well a functions file won’t get overwritten if I’m using a child theme… which I am so it might just do the trick! I’ll give it a go now.