fred-r.M
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 |
---|---|---|---|---|---|
How to show futures dates – each on one line?
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 3 | hace 3 años, 7 meses | ||
How to get the values of a date field?
Iniciado por: fred-r.M
en: Toolset Professional Support
Problem: I would like to get the values of a repeating date custom field, and output a custom data structure including the formatted dates. Solution: $post_id = 1234; $start_dates = get_post_meta($post_id, 'wpcf-start-tour-date', false); Note that the Types field slug includes a wpcf- prefix here. This will return an array of date values in Unix timestamp format. To get a single field value, like the number of tour nights, you can use get_post_meta again like so: $number_of_tour_nights = get_post_meta($post_id, 'wpcf-number-of-tour-nights, true); Once you have those values, you can loop over the repeating values and create your own array of information to output. You'll need a way to format dates based on Unix timestamps. You can use PHP's date function for this. For example, to format a date like 2021-08-31 from a Unix timestamp like 1630368000, you can use the date function like so: $timestamp = 1630368000; $formatted_date = date('Y-m-d', $timestamp); If you want to calculate a date in the future based on the start date and number of nights, you can use the number of seconds in a day (60 seconds per minute * 60 minutes per hour * 24 hours per day) in your PHP calculations, then format the end date: $start_date = 1630368000; $number_of_nights = 4; $end_date = $start_date + (60 * 60 * 24 * $number_of_nights); $formatted_end_date = date( 'Y-m-d', $end_date); Relevant Documentation: |
2 | 6 | hace 3 años, 9 meses | ||
Repeating date fields in calendar
Iniciado por: fred-r.M en: Chat Support |
1 | 2 |
hace 3 años, 9 meses
|
||
How to "connect" a post type (listing) with "super user" / member?
Iniciado por: fred-r.M en: Toolset Professional Support |
3 | 4 | hace 4 años, 1 mes | ||
How to translate "strings" in custom code?
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 15 | hace 4 años, 1 mes | ||
How to add a reCaptcha field in the expert mode?
Iniciado por: fred-r.M
en: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 3 | hace 4 años, 1 mes | ||
Showing post titles as select dropdown in views search form
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 11 | hace 4 años, 2 meses | ||
those reviews not showing "automatically" respectively after publishing the review on the tour
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 10 | hace 4 años, 5 meses | ||
I just need to do some design stuff
Iniciado por: fred-r.M
en: Toolset Professional Support
Problem: on each tour post, and showing only those related review posts. Solution: The reference field is based on one-to-many relationship, so in a single "cycling-tour" post, you can create a post view: - Query reviews posts - Filter by post relationship between "cycling-tour" and "reviews", the relationship name is same as your custom reference field. - In view's loop, display the "reviews" post information Relevant Documentation: |
2 | 13 | hace 4 años, 5 meses | ||
I have a cred form and like to have in a select field other CPT title and post i
Iniciado por: fred-r.M
en: Toolset Professional Support
Problem: In a CRED form I have a select field, where I like to have title and post id populated from another CPT we have. Solution: You just need to setup a reference field. Then put above reference field into your post form, it should be able to display as a select field, Relevant Documentation: |
3 | 7 | hace 4 años, 6 meses | ||
How to code and get field value from a category
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 5 | hace 4 años, 6 meses | ||
Custom fields not showing in the custom post type
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 3 | hace 4 años, 6 meses | ||
How to php code to get a specific field
Iniciado por: fred-r.M en: Toolset Professional Support |
3 | 7 | hace 4 años, 11 meses | ||
We like to have an image slider, and need the best approach
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 5 | hace 5 años | ||
If a user choose a category or anything in the search form, it not shows correct
1
2
Iniciado por: fred-r.M en: Toolset Professional Support |
2 | 23 | hace 5 años, 1 mes |