Edward Barker
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 |
---|---|---|---|---|---|
Converting Date from Gravity Forms to Toolset
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 3 | hace 3 meses, 3 semanas | ||
Set search filter date picker default as text instead of a date
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 4 | hace 1 año, 5 meses | ||
Styling clicked radio buttons in CRED form
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 8 | hace 1 año, 10 meses | ||
Conditional Output based on [wpv-user field="user_registered"]
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 2 | hace 2 años, 8 meses | ||
Using AND and OR is a view filter
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 2 | hace 3 años, 8 meses | ||
Dynamically create vcard download from custom fields
Iniciado por: Edward Barker
en: Toolset Professional Support
Problem: Is possible to create downloadable vcard file with Toolset plugins? Solution: There isn't such kind of built-in feature within Toolset plugins, it needs custom codes, for example: https://stackoverflow.com/questions/51813817/export-vcard-from-js-and-open-in-contacts Relevant Documentation: |
2 | 7 | hace 3 años, 8 meses | ||
Populate custom field with post title
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 9 | hace 4 años, 4 meses | ||
Gravity Forms Checkboxes not pulling through to CRED edit form
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 2 | hace 4 años, 5 meses | ||
Searching by Post ID
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 2 | hace 5 años, 5 meses | ||
Best way to display posts from last 30 days
Iniciado por: Edward Barker
en: Toolset Professional Support
Problem: I'm just wondering whats the best way display posts that are created within the last 31 days, 182 days and 365 days. Solution: You can try custom PHP codes, for example: https://toolset.com/forums/topic/best-way-to-display-posts-from-last-30-days/#post-1206717 Relevant Documentation: |
2 | 7 | hace 5 años, 8 meses | ||
Display posts from last 30 days on custom date field
Iniciado por: Edward Barker
en: Toolset Professional Support
Problem: Setup filter on custom date field. Solution: For the custom date fields, it does not need custom PHP codes, you can follow our document to setup the date filters within GUI, for example: Relevant Documentation: |
2 | 5 | hace 5 años, 8 meses | ||
Gravity Forms Date Field Compatibility Issue
Iniciado por: Edward Barker
en: Toolset Professional Support
Problem: I am using a form created in Gravity Forms to create new posts. I would like to capture a date using a GF date field and store it in a Types date field, but the formats are incompatible. Solution: Add some custom code to functions.php or to a new custom code snippet in Toolset > Settings > Custom code: // convert gravity forms date field to types date format add_filter("gform_post_data", 'set_my_gravity_date', 10, 3); function set_my_gravity_date($post_data, $form, $entry ) { $form_id = 12345; $types_field_slug = 'types-field-slug'; $gf_field_id = 67890; // you should not edit below this line //check if this is the right form if ( isset($form['id']) && $form['id'] == $form_id ) { // add unix timestamp for date field in meta_input $post_data['meta_input']['wpcf-' . $types_field_slug] = strtotime(rgar($entry, $gf_field_id)); } return $post_data; } You should change 12345 to match the Gravity Form ID. You can find that in the form editor. You should change types-field-slug to match the slug of your custom date field. You can find that by editing the custom field in wp-admin. Then you should replace 67890 with the numeric ID of the Gravity Forms date field. You can find that in the GF form editor when you hover over the field. Then use the Types field shortcode to display the field with whatever format you want on the frontend of the site. Relevant Documentation: |
2 | 3 | hace 5 años, 9 meses | ||
Duplicate custom function for various roles.
Iniciado por: Edward Barker
en: Toolset Professional Support
Problem: Get users from multiple roles using PHP codes. Solution: It is a custom PHP codes problem, see solution here: https://toolset.com/forums/topic/duplicate-custom-function-for-various-roles/#post-1188720 Relevant Documentation: https://developer.wordpress.org/reference/functions/get_users/ |
2 | 3 | hace 5 años, 10 meses | ||
Star Rating System Using a Date Range
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 2 | hace 5 años, 11 meses | ||
Can wpv-heading be sorted as a value?
Iniciado por: Edward Barker en: Toolset Professional Support |
2 | 9 | hace 5 años, 11 meses |