Charlie
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 |
---|---|---|---|---|---|
Filtering View by Taxomomy: Fileter set by page where the view is inserted
Started by: Charlie in: Toolset Professional Support |
2 | 6 | 2 years, 8 months ago | ||
Cannot re-order repeatable fields in form using mobile (touch screen) devices
Started by: Charlie in: Toolset Professional Support |
2 | 2 | 2 years, 11 months ago | ||
Toolset Access conflicts with Oxygen Builder menu element when not logged in
Started by: Charlie in: Toolset Professional Support |
2 | 7 | 3 years, 1 month ago | ||
Further to earlier support ticket
Started by: Charlie in: Toolset Professional Support |
2 | 5 | 6 years, 7 months ago | ||
Annoying Toolset Nag on Plugins Page
Started by: Charlie
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 7 months ago | ||
CRED Post Expiration – how to set using a function
Started by: Charlie
in: Toolset Professional Support
Problem: I would like to set the CRED post expiration date using code, and I would like to be able to turn the automatic expiration checkbox on or off programmatically as well. Solution: You can modify a post's automatic expiration date by setting the value of the hidden postmeta field "_cred_post_expiration_date". If you remove the postmeta field, the checkbox is unchecked. If you add the postmeta field, the checkbox is checked. There is no separate field to store checkbox on vs. checkbox off. |
2 | 7 | 6 years, 7 months ago | ||
CRED checkbox labels display with added br tags
Started by: Charlie
in: Toolset Professional Support
Problem: CRED checkbox labels are being rendered with added br tags in the markup. Solution: Deactivate the Responsive Grid Shortcode plugin. |
2 | 3 | 6 years, 7 months ago | ||
Woocommerce ‘ is featured product ‘ as conditional output
Started by: Charlie
in: Toolset Professional Support
Problem: Solution: // Add Shortcode function featured_product( $atts ) { // Attributes $atts = shortcode_atts( array( 'product_id' => '', ), $atts ); $product = wc_get_product($atts['product_id']); return $product->is_featured(); } add_shortcode( 'featured_product', 'featured_product' ); Add it to your functions.php file and you can use it by doing this [featured_product product_id='[wpv-post-id]'] and it will return 1 or 0 if the product is featured or not. Just add featured_product to the 3rd party shortcode arguments for this to work in our views conditionals. |
2 | 4 | 6 years, 8 months ago | ||
Woocommerce + CRED : adding a featured product with a CRED
Started by: Charlie
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 8 months ago |