calypso88
Forum Replies Created
-
Right ok I understand regarding the Outline.
How do I get the Table of Contents page text to link to the various pages?
Do I need the Pro version to create the links? They already link in the PDF.Same problem here, thankfully found this as I couldn’t figure out what was happening. Hoping for a solution!
Forum: Plugins
In reply to: [WooCommerce Accommodation Bookings] Classes on first & last date of bookingI’m not seeing the “partially_booked” booked class, very frustrating when it’s not obvious that you can’t pick a date because it’s partially booked.
Hi Adam,
Our hidden field has a value. We used to have a slider that updated this value but have temporarily hidden the slider, but the hidden field still has a default value. The spam submissions always blank this field so it’s empty on the submission. Real submissions pass the value.
Yes we have honeypot enabled, and Recaptcha v2 invisible. We don’t have CleanTalk or Akismet as they’re both paid options, which we are trying to avoid.
Hi Patrick,
Ok cool, not focusing on any field is good. But any way to change the message that appears above (“Error: your form is not valid….”)? If it’s a real person spamming us I want to change that message so it appears as if it’s actually submitted – so a fake success message instead of error.
Thanks!Hi Pawel,
I believe hCaptcha is a paid plugin? Trying to avoid that for now.
It’s a bit odd as this one hidden field is always blank when they submit. So I assume there’s no action hook we could use to do some extra validation on this field?Forum: Plugins
In reply to: [10WebSocial] error_type: OAuthExceptionAny update on this?
Hi Adam,
Thanks for your reply.
Yes it’s definitely coming through the forminator form as I can see them in the form submissions section.
I don’t get any recaptcha errors and I can see data in the recaptcha console, so seems to be active.
I just thought it was odd we had an influx of spam after I did updates.
Not overly concerned about getting the emails on our own site, but it can be annoying for our clients and recaptcha never seems to work very well.Forum: Plugins
In reply to: [User Login History] Duration problemHi, I’m having a similar issue I think. I use Memberpress, this plugin and “Loggedin” plugin which limits users to 3 active sessions and then blocks them. I have 1 user that seems to have 3 sessions that are 1-2 sec, and then of course get blocked when they try to login again. I don’t understand how the session can be 1 sec. Any ideas?
Screenshot of their sessions, failed is the 4th attempt blocked by the Loggedin plugin.
https://www.dropbox.com/s/150ot78lzezr5w5/Screen%20Shot%202021-04-14%20at%2012.36.05%20PM.png?dl=0Unfortunately this does not help me. I’m using Memberpress, first name and last name are required fields and they do exist. however display name is same as email, and using it in your template strips the @ from the email, so looks quite bad.
Hi, I have the same issue actually opened a new ticket as I didn’t see this.
I have 1.0.49 of the this plugin, my PHP version is 7.3.11 on my local, 7.2.24 on my staging server.
Any update on this?Hi,
Turns out I should have updated Memberpress, rookie mistake. It is fine now.
However, it states that there is no need to set a Verification page “Select page where verification will process. default home page if select none.”
So do I need it or not? And does it need the shortcode?Forum: Plugins
In reply to: [Loggedin - Limit Active Logins] loggedin_bypassIf I may interject, I just implemented the filter for bypassing a role.
It seems filter code snippet is wrong, you have a variable called $allowed_roles which is never used, I changed it to $whitelist which is the name of the variable that is returned and it works.
Here’s the rewritten snippet://bypass login limit for admin and editor function loggedin_bypass_roles( $prevent, $user_id ) { // Array of roles to bypass. $whitelist = array( 'administrator', 'editor' ); $user = get_user_by( 'id', $user_id ); $roles = ! empty( $user->roles ) ? $user->roles : array(); return ! empty( array_intersect( $roles, $whitelist ) ); } add_filter( 'loggedin_bypass', 'loggedin_bypass_roles', 10, 2 );
Forum: Plugins
In reply to: [WooCommerce] Customer details not appearing in order emails since 3.2.0Same here, we’re on 3.2.4 and still have this issue. Should we open a new ticket?
Forum: Plugins
In reply to: [Contact Form DB] Security settings bugYes sure, I have that setting set to False. Only thing I changed was setting those two options to Author or Editor. When set to Editor my editor user couldn’t see the menu item, only when set to Author.
Actually your documentation is wrong I think.
“If a user’s role allows him to have #2, then he has complete access to see all data. When logged into the WP dashboard, he will see the CFDB menus (unless #1 is set to false) ”
Surely that should say unless #1 is set to true. If #1 (Allow only Administrators to see CFDB administration screens) is set to true then they won’t see the menus, not if set to false.