groggy72
Forum Replies Created
-
Forum: Plugins
In reply to: [SSL Insecure Content Fixer] Google fonts the culprit but where is it loadingHi Ross – last question I promise
I reckon I can sort out all the other problems but I would be most grateful if you could tell me how I can make the logo – which is loading over https:// load to https://
Forum: Plugins
In reply to: [SSL Insecure Content Fixer] Google fonts the culprit but where is it loadinger ok, thanks.
Forum: Plugins
In reply to: [SSL Insecure Content Fixer] Google fonts the culprit but where is it loadingHey Ross – Ok just did that – just knocked of your plugin and the only things blocked by chrome are the google fonts you mentioned above and the logo on the page (but i’m guessing your plugin would fix this).
The only other error on the page according to chrome is this
event.returnValue is deprecated. Please use the standard event.preventDefault() instead.
Forum: Plugins
In reply to: [SSL Insecure Content Fixer] Google fonts the culprit but where is it loadingG’day Ross
Thanks for taking the time to look at my query. I guess its going to be heartbreaking to figure this one out.
Thanks mate
Forum: Plugins
In reply to: [Interactive Australia Map] Does not workJust tried it on another site and only new south wales works as a hotspot the rest just don’t work.
Forum: Plugins
In reply to: [Facebook Like Box Widget] make responsiveI would love to know the answer to this. This is an amazing plugin and I wish the developer would update it – I would happily spend $30 on this plugin
Forum: Plugins
In reply to: [Responsive Column Widgets] Any tips on making face pile responsiveI have a facepile widget that will not become responsive no matter what I try – I thought your plugin would make the widget responsive but I can’t figure it out. Thanks for taking the time to reply.
Me too!
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Make Responsive?Ok, many thanks for the response. I don’t know css so what would your charge to make a responsive stylesheet? Thanks
Forum: Plugins
In reply to: [WooCommerce] Change "Sort Code" to "BSB" for Bacs payment method.Thank you. Great tip
Forum: Plugins
In reply to: [WooCommerce] Change "Sort Code" to "BSB" for Bacs payment method.online line 205 of ‘class-wc-bacs.php change
‘sort_code’ => __( ‘Sort Code’, ‘woocommerce’ )
to
‘sort_code’ => __( ‘BSB Code’, ‘woocommerce’ )
Forum: Plugins
In reply to: [WooCommerce] Change "Sort Code" to "BSB" for Bacs payment method.Can anyone help me with this. I contacted woocommerce directly and their answer was less than useless. This is melting my brain. There’s a virtual chocolate muffin in it for the best answer
Cheers
Dan
Forum: Plugins
In reply to: [WooCommerce] Change "Sort Code" to "BSB" for Bacs payment method.I’m sorry, this actually is not working now. Back to square 1…….
Forum: Plugins
In reply to: [WooCommerce] Change "Sort Code" to "BSB" for Bacs payment method.For anyone who is stuck with this just add the following code into your functions.php file
add_filter( ‘gettext’, ‘my_gettext’, 10, 3 );
function my_gettext( $translation, $text, $domain ) {
if ( ‘woocommerce’ === $domain ) {
$translations = &get_translations_for_domain( $domain );
if ( ‘Sort Code’ === $text )
$translation = $translations->translate( ‘BSB Code’ );
}return $translation;
}Forum: Plugins
In reply to: [WooCommerce] Change "Sort Code" to "BSB" for Bacs payment method.I would really appreciate some help with this too please. I edited ‘class-wc-bacs.php also but it stuffed up checkout so I had to revert to a backup. Anyone????