I have just loaded in a package to a client’s sandbox with Skuid Pages. The entire org won’t be using Skuid at this time, so I am using VF override pages that should direct the appropriate user to the correct Contact Tab & View pages. I have created Page Assignments that give the appropriate profile access to those Skuid Tab & View override actions. Furthermore, I have ensured that the profile has the Skuid Page Viewer Permission Set.
I personally can see the SKUID pages, but I am System Admin and installed SKUID, so I’m sure I have all permissions necessary.
However, my users in that Profile aren’t able to see the SKUID pages. They are just being directed to the standard Tab and View pages. Is there a permission setting that I am missing?
Here is the VF override page code that I am using:
<apex:page standardController="Contact" recordSetVar="a" extensions="skuid.Redirects" action="{!redirect}?objectType=Contact&actionType=Tab">
</apex:page>
<apex:page standardController="Contact" action="{!redirect}&actionType=View&objectType=Contact" extensions="skuid.Redirects">
</apex:page>