Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Swapping of template in AEM

Avatar

Level 2

Hi, 

 

Scenario: we have 1000's of pages created based on a certain template, now we are trying to replace the template with a new one for some of the pages. I wanted to know is it possible to swap template for those existing pages?

 

If yes, could you please provide me with the solution how we can approach for the same.

 

@jbrar @Arun_Patidar @kautuk_sahni @BrianKasingli

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Prashanth96,

 

You did not mention which template you are using. Is it a static template or editable?

 

1. For static template, you cannot do the change once the page is created

2. For an editable template, you can modify the template and they will reflect automatically as they maintain a dynamic reference to the page.

 

In your use-case, replacing the old template with a new one, will not work in static templates. For dynamic templates, you can change the below properties in page's jcr:content to make it work

1. cq:template

2. sling:resourceType

 

Note: You might run into errors if the code on the new page component is expecting a different content than what is currently under your jcr:content.

 

I would recommend creating a new editable template and upgrade your changes if your template is static. If it is editable, create different versions of components using a style system, play around with page policies, initial content, and page structure to achieve your desired result.

 

Hope this helps. All the best.

 

Thanks,

Kiran Vedantam.

View solution in original post

5 Replies

Avatar

Correct answer by
Community Advisor

Hi @Prashanth96,

 

You did not mention which template you are using. Is it a static template or editable?

 

1. For static template, you cannot do the change once the page is created

2. For an editable template, you can modify the template and they will reflect automatically as they maintain a dynamic reference to the page.

 

In your use-case, replacing the old template with a new one, will not work in static templates. For dynamic templates, you can change the below properties in page's jcr:content to make it work

1. cq:template

2. sling:resourceType

 

Note: You might run into errors if the code on the new page component is expecting a different content than what is currently under your jcr:content.

 

I would recommend creating a new editable template and upgrade your changes if your template is static. If it is editable, create different versions of components using a style system, play around with page policies, initial content, and page structure to achieve your desired result.

 

Hope this helps. All the best.

 

Thanks,

Kiran Vedantam.

Avatar

Employee Advisor

 

You can use AEM Modernization tools for updating the existing page properties. 

More details can be found here - https://opensource.adobe.com/aem-modernize-tools/pages/configuration/component.html 

Avatar

Community Advisor

@Prashanth96,

One way is by using the AEM groovy console to find all those pages, and update the sling:resourceType, cq:template, you can create a migration script. https://github.com/icfnext/aem-groovy-console

 

The migration script would look something like this:

 

 

// example of finding all nodes with the sling:resourceType == 'my-site/components/structure/page';
def doMigration() {
    def queryManager = session.workspace.queryManager
    def statement = "/jcr:root/content/my-site//*[@sling:resourceType='my-site/components/structure/page']"
    def query = queryManager.createQuery(statement, "xpath");
    def result = query.execute();
    def foundNodesInRows = result.rows;
    // applying write method to each node.
    foundNodesInRows.each { row ->
        def pageNode = getNode(row.path)
        pageNode.set("sling:resourceType", "my-site/components/structure/page2")
        pageNode.set("cq:template", "/conf/my-site/settings/wcm/templates/page2")
        // some kind of move operation...
        println "Updated sling:resourceType * cq:template on ${row.path}"
    }
}
 
doMigration()
session.save()

 

 

While creating the migration script, you should pull down content that is similar to production into your development environment, so you can test your script as you are building the script.

 

To take extra precautions, you should pull down the content into a lower environment, run the migration script, and then using a package manager to upload the code back to the production author... then replicate.