The issue here is that the user had a slug "vob-news" but wanted to rewrite this slug to only "news" on the frontend.
Solution:
We actually do provide some of these functions that the wordpress API offers. If you go to your post type settings at Toolset -> Post Type and edit your post type.
Under the Options accordion you'll be able to see all the options that are available.
There is a rewrite option that you can use. If you enable the rewrite option and provide and alternate slug here, then on the frontend that alternate slug will be used.
Problem:
The user was encountering Fatal errors after updating Toolset plugins.
Solution:
It appears that Toolset types is not compatible with Siteground's Ultrafast PHP option.
When I turned this off and used Standard PHP, the site has performed normally.
I have an odd thing happening with one of my views that should get posts that are published between two publish dates. The dates are set by a shortcode attribute and a custom date field set by the current page (post). It works fine for any set of dates EXCEPT if the date range crosses over from one month to the next month.
Solution:
It is a limitation of WP_Query, when the report-start "day" value is larger than the report-end "day" value, it will conduct the problem you mentioned above.
In your case, I suggest you setup the View filter with wpv_filter_query filter hook, for example: