This imgur post shows the rendering with 2.8.6 on top, and the rendering with 2.8.7 on the bottom:
The relevant code from the webpage is included as the third picture in the imgur post. I could not paste it here as it rendered to HTML.
As a test, I disabled all plugins but Ultimate Member. Using 2.8.7 fails. Switching to use 2.8.6 works. Switching back to 2.8.7 fails again. Can the 2.8.7 plugin be fixed so that this no longer happens? I’ve fallen back to 2.8.6 for now to hope that you can fix this. I could provide a non-Wordpress login (an Ultimate Member login) if you’d like to test the link.
]]>We added a custom radio button with two options. If the donor chooses Option 1, then the donation amount for the form should be X amount – this is the default amount for the form. But if they choose Option 2, then the donation amount should be Y instead.
We had a look at the Github page with your custom code snippets, but didn’t see something that could help.
Is there a fairly easy way to accomplish this with a code snippet or another way? We are not developers.
Thanks for any assistance.
]]>first of all: Thanks a lot for this light weight plugin that generally does a good job!
However I’d like to integrate a custom tracking code snippet to the custom “thank you” page, which is not working with the following code:
add_action('woocommerce_thankyou', 'myFunction', 10, 1);
function myFunction($order_id) {
...
}
Is there a problem or am I doing sth wrong?
Thanks in advance for your help!
Kind regards,
Laurent
I am using the following filter to limit the submissions forms per user’s email per month, but unfortunately, each user can submissions several forms with one email.
yours document:
https://formidableforms.com/knowledgebase/frm_validate_entry/#kb-limit-submissions-per-time-period-or-any-stat
Is this filter still valid?
My code is:
Field 182 is the email field of my users
add_filter('frm_validate_entry', 'check_submitted', 20, 2);
function check_submitted($errors, $values){
if ( $values['form_id'] !== 6 ) {//Change 30 to the ID of your form
return $errors;
}
$entries_submitted = FrmProStatisticsController::stats_shortcode( array( 'id' => 182, 'type' => 'count', 'user_id' => 'current', 'created_at_greater_than' => 'this month' ) );//change the params to the params of your stat
if ( $entries_submitted >= 1 ){//change 1 to your limit number
$errors['too_many'] = 'You filled this form this month, please register the feedback in the next month.';//Change this to your error message
}
return $errors;
}
BR
]]>cool plugin! Is there a way to deactivate the plugin (or upload button) for all user roles except “admin”. Is there a filter or action for functions.php? Couldn′t find anything in docs.
At the moment it seems all roles “higher” then “contributor” or “subscriber” have permission to add a pic. Code Snippet would be awesome or better, read out all available user roles and let admin select each role individually who will be allowed to add pics.
Thanks for your help!
Regards
]]>Not sure if this is a bug for the plugin or WP but figured I’d let you know. The profile page above existed. I had a slideshow in the Notes section. They sent new images to replace the test ones I used. I deleted the old ones and create the new slide show. The profile now shows two copies of the slideshow. I deleted the contents of the Notes section, saved the profile, then added the slideshow back and this profile still shows two note sections when I do. I can start it again from scratch but figured I’d let you know in case it is a bug.
Thanks.
]]>I’d like to log only messages by forms so the logging of administrative outgoing mails so far i need to delete manualy.
May there is a change, to disable by given mailadress?
Thank You for any advice!
]]>