I am new to SharePoint development. We have created a base site template and have used that template to start new sites in other locations on the same server. This works fine but the newly created site seems to "flatten" the custom content types created in the original site. I would think there would be a way to keep the original content type inheritance intact to help support any necessary modifications on the new site. They can still make the modifications but they take longer because you have to visit each list individually. Does anyone know how to fix this or know a better way to approach this?
SharePoint 2007 Site Template Content Types
2k Views Asked by Adam Carr At
2
There are 2 best solutions below
Related Questions in SHAREPOINT
- Can you programmatically generate a link to open a Word document and navigate to a particular location within it (preferably a comment)?
- How to automatically update a column in Sharepoint when an email item is added
- Execution Stuck at Get-PnPPage if function executed on Button Click
- How do I replace CKEditor text inside a rte-webpart?
- Difficulty Accessing SharePoint Files in Docker Container for R Script Execution
- Access denied when using Get-PnPSubWeb
- Can sharepoint calendars have images and a legend with it?
- SharePoint search field
- .NET open xps file from Sharepoint location using XpsDocument class
- Sharepoint 2016 timer service cannot start after applying windows OS patch KB5035855
- PowerShell script to output what SharePoint Online sites have privacy set to public and private
- Limit decimals from import calculated value in power BI
- Connect Sharepoint with c# via PnPCore
- Share excel file on Sharepoint
- Trouble extracting xml property from ajax response
Related Questions in SHAREPOINT-2007
- getting error in access token process in sharepoint onpremise 2016 api
- remind about shared folder in Sharepoint
- Powershell to get full user list from old Sharepoint 2007 farm
- SharePoint List Validation
- Extracting Sharepoint site information from Sharepoint database
- MOSS 2007, programmatically downloading document folder; Can't connect to Document folder
- How to flag any missing documents in a document sets
- How to connect to SharePoint 2007 using C#?
- How to transfer all the data from one site to another in SharePoint?
- How to show external webpage on Sharepoint 2007?
- Powershell to click on 'ok' to delete an SP site
- Unable to access SharePoint repository from java
- Best way to migrate out of box SharePoint 2010 --> SharePoint 2016 site
- How do you remove links from sharepoint site with the XML Schema
- Download file from SharePoint 2013 with authentication
Related Questions in CONTENT-TYPE
- how to deal with multipart form data in bash?
- HTTP Header Content-Type for Multipart: Is a CRLF really allowed?
- How to input data through Kafka REST in an environment where message payload cannot be edited
- React Post - Failed to read the request form. Missing content-type boundary
- RSwag `consumes` method does work in RSpec context
- decode content type: application/ale
- Unexpected Content-Type Alterations -- consumes / produces Errors in Web Service Controller - Spring Boot 3.2.1
- How to return and render PDF from AJAX instead of calling URL from anchor tag?
- how to deal with undefined / unprovided content-type in REST
- How to add charset to Content-Type in my output main.css file
- s3 image upload using presigned post url
- HTTP file upload in the Beego (or other way with golang)
- paperclip detect p8 files with wrong content type
- Getting Content-Type application/xml instead of text/xml when I send request through WSO MI
- How to accept all content-types on my ASP.NET Core Web API?
Related Questions in SITETEMPLATE
- How to assign an existing Site Template to a Site Programmatically in Liferay DXP 7.4
- "ø" showing instead of "ø" and more
- Sorry, this site can't be saved as a template. It contains apps that don't work in templates
- SharePoint PnP Provisioning with Azure on SharePoint Subsite
- Is it possible to include a Flow/Power Automate in a SharePoint site template?
- Assign project site template to EPT
- Liferay: Can we create deployable site template?
- liferay user group default site template private pages
- upload site template wsp file powershell
- Save Site as Template Programatically - Error generating solution files in temporary directory
- How to hide the default Site Templates from Custom User Groups in SharePoint 2010 using C#
- Sharepoint 2010: Create web pages programmatically of multiple solutions
- Webservices - change default template for new Site
- Cannot deactivate site template (solution) after creating and deleting a new site
- which site template is best for public site in Share Point 2010
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The problem you are having is the move from your original site collection to another. The site template does not store the complete definition of a site - only the differences from the underlying site definition. Move from one site collection to another and you lose the underlying site definition and run into problems such as the loss of your content types.
Site templates and site definitions are two separate customizations you can undertake. You need to make a decision based on your requirements as to which is best.
Site templates
Pro's:
Con's:
Site definitions
Pro's:
Con's:
Check out Google for info on creating custom site definitions.
Hope this helps!
Jonny