aaronM-9
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 |
---|---|---|---|---|---|
Fatal Error Displaying Post After Upgrade to Layouts 2.3 RC2
1
2
Iniciado por: aaronM-9 en: Toolset Professional Support |
4 | 18 | hace 6 años, 5 meses | ||
CRED Notification Not Sending from Edit User Form
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: There are some PHP warning when send submit the Toolset form for editing user with email notification settings: PHP Warning: array_key_exists(): The first argument should be either a string or an integer in /home/aaronmckeon/public_html/wp-content/plugins/cred-frontend-editor/library/toolset/cred/embedded/models/CRED_Fields_Types_Utils.php on line 30 Solution: It is fixed in the latest version of CRED beta plugin 2.0 RC, please update all Toolset plugins to the latest beta version and test again, you can download them here: https://toolset.com/account/downloads/ Choose channel: Beta Relevant Documentation: |
2 | 12 | hace 6 años, 6 meses | ||
Make Taxonomy Optional When in a Select Drop-Down
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: I would like to make a single select taxonomy field optional in my CRED form by inserting a placeholder option before the term options. Solution: There's not an option to do this in the GUI, but you could use some JavaScript to insert the placeholder option programmatically. Another ticket I worked on recently discussed this approach in some detail: |
2 | 5 | hace 6 años, 6 meses | ||
Site breaking when making featured image a custom size
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: The feature image shortcode [wpv-post-featured-image] does not work as expected. [wpv-post-featured-image size="custom" width="75" height="75" ...] Solution: You will need to use other beta version of Layouts plugin + CRED plugin, and the latest version of Views plugin is 2.6 RC-2, please try to install them in your website, and test again, you can download them here: Relevant Documentation: |
2 | 6 | hace 6 años, 6 meses | ||
Post Type Not Appearing in Form
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: One of my custom post types is not appearing in the CRED form builder. Solution: Be sure that the show_ui option is checked in the editor screen for this custom post type. Relevant Documentation: |
2 | 5 | hace 6 años, 6 meses | ||
Conditional Group Not Working
1
2
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 17 | hace 6 años, 6 meses | ||
Conditional code based on field value of a parent post type not working?
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 6 | hace 6 años, 6 meses | ||
Do hidden parent post type input fields need to be of the select type?
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: Change the CRED form parent select dropdown into a hidden field. Solution: there isn't such a built-in feature. as a workaround you can use a generic hidden field to replace the select dropdown field, for example: [cred_generic_field field='_wpcf_belongs_product-listing_id' type='hidden' class='' urlparam='productid'] { "required":0, "validate_format":0, "default":"0" } [/cred_generic_field] https://toolset.com/documentation/user-guides/cred-shortcodes/#cred_generic_field Then update the field value with CRED action hook "cred_save_data", for example: add_action('cred_save_data', 'my_save_data_action',10,2); function my_save_data_action($post_id, $form_data) { // if a specific form if ($form_data['id']==123) { if (isset($_POST['_wpcf_belongs_product-listing_id'])) { // add it to saved post meta update_post_meta($post_id, '_wpcf_belongs_product-listing_id', $_POST['_wpcf_belongs_product-listing_id'], true); } } } https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data |
2 | 4 | hace 6 años, 6 meses | ||
Make image preview in CRED Edit form thumbnail instead of full size
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: Solution: .js-wpt-credfile-preview img { max-width: 150px; } |
2 | 3 | hace 6 años, 6 meses | ||
CSS in Individual Layouts
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 7 | hace 6 años, 6 meses | ||
Hidden Field Not Hidden
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: I added the "hidden" class to a CRED checkboxes field but the checkboxes are shown in the form. Solution: Instead of adding the hidden class to the CRED field shortcode, wrap the shortcode in a div container and add the hidden class to the container. You can manage the display of the checkboxes by managing the display of the container. |
2 | 10 | hace 6 años, 6 meses | ||
Can I display just the state and country name from an address field?
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 4 | hace 6 años, 6 meses | ||
Featured Image Displaying Even Though Disabled
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: Solution: User has fixed the issue by adding simple CSS as described with the following reply: Relevant Documentation: |
2 | 5 | hace 6 años, 6 meses | ||
Cannot Add Address Field Type
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: The issue here is that the user is unable to add the address field type from his computer. Solution: In this case it turned out to be the user's browser and his antivirus. SO if you are experiencing this issue please ensure that your antivirus for your browser is disabled and try again. Alternatively you can try a different browser. |
2 | 13 | hace 6 años, 7 meses | ||
Allow Redirect to Specific Link or Custom Post Type
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: Solution: For example: add_filter('cred_success_redirect', 'custom_redirect',10,3); function custom_redirect($url, $post_id, $form_data) { if ($form_data['id']==12) { $url = 'http://www.google.com'; return $url; } } You can find proposed solution, in this case, with the following reply: Relevant Documentation: => https://toolset.com/documentation/programmer-reference/cred-api/#cred_success_redirect |
2 | 3 | hace 6 años, 7 meses |