poulP
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 |
---|---|---|---|---|---|
 is showing before currency sign (£), and how to change currency
Started by: poulP in: Toolset Professional Support |
2 | 3 | 3 years, 3 months ago | ||
How to get rid of base64 encoded style
Started by: poulP in: Toolset Professional Support |
2 | 3 | 3 years, 11 months ago | ||
Classic editor removes and from front-end forms textarea
Started by: poulP
in: Toolset Professional Support
Problem: In Toolset form settings under "content filter" I have ALLOWED "p" and "br" tag, but still can not save them into custom textarea field. Solution: It should be a compatibility issue, please check these: Relevant Documentation: |
2 | 3 | 4 years, 5 months ago | ||
Textarea in frontend forms don’t display if contains link (a tag)
Started by: poulP
in: Toolset Professional Support
Problem: In Toolset form settings under "content filter" I have ALLOWED a href tag, but still can not save HTML href tag in custom textarea field. Solution: It should be a compatibility issue, please check these: Relevant Documentation: |
2 | 3 | 4 years, 5 months ago | ||
How to avoid HTML entity get encoded in content template
Started by: poulP in: Toolset Professional Support |
2 | 5 | 4 years, 6 months ago | ||
Need to remover Jquery code in front-end
Started by: poulP in: Toolset Professional Support |
2 | 7 | 4 years, 6 months ago | ||
Sort view by numeric field dont work
Started by: poulP in: Toolset Professional Support |
2 | 6 | 5 years, 2 months ago | ||
Need to have max_width and/or max_height for cred image field
Started by: poulP in: Toolset Professional Support |
2 | 8 | 5 years, 2 months ago | ||
Can't prevent wpcf_ images to be auto generated
Started by: poulP in: Toolset Professional Support |
2 | 4 | 5 years, 2 months ago | ||
Need to give subscriber role the ability to edit images and their metadata
Started by: poulP in: Toolset Professional Support |
2 | 7 | 5 years, 3 months ago | ||
need help to get ID’s of gallery images for standard WP gallery
Started by: poulP
in: Toolset Professional Support
Problem: I would like to create a standard WordPress gallery using the gallery shortcode, and I would like to be able to provide a comma-separated list of image IDs. My images are stored as custom fields in a repeatable field group (RFG). Solution: Use Views to query the RFG and output a list with separators. Use a custom shortcode to output the image ID in the loop. Here's a shortcode that will return an image ID given a post ID and a field slug: [php] function wpt_get_img_id($atts) { global $post, $wpdb; $atts = shortcode_atts([ 'postid' => 0, 'fieldslug' => '', ], $atts); $postid = isset($atts['postid']) ? $atts['postid'] : $post->ID; $img = get_post_meta($postid, 'wpcf-' . $atts['fieldslug'], true); $query = "SELECT ID FROM {$wpdb->posts} WHERE guid='$img'"; $id = $wpdb->get_var($query); return $id; } add_shortcode("get_image_id", "wpt_get_img_id"); You would use it like this in a View: [get_image_id postid="[wpv-post-id]" fieldslug="my-image-field"] Relevant Documentation: |
2 | 7 | 5 years, 8 months ago | ||
404 error on travel reference site
Started by: poulP
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 10 months ago | ||
Unable to install reference site because server times out
Started by: poulP
in: Toolset Professional Support
Problem: I am trying to install a reference site on my server but I am shown an error indicating that my server times out. I have increased my server timeout configs, but I still see the error message. Solution: Ensure your host environment has max file upload size of 128M. |
3 | 6 | 6 years, 10 months ago |