Hi - I am referring to the Atlassian documentation page :
https://confluence.atlassian.com/doc/copy-a-page-139013.html
But when I try to copy a page with children I don't see an option anywhere to copy child pages. I have full admin rights on the system. Can anyone help by advising where I should see this option.
Many thanks
Simon
Hello,
You could use the Power Scripts for Conflunce add-on:
You can create a script like this:
number targetPageId =
11003
;
string titlePrefix =
"Copy of "
;
boolean
copyPermissions =
true
;
return
clonePageTree(sourcePageId, targetPageId, titlePrefix, copyPermissions);
You can find more info here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the answer - was I looking at the server docs by mistake then (6.12) ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Simon Teppett,
This method of copying a page doesn't copy the child pages. Please add your vote to issue CONF-2814 if you'd like to see this improvement.
https://confluence.atlassian.com/confcloud/move-copy-and-hide-pages-724764858.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks - I have added my vote
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.