Igor Benic
Forum Replies Created
-
Hi @jonathanlespect, ty for providing the explanation and code example.
I’ll have to check it out and see if there is a bigger reason for that happening. If not, I’ll implement the one you suggested.
Hi @jonathanlespect, I am so sorry about my late response.
Personal life and such things…
Thank you for reaching out to me about it. It might be due to the current daylight saving settings on the server.
I’ll check that out and see why that would cause an issue.
Hi @francescomatturro, using the shortcode for [rpt_wc_countdown] (without ID) should show in Elementor product templates.
Forum: Plugins
In reply to: [Change Prices with Time for WooCommerce] email for pro version not receivedHi, as we can’t discuss anything regarding premium here on the free forum, please send me which site & email is used for purchasing and to which email to send the download link at ibenic.com/contact
Forum: Plugins
In reply to: [Change Prices with Time for WooCommerce] WordFence – security vulnerabilityHi @thelapara, the latest version should have fixed any possible security issue.
I am not aware of anything else that could be a security issue.
Hi @artyus, thank you for letting me know.
Not sure how that part of code wasn’t pushed. It should be there now 🙂
Hi @ewraniwego, that’s a premium feature, where you can decide on how many giveaways can 1 email register to.
A simplified code:
add_action( 'sg_process_registration', 'ewraniwego_block_email_from_multiple_giveaways' ); function ewraniwego_block_email_from_multiple_giveaways( $front ) { global $wpdb; $email = isset( $front->posted_data['sg_form']['user_email'] ) ? $front->posted_data['sg_form']['user_email'] : false; if ( ! $email ) { $front->add_error( 'no-email', __( 'No Email Provided', 'your_textdomain' ) ); return false; } $count = $wpdb->get_var( $wpdb->prepare( 'SELECT COUNT(*) FROM ' . $wpdb->giveasap_entries . ' WHERE email = %s', $email ) ); if ( absint( $count ) ) { $front->add_error( 'max-met', __( 'You are already signed up to a giveaway', 'your_textdomain' ) ); return false; } return true; }- This reply was modified 3 years, 7 months ago by Igor Benic.
Forum: Plugins
In reply to: [Change Prices with Time for WooCommerce] WordFence – security vulnerabilityHi @368durham, I am not aware of such.
I can assume what might be.
Currently, working on a new version which should be out within this week, so I’ll update the library I use inside of the plugin.
That’ll probably fix the issue.
Best,
IgorHi @longman2020, translation should be supported as it has .po files and it’s tested with a few translation plugins such as wpml.
RTL is not supported for now.
Hi @daniel25k, sorry for being unresponsive.
Got Covid last week so I was out sick. Still am.
For now, email field can’t be removed as it’s the only essential field for the giveaway to work.
Hi @macdabby, we can’t discuss anything related to premium on here.
Please go to https://wpsimplegiveaways.com/support/ and create a ticket there so we can discuss it further.
Hi @jdelmer, this should be fixed in the last update.
Do you have the latest version?
Hi @nanaboakye, that’s possible, but it’s not in the free version.
All options can be seen in here: https://wpsimplegiveaways.com/docs/giveaways/prize-info/
Hi @nanaboakye, I’ve been thinking about this.
It’s in my backlog of features. I’ll see if I can somehow get that into the next version.
I was also thinking about adding a way to spend entries for prizes. Something like an evergreen giveaway that never ends, and people can use the actions to get entries and then spend them on prizes.
Sorry for the late response.
We discussed everything through emails.
The Winner can be selected from the giveaway edit page itself or from the list of giveaways by clicking on the button to select them.