chrisH-10
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Content in Views Archive Loop Editor does not appear in front end since Views 3
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
1 | 2 | vor 3 Jahre, 9 Monate | |
I would like to paginate through detail pages of search results
Gestartet von: chrisH-10
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case with the following reply: Relevant Documentation: |
|
2 | 7 | vor 3 Jahre, 9 Monate | |
Invalid site key for the current site.
Gestartet von: chrisH-10 in: Chat Support |
|
1 | 2 | vor 3 Jahre, 10 Monate | |
Unable to update Views/Types. Returns error "Update package not available. ()"
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 2 | vor 3 Jahre, 11 Monate | |
Content outside of wpv-loop-start not displaying
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 3 | vor 4 Jahre, 2 Monate | |
Automatically adding custom fields to REST API
Gestartet von: chrisH-10
in: Toolset Professional Support
Problem: Once I set up the Custom Post Type to be exposed via the REST API I expect the associated Post Field Group fields to be exposed as well Solution: The client have been found a workaround with another plugin "WP REST API Controller": https://wordpress.org/plugins/wp-rest-api-controller/ Relevant Documentation: |
|
3 | 6 | vor 4 Jahre, 8 Monate | |
Template layout changes incorrectly
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 3 | vor 4 Jahre, 8 Monate | |
When combined with criteria items missing from control-post-taxonomy as select
Gestartet von: chrisH-10
in: Toolset Professional Support
Problem: The issue here is that the user has items missing from their filter dropdown. Solution: |
|
2 | 3 | vor 4 Jahre, 11 Monate | |
Views driven D rendering messed up when upgrading plugins
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 3 | vor 5 Jahre, 1 Monat | |
Woocommerce "My Account" screens blank
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 5 | vor 5 Jahre, 2 Monate | |
layouts editor not loading after migration
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 3 | vor 5 Jahre, 3 Monate | |
WooCommerce Views is installed, but I am getting a message that it's not
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 9 | vor 5 Jahre, 3 Monate | |
CRED: Create new related post while on parent editing page
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 14 | vor 5 Jahre, 4 Monate | |
Create a link to a page that embeds a content edit form
Gestartet von: chrisH-10 in: Toolset Professional Support |
|
2 | 5 | vor 5 Jahre, 6 Monate | |
Set publish date of post
Gestartet von: chrisH-10
in: Toolset Professional Support
Problem: I would like to set the publish date and time of a post within the CRED Form used to create that post. Solution: There's no post publish date field built into CRED, so this will require some custom code and a generic field. Add a generic date field to your CRED form, then add this code to functions.php: add_action('cred_save_data', 'set_post_date_to', 100, 3); function set_post_date_to($post_id, $form_data) { if( $form_data['id'] == 12345 ) { $newDate = $_POST['set-new-date']['datetime'] . ' 00:00:00'; $my_post = array( 'ID' => $post_id, 'post_date' => $newDate, 'post_date_gmt' => $newDate, 'post_status' => 'future' ); // Update the post into the database wp_update_post( $my_post ); } } - Change the form id 12345 to match your form. Relevant Documentation: |
|
2 | 5 | vor 5 Jahre, 6 Monate |