davidm-13
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é |
---|---|---|---|---|---|
when I query taxonomies with with relevanssi only post title searched
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 10 | Il y a 6 années et 3 mois | ||
views text search box returns Relevanssi search results on a separate page
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 15 | Il y a 6 années et 3 mois | ||
restoring CrLf to text
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 9 | Il y a 6 années et 4 mois | ||
display blank field if item in wpv-loop equals previous item
Commencé par : davidm-13
in: Toolset Professional Support
Problem: I have a table-style View that displays several columns of custom field values. I would like to use a conditional that hides the value in a specific column if the value is identical to the same column in a previous row. Solution: When the loop is rendered, each iteration has no reference to a previous or future iteration. That means it's not possible to set up a conditional that compares a value from one iteration to a value in another iteration. Instead, you would have to do this with custom CSS and JavaScript. For example, add a custom class to each system-cf cell, and a wrapper span tag like this: <td class="only-first-system-cf"><span>[wpv-post-field name="wpcf-system-cf"]</span></td> Then in your custom CSS: .only-first-system-cf > span { display:none; } .only-first-system-cf.first > span { display:inline; } Then in your custom JS: jQuery(document).ready(function(){ var firsts = []; var txt = ''; jQuery('.only-first-system-cf').each(function(index, item) { txt = jQuery(item).text(); if(firsts.indexOf(txt) == -1){ firsts.push(txt); jQuery(item).addClass('first'); } }); }); Relevant Documentation: |
2 | 3 | Il y a 6 années et 4 mois | ||
Using toolset_connect_posts function
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 6 | Il y a 6 années et 4 mois | ||
recommended way to import posts with custom fields and taxonomy’s
Commencé par : davidm-13
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | Il y a 6 années et 4 mois | ||
display parent post with detailed listing of all its children
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 14 | Il y a 6 années et 4 mois | ||
sort output from view by taxonomy fields
Commencé par : davidm-13
in: Toolset Professional Support
Problem: I need the posts to be sorted by field A within field B. The problem is that both field A and B are taxonomies. Is there a recommended workaround to achieve this? Solution: There isn't such a built-in feature to convert term fields to post fields, in your case, the post fields is required to sort the view's result. So you might need to consider custom codes, for example: https://toolset.com/forums/topic/sort-output-from-view-by-taxonomy-fields/#post-1096668 Relevant Documentation: |
2 | 4 | Il y a 6 années et 4 mois | ||
Displaying related child posts
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 2 | Il y a 6 années et 4 mois | ||
export post id and title of custom posts in csv format
Commencé par : davidm-13 in: Toolset Professional Support |
1 | 2 | Il y a 6 années et 5 mois | ||
after editing with elementor page switches to layouts template for pages
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 8 | Il y a 6 années et 5 mois | ||
The list of published Layouts has disappeared
Commencé par : davidm-13
in: Toolset Professional Support
Problem: The list of Layouts has disappeared from Toolset > Layouts. Solution: Clear cache and cookies, log out and log back in. If any Layouts are missing, find their IDs and edit them manually in wp-admin by accessing this URL: |
3 | 7 | Il y a 6 années et 6 mois | ||
passing parameters to wpv-view
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 6 mois | ||
retrieve custom post that contains the taxonomy
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 6 mois | ||
create view which can be reused to populate several dropdown lists
Commencé par : davidm-13 in: Toolset Professional Support |
2 | 10 | Il y a 6 années et 6 mois |