PiotrO586
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 |
---|---|---|---|---|---|
Errors caused by last update
Iniciado por: PiotrO586
en: Toolset Professional Support
Problem: Solution: |
3 | 8 | hace 3 años, 8 meses | ||
Convert classic content to blocks
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 9 | hace 3 años, 9 meses | ||
views_woo_price is not updated for new products
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 3 | hace 4 años, 9 meses | ||
Posts Groups names
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 6 | hace 4 años, 11 meses | ||
Submitting/editing content with CRED when layout is assigned to display CTP
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 5 | hace 5 años | ||
Access and read permissions for Posts Groups
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 2 | hace 5 años | ||
There has been a critical error on your website
Iniciado por: PiotrO586 en: Toolset Professional Support |
3 | 7 | hace 5 años | ||
Nesting taxonomies
Iniciado por: PiotrO586
en: Toolset Professional Support
Problem: I have two custom taxonomies, TaxA and TaxB. I would like to create a filtered list of posts organized by taxonomy term in a nested format where TaxA is the top-level structure, with all TaxB terms nested inside each TaxA term, and filtered posts displayed beneath TaxB terms. Solution: Use a series of nested Views filtered by shortcode attributes. Relevant Documentation: |
2 | 5 | hace 5 años, 2 meses | ||
Plugins update issue
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 3 | hace 5 años, 8 meses | ||
Sortable first and last name columns in a view
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 3 | hace 5 años, 9 meses | ||
Forms content replaced after plugin update
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 2 | hace 5 años, 9 meses | ||
Creating posts in multiple languages via frontend
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 4 | hace 5 años, 9 meses | ||
Adding new child post doesn’t assign parent, while editing child post does
Iniciado por: PiotrO586
en: Toolset Professional Support
Problem: It seems that a new Child Form on the parent post page does not properly assign the parent post. The parent appears to be selected, but not saved. Solution: There is currently a known issue where new child post forms displayed on a page with a Layout are not assigning parents correctly. The following code snippet will work around the issue until a fix is ready: add_action('cred_save_data', 'toolset_fix_layout_relationship_bug',10,2); function toolset_fix_layout_relationship_bug($post_id, $form_data) { // one array for each form $hash = array( array( 'id' => 282, 'slugs' => array('profile-service'), ), ); // closure to find the matching array hash item and slug $find = function( $var ) use ($form_data) { $el = ($var['id']==$form_data['id']); return $el; }; // create an array of form IDs where you want to apply this code $forms = array_column( $hash, 'id' ); if ( in_array( $form_data['id'], $forms ) ) { // find the slug array in the matching hash item and use it to connect the parent post $thisHash = array_filter( $hash, $find ); $slugs = $thisHash[array_keys($thisHash)[0]]['slugs']; foreach( $slugs as $slug ) { $parent_id = $_POST['@' . $slug . '_parent']; $parent = toolset_connect_posts( $slug, $parent_id, $post_id ); } } } |
2 | 7 | hace 5 años, 11 meses | ||
Password being included for translation
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 4 | hace 5 años, 12 meses | ||
Strong passwords issue
Iniciado por: PiotrO586 en: Toolset Professional Support |
2 | 2 | hace 5 años, 12 meses |