SteffenM1628
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Css Problems with registration form
Iniciado por: SteffenM1628
en: Toolset Professional Support
Problem: Style Toolset form fields, add custom CSS style to Toolset user form fields. Solution: You can follow our document to style Toolset forms: Relevant Documentation: https://toolset.com/documentation/user-guides/styling-cred-forms/ |
2 | 9 | hace 6 años, 2 meses | ||
User Registration – Confirmation Email
Iniciado por: SteffenM1628
en: Toolset Professional Support
Problem: But i do not find in the email notification a way that the new registered user has to confirm his registration in an email link. Solution: The client has found another plugin, see detail here: https://toolset.com/forums/topic/user-registration-confirmation-email/#post-1133731 Relevant Documentation: |
2 | 5 | hace 6 años, 2 meses | ||
relationship form in a custom template
Iniciado por: SteffenM1628 en: Toolset Professional Support |
2 | 6 | hace 6 años, 3 meses | ||
E-Mail Alert
1
2
…
4
5
Iniciado por: SteffenM1628
en: 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 | hace 6 años, 3 meses | ||
Custom url attribute
Iniciado por: SteffenM1628
en: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | hace 6 años, 3 meses | ||
Display total count visit for post or count views of post
Iniciado por: SteffenM1628
en: 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 | hace 6 años, 4 meses | ||
Chart js and Custom fields
Iniciado por: SteffenM1628
en: 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 | hace 6 años, 4 meses | ||
hide a ctp for to current user
Iniciado por: SteffenM1628 en: Toolset Professional Support |
2 | 4 | hace 6 años, 4 meses | ||
hide Map
Iniciado por: SteffenM1628 en: Toolset Professional Support |
2 | 6 | hace 6 años, 4 meses | ||
Split: Using bootsrap style for the toolset forms on frontend
Iniciado por: SteffenM1628
en: 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 | hace 6 años, 4 meses | ||
Using bootsrap style for the toolset forms on frontend
Iniciado por: SteffenM1628
en: 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 | hace 6 años, 4 meses | ||
Dropdown multi select field
Iniciado por: SteffenM1628
en: Toolset Professional Support
Problem: Solution: |
2 | 10 | hace 6 años, 4 meses | ||
Split: Request for a CRED action hook triggered once a post expiration is completed
Iniciado por: SteffenM1628 en: Toolset Professional Support |
2 | 2 | hace 6 años, 4 meses | ||
Show a Button only current User/Author
Iniciado por: SteffenM1628
en: 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 | hace 6 años, 4 meses | ||
Automatic post delete
Iniciado por: SteffenM1628 en: Toolset Professional Support |
2 | 12 | hace 6 años, 4 meses |