PiotrO586
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Errors caused by last update
Commencé par : PiotrO586
in: Toolset Professional Support
Problem: Solution: |
3 | 8 | Il y a 3 années et 8 mois | ||
Convert classic content to blocks
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 9 | Il y a 3 années et 9 mois | ||
views_woo_price is not updated for new products
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 3 | Il y a 4 années et 9 mois | ||
Posts Groups names
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 6 | Il y a 4 années et 11 mois | ||
Submitting/editing content with CRED when layout is assigned to display CTP
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 5 | Il y a 5 années | ||
Access and read permissions for Posts Groups
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 2 | Il y a 5 années | ||
There has been a critical error on your website
Commencé par : PiotrO586 in: Toolset Professional Support |
3 | 7 | Il y a 5 années | ||
Nesting taxonomies
Commencé par : PiotrO586
in: 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 | Il y a 5 années et 2 mois | ||
Plugins update issue
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 3 | Il y a 5 années et 8 mois | ||
Sortable first and last name columns in a view
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 3 | Il y a 5 années et 9 mois | ||
Forms content replaced after plugin update
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 2 | Il y a 5 années et 9 mois | ||
Creating posts in multiple languages via frontend
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 4 | Il y a 5 années et 9 mois | ||
Adding new child post doesn’t assign parent, while editing child post does
Commencé par : PiotrO586
in: 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 | Il y a 5 années et 11 mois | ||
Password being included for translation
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 4 | Il y a 5 années et 12 mois | ||
Strong passwords issue
Commencé par : PiotrO586 in: Toolset Professional Support |
2 | 2 | Il y a 5 années et 12 mois |