Steph Wells
Forum Replies Created
-
Part of the steps in the FAQ is to set up SMTP. Please try that step and let us know if you still don’t receive the emails.
Forum: Plugins
In reply to: [Terms of Use] Adding the Accept date on a custom pageThe date and initials are stored in the WP user meta table. You can retrieve anything in this table with:
global $user_ID;
get_user_meta($user_ID, ‘terms_and_conditions’);The initials are stored as ‘tou_initials’.
It sounds like you need to turn on debug mode or find your php error log in order to find what exactly the problem is. Without an error message, we’re just guessing since we haven’t heard this issue from anyone else. If you have more questions and information, please post in the help desk:
https://formidablepro.com/help-desk/Yes. That is correct.
There’s a current topic running on this subject here:
https://formidablepro.com/help-desk/if-x-is-less-than-y/#frm_topic_168321. This would need to be done in the single.php template page using some custom php to check the custom field and display the form.
2. This can be done using simple hide/show javascript, but is not an out-of-the-box feature.
3. This can be done in the pro version using the dynamic default values.
4. A record of who emails are sent to is not kept by default, but could be added with a little custom code.
If you’d like further support, please log in and post in the FP help desk.
https://formidablepro.com/help-desk/Forum: Fixing WordPress
In reply to: Formidable PluginYou either have a javascript conflict, or you’re only running the free version while expecting the pro features. If you are a pro user, please log in and post in the Formidable pro help desk.
https://formidablepro.com/help-desk/Yes this is possible if the field is set to be conditionally hidden. Please post in the help desk with any further questions:
https://formidablepro.com/help-desk/This is from the FAQ page found at https://formidablepro.com/formidable-faqs/
Your form may have expanded past the point your current server configuration allows. You will need to increase the post_max_size in your php.ini. If you’re not sure where to find this file, please contact your webhost for help.
Forum: Plugins
In reply to: Formidable Form Notification Options not ShowingSounds like a javascript error. Please go through each plugin (and most likely your theme), and deactivate each one until you find the issue. The most common issue occurs when a theme or plugin calls jQuery incorrectly. You can find details on the correct way to include javascript in WordPress at https://codex.www.ads-software.com/Function_Reference/wp_enqueue_script
This is an issue with your server or an general WordPress problem. Please take a look at other suggestions:
https://www.ads-software.com/support/topic/plugin-install-stuck-at-unpacking-the-package?replies=11
https://www.ads-software.com/support/topic/plugin-upgrade-issue-stops-at-unpacking?replies=4Forum: Fixing WordPress
In reply to: Authors page for custom post typeI wanted the custom post type to show up on the regular author page. Here’s what I came up with in case anyone else is looking:
add_filter('posts_where', 'include_for_author'); function include_for_author($where){ if(is_author()) $where = str_replace(".post_type = 'post'", ".post_type in ('post', 'my_custom_post_type')", $where); return $where; }
I think the issue is on line 118 of terms-of-use2/classes/helpers/TouAppHelper.php
Try changing this:
<label for=”terms” class=”checkbox”><?php echo $agreement_text ?></label>to this:
<label for=”terms” class=”checkbox”><?php echo stripslashes($agreement_text) ?></label>It would be appreciated if you could try this fix and post back if it worked for you. Thanks!
Naijaping is right. The free version definitely sends emails as it would be pretty close to useless without any email notifications since you don’t have the entry management options. This page is written for the Pro version, but the bottom includes a few steps to try if you are not receiving emails:
https://formidablepro.com/emailing-form-responses/This list can also be found on the FAQ page:
https://www.ads-software.com/extend/plugins/formidable/faq/This sounds like a styling conflict with your theme, but without a link to your form I can’t tell you exactly where the conflict is.