philhambley
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Customer Area] Can’t edit file or page URLHi. Thanks for getting back, much appreciated. Unfortunately I don’t have a ‘permalinks’ option within the Screen Options dropdown. I’ve tried to de-activate all plugins (except Cuar obv.), and change the theme to WP Twenty Twenty Three, and issue persists. I have latest version of WP installed. Note that I do have the option to edit permalinks within standard pages and posts. Thanks for any ideas or thoughts on this.
Hi Michael.
Thanks for your reply; it’s very much appreciated.
I’m working on Excel on Windows PC not Mac, and have not had any issues previously.
I’ve since noticed that in another site I run, there are no problems when I export and open the .iqy file.
The only difference is that this site has version 2.10.5 of the plugin installed, and the site that has been throwing up some issues is running version 2.10.20.
Is the simplest solution just to roll back to a previous version of CFDB, or is there anything else to try?
Many thanks in advance for any help you might be able to offer.
Hi Michael.
First up, congratulations on a fantastic plugin.
I’m experiencing the same issue; for some unknown reason, my .iqy file refuses to connect correctly – having been fine for several months.
I’ve managed to download data using the fix you describe above (via Data tab > Connections..)
However, when I reopen the file and refresh the sheet, all data is lost. Do you know if there is a workaround for this?
Many thanks for any help you might be able offer.
Forum: Plugins
In reply to: [Simple Shopping Cart] Formatting Purchase Confirmation EmailNope. Any suggestions?
Forum: Plugins
In reply to: [WooCommerce] Change 'Cart Updated' messageI eventually found the easiest solution to this. Add the following to your functions.php file:
add_filter(‘gettext’, ‘wpse_124400_woomessages’, 10, 3);
/**
* change some WooCommerce labels
* @param string $translation
* @param string $text
* @param string $domain
* @return string
*/
function wpse_124400_woomessages($translation, $text, $domain) {
if ($domain == ‘woocommerce’) {
if ($text == ‘Cart updated.’) {
$translation = ‘Basket updated.’;
}
}return $translation;
}Forum: Plugins
In reply to: [WooCommerce] Change 'Cart Updated' messageThanks for your help ManusH (much appreciated), but I can’t help thinking that this is massive overkill for something that is such a small change.
I really don’t want to have to install an additional plugin (my whole site only uses 2 plugins – including Woocommerce) just to change the text on a message.
I’ve trawled and trawled the web looking for a simple answer to this, and am amazed that there doesn’t seem to be anything written up about this.
Surely changing the message text is a common procedure for Woocommerce users?
Forum: Plugins
In reply to: [WooCommerce] Firefox logout WoocommerceMany thanks Winnetou & William – I’d been struggling with this for several hours before finding your solution.