Akhil
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 |
---|---|---|---|---|---|
Field Group set to appear to by taxonomy selection.
Iniciado por: Akhil en: Toolset Professional Support |
2 | 10 | hace 6 años, 5 meses | ||
post view counter – whats working ?
Iniciado por: Akhil en: Toolset Professional Support |
2 | 3 | hace 6 años, 5 meses | ||
Create Archives by Taxonomies selection .
Iniciado por: Akhil en: Toolset Professional Support |
2 | 10 | hace 6 años, 5 meses | ||
Display all fields
Iniciado por: Akhil en: Toolset Professional Support |
2 | 5 | hace 6 años, 5 meses | ||
Entry Date field
Iniciado por: Akhil en: Toolset Professional Support |
2 | 3 | hace 6 años, 5 meses | ||
output first level taxonomies only at view
Iniciado por: Akhil en: Toolset Professional Support |
2 | 3 | hace 6 años, 5 meses | ||
types termmeta
Iniciado por: Akhil en: Toolset Professional Support |
1 | 2 | hace 6 años, 5 meses | ||
option to disable m2m api ?
Iniciado por: Akhil
en: Toolset Professional Support
Problem: Solution: |
2 | 4 | hace 6 años, 5 meses | ||
Creating class for each multiple taxomonies field
Iniciado por: Akhil
en: Toolset Professional Support
Problem: Output term's link with customized CSS class name. Solution: you create another taxonomy view, list terms of taxonomy, filter by: In section "Loop Editor", display the term's link like this: ... <wpv-loop> <a href="[wpv-taxonomy-url]" class="cat_meta_[wpv-taxonomy-slug]">[wpv-taxonomy-title]</a> </wpv-loop> ... Use above view as child view of the post view you mentioned above. and test again. Relevant Documentation: |
2 | 4 | hace 6 años, 6 meses | ||
High autoload in database
Iniciado por: Akhil en: Toolset Professional Support |
2 | 4 | hace 6 años, 7 meses | ||
scripts merge
Iniciado por: Akhil en: Toolset Professional Support |
2 | 4 | hace 6 años, 7 meses | ||
Checkbox state as conditional in layout, filter.
Iniciado por: Akhil en: Toolset Professional Support |
2 | 10 | hace 6 años, 7 meses | ||
distance filter issue2
Iniciado por: Akhil en: Toolset Professional Support |
2 | 9 | hace 6 años, 7 meses | ||
Distance filter problem on archive page
Iniciado por: Akhil
en: Toolset Professional Support
Problem: I cannot get a distance filter to work on a WordPress Archive. Solution: The distance filter feature is not fully implemented in WordPress Archives. The best way to get around this is to create a View that behaves like your WordPress Archive, using Query Filters. Then insert the View in your WordPress Archive, outside the wpv-loop tags. Cut everything from inside the wpv-loop tags and paste it inside the View's wpv-loop tags. Remove all filters from the old WordPress Archive. |
2 | 10 | hace 6 años, 8 meses | ||
img srcset
Iniciado por: Akhil
en: Toolset Professional Support
Problem: Pls advice what are my options now. it seems toolset is generating the srcset . is there any custom code to disable the srcset for certain part ? this is the code: [wpv-conditional if="( $(wpcf-property-photo) ne '' )"] <div class="img2"> [types field='property-photo' width='200' height='150' size='thumbnail' align='none' resize='crop'][/types] </div> [/wpv-conditional] ps: 925.jpg is the img name this is the output: <div class="img2"> <img src="https://www.site/media/listings/landed-house/925-200x150.jpg" class="attachment-thumbnail" alt="" style="" title="" srcset="https://www.site/media/listings/landed-house/925-200x150.jpg 200w, https://www.site/media/listings/landed-house/925-400x300.jpg 400w, https://www.site/media/listings/landed-house/925-768x576.jpg 768w, https://www.site/media/listings/landed-house/925.jpg 800w" sizes="(max-width: 200px) 100vw, 200px" width="200" height="150"> </div> Solution: In your case, it is a custom image field, so you can display the image URL directly, for example: [wpv-conditional if="( $(wpcf-property-photo) ne '' )"] <div class="img2"> [wpv-for-each field="wpcf-property-photo"] <img src="[types field='property-photo' width='200' height='150' size='thumbnail' align='none' resize='crop' url="true"][/types] "> [/wpv-for-each] </div> [/wpv-conditional] Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-for-each Iterate through multiple items in a post meta field and output the enclosed text for each item. Including Types repeating fields. https://toolset.com/documentation/customizing-sites-using-php/functions/#image url: |
2 | 8 | hace 6 años, 8 meses |