julieP
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
wpv-post-author not working in email notifications when post set to expire
Started by: julieP
in: Toolset Professional Support
Problem: I would like to add the post author's first name to an email notification, but the wpv-post-author shortcode doesn't behave consistently. Solution: Add the post ID placeholder for more specificity: [wpv-post-author format="meta" meta="first_name" id="%%POST_ID%%"] Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
Email Notifications & Post Status ‘Private’
Started by: julieP
in: Toolset Professional Support
Problem: I have a post with status Private, the edit form is set to change the status to Pending & send the post author an email but the email isn't being sent (my SMTP error log returns SMTP ERROR: QUIT command failed: 354). If I change the post status to Publish, Draft or Pending, the email is sent when the edit form is submitted. Is this expected behaviour? Solution: According to our document: The expiration email notifications will be sent according to your form setting: "before the automatic expiration date" See screenshot: So even the post is in "Private" status, the email will be send after the time setting. Relevant Documentation: |
3 | 8 | 6 years, 4 months ago | ||
Updating Expiry Date on One Post With Expiry Date of A Related Post
Started by: julieP
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | 6 years, 4 months ago | ||
‘bcc’ field in email notifications isn’t behaving as as ‘blind copy’ field
Started by: julieP
in: Toolset Professional Support
Problem: When I receive emails from automatic notifications, I am able to see the BCC email addresses that were added to the notification. It should not be possible to see these email addresses. Solution: If the account used to as the "from" address is linked to the email recipient in any way, it may be possible to see the BCC address. In this case, I suspect the SMTP plugin used to send the mails is connected to an account that is connected to the email recipient somehow. Therefore, Gmail knows that the recipient is also the author, and shows the BCC information. |
2 | 5 | 6 years, 4 months ago | ||
Image Upload Size Validation Not Working
Started by: julieP in: Toolset Professional Support |
3 | 12 | 6 years, 4 months ago | ||
CRED/form emails to author all going to the one/the same author!
Started by: julieP
in: Toolset Professional Support
Problem: I have email notifications set to be sent to the post author. When multiple emails are sent at the same time, the emails are sent to the wrong author. Solution: Update to the latest version of Forms. |
2 | 13 | 6 years, 4 months ago | ||
How do I populate a custom user field with user data on registration?
Started by: julieP
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
wpv-conditional shortcode using custom user field not working
1
2
Started by: julieP in: Toolset Professional Support |
2 | 22 | 6 years, 4 months ago | ||
Links in the forum
Started by: julieP in: Toolset Professional Support |
3 | 7 | 6 years, 4 months ago | ||
Unhide hidden link please?
Started by: julieP in: Toolset Professional Support |
1 | 2 | 6 years, 5 months ago | ||
Custom Field Group Deactivation
Started by: julieP
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know why there was a deactivation option for the field groups. Solution: |
2 | 3 | 6 years, 5 months ago | ||
Enforce strong passwords
Started by: julieP
in: Toolset Professional Support
Problem: The issue here is that the customer wanted to enforce a strong password on users who are registering for their site. A feature request to implement these strength meters has been submitted to our developers. |
2 | 5 | 6 years, 5 months ago | ||
Login Form Field Label Text
Started by: julieP
in: Toolset Professional Support
Problem: The issue here is that the user created a manual login form <form name="loginform" id="loginform" action="https://mydomain.com/wp-login.php" method="post"> <div class="wp-success"></div> <p class="login-username"> <label for="user_login">Your Email Address</label> <input type="text" name="log" id="user_login" class="input" value="" size="20" /> </p> <p class="login-password"> <label for="user_pass">Your Password</label> <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" /> </p> <p class="login-submit"> <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="Log In" /> <input type="hidden" name="redirect_to" value="https://mydomain.com/my-account/" /> </p> <input type="hidden" name="wpv_login_form" value="on"/><input type="hidden" name="wpv_login_form_redirect_on_fail" value="https://mydomain.com/incorrect-password/" /> </form> They wanted to know if this code was safe to use. Solution: Yes this is ok, the authentications are handled by the wordpress api itself so the form just serves as an interface to that API. There shouldn't be any security issues. |
2 | 3 | 6 years, 5 months ago | ||
Image Size Validation for Multiple Images on Form
Started by: julieP
in: Toolset Professional Support
Problem: The issue here is that the user wanted to Validate the image field sizes. Solution: The correct solution for this can be seen below. add_action('cred_form_ajax_upload_validate', 'toolset_max_img_size_restriction_521_529_528',10,2); function toolset_max_img_size_restriction_521_529_528($error_fields, $form_data) { $forms = array( 521,529,528 ); // Field data are field values and errors list($fields,$errors)=$error_fields; if (in_array($form_data['id'], $forms ) && isset($_FILES['wpcf-image-1']['tmp_name']) ) { $target_max_width = 300; $target_max_height = 300; $check = getimagesize( $_FILES['wpcf-image-1']['tmp_name'] ); if ( $check !== false ) { // check the dimensions only, independent of the orientation. // if the height is greater than the width, switch the values for comparison. $width = ($check[0] >= $check[1]) ? $check[0] : $check[1]; $height = ($check[1] < $check[0]) ? $check[1] : $check[0]; if ( $width > $target_max_width || $height > $target_max_height ) { $errors['image-1'] = __("Your image exceeds the permissible dimensions. Please resize and try again."); } } } $field_data = array($fields,$errors); //return result return $field_data; } |
2 | 3 | 6 years, 5 months ago | ||
Temporary patch for backslashed quotes (JS content) & Forms version 2.0.2.2?
Started by: julieP
in: Toolset Professional Support
Problem: Can the temporary patch for Forms be applied to 2.0.2.2? Solution: Yes, the patch can be applied to Forms 2.0.2.2. |
2 | 4 | 6 years, 5 months ago |