SteffenM1628
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 |
---|---|---|---|---|---|
E-Mail Alert
1
2
…
4
5
Started by: SteffenM1628
in: Toolset Professional Support
Problem: The issue here is that the user wanted his users to be able to subscribe to a notification type. Lets say the user has a Job type and wants to notify user when they subscribe to a notification of a particular job type. Solution: This can be done by creating a secondary CPT for the notifications where the user can create the notification type they want for a job. So on this notification cpt it should have attributes from the Jobs CPT that can be used to match a notification for a Job type. The notification CPT must also have an email field. Then you can use this code below to send an email to a notification post based on a matching custom field criteria. //Job Alarm function add_action('cred_submit_complete', 'my_success_action',10,2); function my_success_action($post_id, $form_data) { if ( $form_data['id'] == 67) { $job_type = get_post_meta($post_id, 'wpcf-position-normal',true); $job_stelle = (types_render_field( 'stelle-ist-geeignet-fur', array( 'id' => ''.$post_id.'') )); $notifications = get_posts('post_type=job-alarm'); foreach ($notifications as $notification) { $email = get_post_meta($notification->ID, 'wpcf-e-mail', true); $notification_type = get_post_meta($notification->ID, 'wpcf-position-alarm',true); $notification_stelle = (types_render_field( 'stelle-ist-geeignet-fur-alarm', array( 'id' => ''.$notification->ID.'') )); if ( $job_type == $notification_type && count(array_intersect(explode(",",$job_stelle), explode(",",$notification_stelle))) > 0) { wp_mail($email, 'Dein Job Alarm: '.get_the_title($post_id), get_permalink($post_id)."HTML CODE CAN GO HERE"); } } } } |
2 | 63 | 6 years, 2 months ago | ||
Custom url attribute
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | 6 years, 2 months ago | ||
Display total count visit for post or count views of post
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Solution: You can use available plugins. You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 4 | 6 years, 3 months ago | ||
Chart js and Custom fields
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Solution: You should try to add your script code within the content template rather adding it to JS box. You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 11 | 6 years, 3 months ago | ||
hide a ctp for to current user
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 4 | 6 years, 3 months ago | ||
hide Map
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 6 | 6 years, 3 months ago | ||
Split: Using bootsrap style for the toolset forms on frontend
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Use CSS codes to style the HTML table border in Astra theme. Solution: It needs custom CSS codes, see the solution here: Relevant Documentation: |
2 | 5 | 6 years, 3 months ago | ||
Using bootsrap style for the toolset forms on frontend
Started by: SteffenM1628
in: Toolset Professional Support
Problem: In the Toolset form, display the taxonomy field as select field. Solution: Please edit the taxonomies field shortcode, setup attributes display='select' and single_select='true', like this: [cred_field field='category' output='bootstrap' display='select' single_select='true'] Relevant Documentation: https://toolset.com/documentation/user-guides/cred-shortcodes/#cred_field |
2 | 7 | 6 years, 3 months ago | ||
Dropdown multi select field
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Solution: |
2 | 10 | 6 years, 3 months ago | ||
Split: Request for a CRED action hook triggered once a post expiration is completed
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 2 | 6 years, 3 months ago | ||
Show a Button only current User/Author
Started by: SteffenM1628
in: Toolset Professional Support
Problem: The issue here is that the user wanted to show a button to the user who is the author of the post they are viewing. Solution: What you can do is to use our conditional shortcode to do this. This should get you your desired results. [wpv-conditional if="( '[wpv-current-user]' eq '[wpv-post-author]' )"] Button code goes here [/wpv-conditional] |
2 | 6 | 6 years, 3 months ago | ||
Automatic post delete
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 12 | 6 years, 3 months ago | ||
Repeatable Groups
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 2 | 6 years, 3 months ago | ||
Split: edit delete – cpt by another user – Will this be able with relationships?
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 3 | 6 years, 3 months ago | ||
edit delete – cpt by another user
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 5 | 6 years, 3 months ago |