kabarovsky
Forum Replies Created
-
Simple 🙂 Thanks!
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] Form input fields cut offThanks for your quick reply! Our website is hidden behind login, any chance I could contact you privately?
Forum: Plugins
In reply to: [Klarna for WooCommerce] Custom widget placement on the Product pageThanks for your reply. I hid the native Klarna widget and placed this shortcode where I wanted it:
<?php echo do_shortcode(‘[onsite_messaging data-key=”credit-promotion-badge”]’); ?>Forum: Plugins
In reply to: [Tax Switch for WooCommerce] Excluding certain prices from switchingThanks for your answer!
Well, we have this Advanced Woo Search plugin on our website and the search results dropdown always displays prices excluding VAT initially despite VAT being toggled ON with your plugin.
Prices inside are wrapped with your .wts-price-container and toggling VAT after results are displayed works though.
There is a JS event which we can hook into when the results are loaded so maybe if there’s a way to trigger your plugin action (switching) with JS then could a solution?- This reply was modified 11 months, 1 week ago by kabarovsky.
Perfect. Thank you.
I had “zoom” CSS property added to body tag, that’s what was causing triggering issues.
zoom: 85%;
@include media-breakpoint-up(md) {
zoom: 90%;
}Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Run JavaScript after filters are appliedThat’s it. Thank you.
Forum: Plugins
In reply to: [Download Manager] Finding user’s “Total downloads” in the databaseIn wp_ahm_download_stats rows with user’s ID counted.
Forum: Plugins
In reply to: [Front End Users] Password reset URL duplicatedFinally I figured it out.
Thank you very much!
Forum: Plugins
In reply to: [Front End Users] Password reset URL duplicatedSo,
1. There is “Forgotten Password” page:
It contains fields: e-mail & image number (captcha)
It redirects to: http://www.domain.co.uk/confirm-forgot-password/
And it sends email message:
”
Greetings from Genuine Property Investments!Somebody requested a password reset for you. If this wasn’t you, you can ignore this mail.
If you want to reset the password, please visit http://www.domain.co.uk/edit-profile/?add=info%40email.com&rc=xQAw1ACXXxPhC2u
If the link above doesn’t work, go to http://www.domain.co.uk/edit-profile/ and enter your email address and the following code:
xQAwAArXXVPhC2u
”When I click on any of these links in email I get to the blank page (just the title “Edit Profile”).
So I wanna access the file where email message is being created and put like:
“Here is your password reset code: XXXXXXXXXXX
Please visit http://www.domain.co.uk/confirm-forgot-password/ and enter the code to reset your password.”
Forum: Plugins
In reply to: [Front End Users] Password reset URL duplicatedThank you for the answer.
Now I don’t have duplicate address in the URL, but when I click on these links below I get empty content. I mean there is only page title “Edit Profile” but none of options available.
——————
If you want to reset the password, please visit http://www.dommain.co.uk/edit-profile/?add=info%40jure.com.hr&rc=dsL61xaK0Bxxxxxx
If the link above doesn’t work, go to http://www.domain.co.uk/edit-profile/ and enter your email address and the following code:
dsL61xaK0BExxxxxx
——————So I would like to access this script that is sending the message and put just confirmation page URL like: http://www.domain.co.uk/confirm-forgot-password/
Forum: Plugins
In reply to: [Front End Users] Newsletter integrationOk thank you for answering.
My solution is creating HTML form that will submit details to F-F plugin database and then to newsletter software.
One more question:
How can I configure login form to redirect to the same page where is was on the start of login? Something like JavaScript history or similar?
I will add login form to each single post template, and after logging in they should be redirected to the same post.
Forum: Plugins
In reply to: [Front End Users] Newsletter integrationHi,
can you please help to manage this. I’ve purchased pro version a few days ago and this is the only feature I’m missing.
So, GetResponse opt-in form looks like this:
<form action=”https://app.getresponse.com/add_subscriber.html” accept-charset=”utf-8″ method=”post”>
<input type=”text” name=”name”/><br/><input type=”text” name=”email”/><br/>
<input type=”hidden” name=”campaign_token” value=”nSzfe” />
<input type=”hidden” name=”thankyou_url” value=”http://www.genuinepropertyinvestments.co.uk/v2″/>
<input type=”submit” value=”Subscribe”/>
</form>These are the key parts that should be embedded into F-F registration form:
1. action=”https://app.getresponse.com/add_subscriber.html” – It triggers GetResponse action (sends data to GetResponse). F-F form consists only # character for action.
2. <input type=”hidden” name=”campaign_token” value=”nSzfe” /> – It also triggers some data for GetResponse
3. <input type=”hidden” name=”thankyou_url” value=”http://www.redirectURL.com”/> – It redirects after the form is submitted (the URL is the same as setup in F-F form redirection)*Input field names are the same for both forms (GetResponse and F-F)
Any way for adding these parts inside F-F registration form?
Where can I access HTML of built registration form that is displayed on “Register” WordPress page?
Thanks
- This reply was modified 9 years, 6 months ago by kabarovsky.
Forum: Plugins
In reply to: [Max Mega Menu] Logo icon on the left on mobileThank you for answering.
But currently I can add only two blocks: Menu Toggle and Spacer.
Yes. Thank you!