delbono72
Forum Replies Created
-
Plugin rectivated successfully. Thank you
Yet I do not see any share/save cart button. Logged in/not logged in does not change.
Probably it’s my theme. (Woodmart), any hints on where to check?
Thanks.
Hi,
same error for me
PHP Fatal error: Uncaught Error: Class ‘Ankit\WCSSC\Section\General’ not found
I had to disable the plugin.
Forum: Plugins
In reply to: [Emails Catch All] smtp for all outgoing mail?Thanks!
Forum: Plugins
In reply to: [Premmerce] Disable “Upgrade to Pro” notificationI really appreciate your free plugin. I would appreciate your marketing message within the plugin pages but not in every admin page load.
Hi
I’m so sorry. It comes from another cart recovery plugin.
Issue closed.Settings are consistent, but with tax included (“incluse” in italian), instead of excluded.
I am afraid disabling the plugin would have no relevant effect because the problem is only in the cart abandoned recovery mail in the table generated by {{cart.product.table}}. All other transactional emails display prices correctly. (for instance: order email, cart summary after clicking recover your order now)
What file is in charge of generating {{cart.product.table}} ?
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] Acknowledgement mail@amutha4491 +1
Would be useful to me too.
Getting an email notification of payment could be great.
I often take a look at my mobile phone to see if new orders are ok or not.
Logging in to stripe or wordpress backoffice is annoying from the phone.
Checking email is straightforward.Forum: Plugins
In reply to: [Modula Image Gallery] Lightbox gallery not opening lightboxYes damn, that was it.
I didn’t realize It could add <p> in ANY of the images and not in boundaries only.Thanks.
Bye.Forum: Plugins
In reply to: [Modula Image Gallery] Caption Font FamilyOk thanks for your prompt reply. ??
N.
Hi, thanks,
would be cool If I could choose case sensitive/insensitive according to the situation as variations may tend to be limitless in some cases.Thanks for your reply.
ByeThis was not the case for me “Immediately lock out invalid usernames” is unchecked
This happened to me as well today. In my case the usernames were not written in hebrew.
Standard Latin without any accent. Normal users and also one administrator.
I tried myself and It happened even with a saved password. After disabling wordfence, I could login with the exact same account.
For the moment I am disabling the anti-brute force tool.- This reply was modified 4 years, 4 months ago by delbono72.
Forum: Plugins
In reply to: [WP Super Cache] Exclude pagesTopic closed.
“rejected URIs” box
has appeared after saving .htaccess rulesForum: Plugins
In reply to: [Modern Footnotes] Footnotes showing as plain text on excerptsSorry the correct code is:
add_filter('the_excerpt', 'no_excerpt'); function no_excerpt(){ //replace empty( $post->post_excerpt ) with empty string. $post = get_post(); if ( empty( $post->post_excerpt ) ) { return ''; } else { return $post->post_excerpt; } }
Forum: Plugins
In reply to: [Modern Footnotes] Footnotes showing as plain text on excerptsHi,
I partially solved using this issue by setting a filteradd_filter('the_excerpt', 'no_excerpt'); function no_excerpt(){ //replace empty( $post->post_excerpt ) with empty string. $post = get_post(); if ( empty( $post->post_excerpt ) ) { return ''; } else { return $excerpt; } }
But I do not know why, the counter starts from “2”,
probably because number 1 is created by auto excerpt that replicates first lines from post content.