Problem:
Client is creating a table-like View, but the table headers are getting repeated with every row.
Solution:
The markup for the table has all been added between the wpv-loop tags in the Loop Output section. Content between these tags is output for every iteration of the loop (i.e. once for every post output by the View).
The table header markup needs moving before the opening wpv-loop tag, but still after the wpv-items-found opening shortcode.
Using the Loop Wizard and choosing table output format will output the markup in the required format.
The issue here is that the user had their custom taxonomy but wanted to display them in a widget.
Solution:
There are 2 ways that this can be achieved.
1. You can create a view that list taxonomies and then add a query filter to that view so that it only lists the taxonomies of the current post. Finally you can then add this view as a widget using the wordpress widget options.
The issue here is that the user wanted to know how to delete and edit a CPT.
Solution:
You can delete your CPT by going to Toolset -> Post Type and from there when you hover over the CPT you should see the delete button.
You can edit and rename your CPT by going to Toolset -> Post Type and editing that CPT.