chanart
Forum Replies Created
-
Forum: Plugins
In reply to: [Import and export users and customers] membership_id field doesn’t workyes, why – isn’t working with v3?
Hi, I read somewhere that functions that hook to the gettext filter can create a performance issues. Is it true? Won’t it be better to replace the strings using JS?
Thanks for the reply! I tried the recipes and the only one that worked is the one with the price. The others didn’t change anything. However I applied the price one (with the needed changes) and managed to use that one for the others as well.
And regarding the confirmation message – can I use the this recipe?
What is the connection between those strings and the email templates?
Thanks!
- This reply was modified 2 years, 1 month ago by chanart.
Hi Jarryd, thanks for the prompt reply!
There are several things I’d like to change in the checkout page:
- In the title – instead of “Membership checkout” I’d prefer simply “Checkout
- Instead of “Membership Level” I’d prefer simply the course name.
- The sentence: “You have selected…” can be deleted (we offer only one course). (Additionally, the word “membership” appears twice – as in “you have selected the xyz course membership membership level”).
- Instead of the sentence: “The price for membership is xyz now” – simply “Price: xyz”
And in the confirmation page – is it possible to simply remove the word “membership” and instead just use “account”?
The emails can basically be changed using the templates, correct? But how is the connection between the text on the frontend and the emails?
Thanks in advance!
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Email delivery on local installationjust did 🙂
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Email delivery on local installationok, thanks. great plugin btw!
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Email delivery on local installationTrying to test it (using the “send a test email to” prompt) has the spinner turning constantly and nothing happens. I actually got one email delivered out of maybe 20 attempts.
And a test form on the site just fails to send. I installed an smtp plugin and entered the exact same settings and it sends with no issue.
Yeah, seems good 🙂
Hi Dmitry, thanks!
I tried the Sensei_Utils approach before and constantly got some errors. I found the lesson completion information in the wp_comments table and managed to retrieve it by creating the following function and then call it on a page in an if statement.. Seems to work 🙂
function has_approved_comment( $user_id, $post_id, $status = 'complete' ) {     $args = array(         'user_id' => $user_id,         'post_id' => $post_id,         'status' => $status,         'number' => 1, // Retrieve only one comment     );     $comments = get_comments( $args );     return ( count( $comments ) > 0 ); } // And then run it on the page in an if statement on the page I want: $current_user_id = get_current_user_id(); $post_id = get_the_ID(); if ( has_approved_comment( $current_user_id, $post_id, 'complete' ) ) { echo "completed"; } else { echo "in progress"; }oops, lesson.. lesson 🙂
Oh I did send you an email. tried again..
Hi Matthias, couldn’t see any related issue in the console, but I’m not sure what I need to look for. The CF7 form – on first attempt no feedback. message blocked as spam. 2nd attempt – error message and blocked as spam as well. The WPforms form – shows a “sent” notification but nothing happens.
Sure, we could skype – how shall we get in touch – I don’t want to post my skype info here.. Shall I email you via your website?
Thanks in advance
It doesn’t work actually. tried both with wp forms and with cf7 and can’t seem to be able to have it working. It is blocking everything…
cool, thanks!
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Integration with piotnet forms?Hi Jarno,
I removed the reCaptcha keys from the CF7 integration settings. I deactivated CF7 from the complianz integration settings. The reCaptcha scripts and resources load regardless of the cookie consent situation.