Tim Elliott
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 |
---|---|---|---|---|---|
CRED create new child post with parent set automatically.
Started by: Tim Elliott
in: Toolset Professional Support
Problem: For example: [cred_generic_field field='_wpcf_belongs_home_id' type='hidden' class='' urlparam=''] { "required":0, "validate_format":0, "persist":1, "default":"[wpv-post-id]" } [/cred_generic_field] You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | 6 years, 7 months ago | ||
Follow up to “Membership to allow access to front-end editing of specific posts”
Started by: Tim Elliott
in: Toolset Professional Support
Problem: I am using Toolset form and CRED commerce plugins, if the customer fails to complete checkout, instead of changing the post status to "Pending" or "Draft" it just changes the free-premium field to free? Solution: I suggest you try this: 1) In your CRED form, but don't display "free-premium" field, so when user submit the CRED form, it won't change the value of "free-premium" field. 2) After the users submit the CRED form and complete the Woocommerce order, use the CRED commerce action hook "cred_commerce_after_order_completed" to trigger a custom PHP function, in this function, update the "free-premium" field to what you want. See the codes provided by client: Relevant Documentation: Action to be executed after WooCommerce order status is set to completed. |
2 | 4 | 6 years, 7 months ago | ||
Membership to allow access to front-end editing of specific posts.
Started by: Tim Elliott in: Toolset Professional Support |
2 | 3 | 6 years, 7 months ago | ||
View content overlays my spinner overlay
Started by: Tim Elliott in: Toolset Professional Support |
2 | 4 | 6 years, 8 months ago | ||
Designating a post as featured within a category
Started by: Tim Elliott in: Toolset Professional Support |
2 | 6 | 6 years, 9 months ago | ||
Custom Taxonomy functionality not working
Started by: Tim Elliott
in: Toolset Professional Support
Problem: The issue here is that the user is unable to edit his custom taxonomy created in Types. Solution: Normally issues like these are caused by either a plugin/theme conflict or the server is using an outdated version of PHP. First I would recommend that you temporarily disable all the non-toolset plugins and try again. If that doesn't work please ensure that your server is running at least php 7 |
2 | 8 | 6 years, 9 months ago | ||
[Potential bug report] post relationships
Started by: Tim Elliott in: Toolset Professional Support |
2 | 15 | 6 years, 10 months ago | ||
[wpv-add-to-cart-message] doesn't always display messages immediately
Started by: Tim Elliott in: Toolset Professional Support |
2 | 6 | 6 years, 10 months ago | ||
User meta is not displaying any output
Started by: Tim Elliott in: Toolset Professional Support |
2 | 7 | 6 years, 11 months ago | ||
Converting a timestamp to date and time
Started by: Tim Elliott
in: Toolset Professional Support
Problem: Solution: // Add Shortcode function convert_date( $atts ) { // Attributes $atts = shortcode_atts( array( 'timestamp' => '', ), $atts ); $date = Date('F j, Y, g:i a',$atts['timestamp']); return $date; } add_shortcode( 'convert_date', 'convert_date' ); Then pass the other shortcode into it link this [convert_date timestamp="[wpv-post-field name='we_startdate']"] |
3 | 4 | 7 years ago |