davidm-13
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
when I query taxonomies with with relevanssi only post title searched
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 10 | vor 6 Jahren, 2 Monaten | ||
views text search box returns Relevanssi search results on a separate page
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 15 | vor 6 Jahren, 3 Monaten | ||
restoring CrLf to text
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 9 | vor 6 Jahren, 3 Monaten | ||
display blank field if item in wpv-loop equals previous item
Gestartet von: 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 | vor 6 Jahren, 3 Monaten | ||
Using toolset_connect_posts function
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 6 | vor 6 Jahren, 3 Monaten | ||
recommended way to import posts with custom fields and taxonomy’s
Gestartet von: 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 | vor 6 Jahren, 3 Monaten | ||
display parent post with detailed listing of all its children
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 14 | vor 6 Jahren, 3 Monaten | ||
sort output from view by taxonomy fields
Gestartet von: 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 | vor 6 Jahren, 4 Monaten | ||
Displaying related child posts
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 2 | vor 6 Jahren, 4 Monaten | ||
export post id and title of custom posts in csv format
Gestartet von: davidm-13 in: Toolset Professional Support |
1 | 2 | vor 6 Jahren, 4 Monaten | ||
after editing with elementor page switches to layouts template for pages
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 8 | vor 6 Jahren, 5 Monaten | ||
The list of published Layouts has disappeared
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
passing parameters to wpv-view
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 5 Monaten | ||
retrieve custom post that contains the taxonomy
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 5 Monaten | ||
create view which can be reused to populate several dropdown lists
Gestartet von: davidm-13 in: Toolset Professional Support |
2 | 10 | vor 6 Jahren, 5 Monaten |