DISQUS

SharePoint Magazine: Customizing the user experience of SharePoint: Modifying the default experience (Part 2 of 6)

  • Tom · 1 year ago
    Pertaining to the feature to add a new CustomActionGroup to the Site Setting page. I follwed the directions and the new column does not display. The Feature DOES show up in under Site Administration adn I have activated it - but it does not show -- any ideas would be greatley appreciated. Follows is my code --

    <?xml version="1.0" encoding="utf-8" ?>
    - <Feature Id="185089B5-5C74-494B-89E1-C9674F5A5410" Title="Custom Administration Pages" Description="Custom Administration Pages." Version="1.0.0.0" Scope="Web" Hidden="FALSE" DefaultResourceFile="core" xmlns="http://schemas.microsoft.com/sharepoint/">
    - <ElementManifests>
    <ElementManifest Location="elements.xml" />
    </ElementManifests>
    </Feature>


    <?xml version="1.0" encoding="utf-8" ?>
    - <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomActionGroup Id="AppAdmin" Location="Microsoft.SharePoint.SiteSettings" Title="Site Specific" Sequence="5" />
    - <CustomAction Id="SiteAdmin" GroupId="SiteAdmin" Location="Microsoft.SharePoint.SiteSettings" Sequence="5" Title="Site Approvers" Rights="EnumeratePermissions,BrowseUserInfo">
    <UrlAction Url="~site/_layouts/lm_Approvers.aspx" />
    </CustomAction>
    - <CustomAction Id="ContactUs" GroupId="ContactUs" Location="Microsoft.SharePoint.SiteSettings" Sequence="10" Title="Contact Us Posts" Rights="EnumeratePermissions,BrowseUserInfo">
    <UrlAction Url="~site/_layouts/lm_ContactUs.aspx" />
    </CustomAction>
    - <CustomAction Id="BulkEMail" GroupId="BulkEMail" Location="Microsoft.SharePoint.SiteSettings" Sequence="15" Title="Send Bulk EMail" Rights="EnumeratePermissions,BrowseUserInfo">
    <UrlAction Url="~site/_layouts/lm_SendAllGroupEmail.aspx" />
    </CustomAction>
    </Elements>