tinaH
Support threads created in the last 30 days: 0
Favorite Forum Topics
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Problem with nested conditionals
Started by: simon in: Toolset Professional Support |
2 | 7 | 7 years, 5 months ago |
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Search field is cleared on ajax auto pagination
Started by: tinaH in: Toolset Professional Support |
2 | 3 | 4 years, 7 months ago | ||
Widget area only visible to Administrator
Started by: tinaH in: Toolset Professional Support |
2 | 12 | 4 years, 7 months ago | ||
No results at first, Google Like Search
Started by: tinaH
in: Toolset Professional Support
Problem: Solution: |
3 | 5 | 6 years, 4 months ago | ||
Search with multiple keywords
Started by: tinaH
in: Toolset Professional Support
Problem: Solution: This is not related to the Relevanssi - Toolset integration. |
2 | 5 | 6 years, 4 months ago | ||
Layouts 2.1 destroys my page design
Started by: tinaH in: Toolset Professional Support |
3 | 11 | 6 years, 5 months ago | ||
Query filter on empty checkbox
Started by: tinaH in: Toolset Professional Support |
2 | 4 | 6 years, 5 months ago | ||
Access Post ID in a CRED notification custom placeholder
Started by: tinaH
in: Toolset Professional Support
Problem: I would like to access the Post ID in the callback for a CRED email notification custom placeholder. Solution: // custom cred form placeholders function custom_generic_field_notification( $defaultPlaceHolders ) { $post_id = $defaultPlaceHolders['%%POST_ID%%']; //generate random mail id $random_mail_id = get_post_meta($post_id, 'random-mail-id', true); if (empty($random_mail_id)) { $random_mail_id = bm_ajax_generate_random_mail_id($post_id); update_post_meta($post_id, 'random-mail-id', $random_mail_id); } $random_mail_id = '?mid='.$random_mail_id; $newPlaceHolders = array( '%%mid%%' => $random_mail_id ); return array_merge($defaultPlaceHolders, $newPlaceHolders ); } add_filter('cred_subject_notification_codes', 'custom_generic_field_notification', 10, 1); add_filter('cred_body_notification_codes', 'custom_generic_field_notification', 10, 1); Relevant Documentation: |
2 | 3 | 6 years, 6 months ago | ||
Replacing existing email with ‘cred_notification_recipient’
Started by: tinaH
in: Toolset Professional Support
Problem: Solution: A minor tweak of her code was required to fix the issue, as outlined below. Relevant Documentation: |
2 | 3 | 6 years, 7 months ago | ||
Conditional based on author id from parent post not working
Started by: tinaH in: Toolset Professional Support |
2 | 15 | 6 years, 7 months ago | ||
Create a View with posts where the current user is the author
Started by: tinaH
in: Toolset Professional Support
Problem: Solution: Select posts with the author the same as the current logged in user. When you edit the View, you open the Query Filter "Add Filter" GUI and choose "Post Author", then "Post author is the same as the logged in user" This will query posts as created by the currently logged in user. Relevant Documentation: |
2 | 2 | 6 years, 8 months ago | ||
Filter items in post relationship fields on author = current user
Started by: tinaH
in: Toolset Professional Support
Problem: Solution: |
2 | 2 | 6 years, 8 months ago | ||
Problem with nested wpv-conditional causing infinite loop
Started by: tinaH in: Toolset Professional Support |
3 | 10 | 6 years, 9 months ago | ||
Add Media button not visible in CRED form
1
2
Started by: tinaH in: Toolset Professional Support |
4 | 28 | 6 years, 9 months ago | ||
Auto login user without system generated password
Started by: tinaH in: Toolset Professional Support |
2 | 8 | 6 years, 9 months ago | ||
Cred on error event
Started by: tinaH
in: Toolset Professional Support
Problem: Solution: jQuery(document).ready(function($){ $(".cred-form").submit(function(e){ e.preventDefault(e); $(".panel-group .collapse").collapse('show'); $(this).submit(); }); }); |
2 | 6 | 6 years, 9 months ago |