Solution:
Content Templates modify the content when called from the WordPress’ built-in the_content function. Some themes do not use the_content function, but define their own function. In this case, Content Templates are not applied to selected posts on the front-end.
Problem:
The user has created an Elementor template for a custom post type, but it still does not work.
Solution:
It appears that the post was also assigned a content template. In order to display a post using an Elementor template, no content template should be assigned to that post.
Problem:
The user wants to add breadcrumbs into a Toolset content template.
Solution:
This is out of the scope of Toolset plugins. Check the following articles, they explain how to put a breadcrumbs menu inside a post with a shortcode. A content template is, actually, a custom post, so the same technique can be used on it too. These examples also show how to use custom PHP code to add the breadcrumbs to the default WordPress template, that may help too.
I have a custom user type called "technician", when creating a technician they are assigned a color using a color picker field. They are also assigned a device which I'm using an MDM solution to control, as well as to get the devices location. I'm then using a map view to plot out where each of the technicians are via the GPS coordinates from their device. The client has requested that the map pins be colored to match the color assigned to the technician.
Solution:
There isn't such kind of feature within Toolset Maps plugin: Change the marker icon color or in the hex spectrum.
Problem:
The user is using several combinations of conditions on custom fields, and wonders if there is any performance impact between nesting or combining conditions.
Solution:
You can nest the conditions to avoid long statements and to have much readable code. But from a performance perspective, I don't think there will be an impact between combining or nesting the conditions. Primarily, because the values will be cached in memory after they are first pulled from the database. And they won't be pulled again.
Nesting the conditions may gain a couple of instructions executions, but I don't think it will be considerable.
Problem:
Display Custom Media Field(Multi. instances) in a Specific Format with View to integrate lightslider
Solution:
When using the view to display the repeating field. To loop through the repeating field, you will require to use the shortcode [wpv-for-each].