Is this possible in BC to choose site templates from given one ?

Basically, what i want to acheive is to provide an option in BC cms for choosing template and the selected template will reflect the appereance of complete site.

I have more than one template for my site. I just want an option (if possible) in Catalyst cms where I can change the template of my site from the listed one. Suppose I have a dropdownlist that displays the site templates and the template that I select changes the template of site, sets css, js files etc accordingly.
Or
Do I have to change the template of each page and webApp manually ?
I hope i made you clear !

Similar Messages

  • How do I adjust the page orientation in Pages?  I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    The work around is to do two documents, one in portrait format and one in landscape format. When finished export to Pdf. open in Preview by select both files and use Cmd + O or doubleclick. You can now in Previews thumbnail column the pages from one document into the other and then save.
    If you have created only one with i.e. all pages in portrait format but with the content for the landscape pages rotated on the pages, you can rotate the pages in Preview. Two ways to get the same result.

  • Hi, I have got three ipad minis which I would like to use in a business environment whereby the users can see and update a single calender.  Is this possible? Would they have to be run form one account?

    Hi, I have got three ipad minis which I would like to use in a business environment whereby the users can see and update a single calender.  Is this possible? Would they have to be run form one account?

    Drrhythm2 wrote:
    What's the best solution for this? I
    Copy the entire /Music/iTunes/ folder from her old compouter to /Music/ in her account on this new computer.

  • In Mail, is it possible to extract email addresses of senders from just one account inbox?

    In Mail, is it possible to extract email addresses of senders from just one account inbox?

    Click on the arrow next to the number of emails in the conversation. That'll show you each separate email. You can create a new mailbox (call it what you want) and drag that email out of the conversation into that mailbox.

  • Possible to pick and choose a call from the queue? (UCCX)

    Hi All,
    I have one main UCCX queue that outside callers are placed in and I recently created an internal queue that's only reachable by internal transfers. I'm hoping to assign higher level CSRs to this new queue and use it for escalations. I was wondering if it's possible to let these escalation CSRs view the queue and select calls to answer rather than having calls automatically routed to them.
    Thanks for reading,
    Gary

    Hi Gary
    No, afraid not... callers will be served in the order determined by UCCX, which is typically FIFO. You can bump up the 'priority' of a call from within the script, but this would be based on script logic, not by the Agents cherry picking...
    Regards
    Aaron
    Please rate helpful posts...

  • HT201269 me and my brother both are having iphone 4s we just want to exchange phones with each other also the whole data from one iphone to other is this possible or how can i do that with only one itunes?

    just want to move data between two iphones using one itunes.

    Make sure your computer iTunes is up to date. (iTunes 11.1.1)
    Now, do it one iPhone at a time; When you connect and select iPhone in computer iTunes sidebar (iTunes > View > Show Sidebar), what iPhone name do you see?
    iTunes is smart enough to tell the differences if each has a unique name.
    Point One checked.
    Right click on iPhone name in Sidebar and choose Backup.
    Do the same for the second iPhone.
    Make a copy of the backups in computer to another location (Just incase something gone wrong)
    Where iTunes backups are stored on computer http://support.apple.com/kb/HT4946
    Point 2 checked.
    Point 3 & 4
    http://support.apple.com/kb/ht1766

  • HT204053 I have 4 iphones on the same Apple ID, but would like 4 different accounts and iCloud is this possible?

    I have 4 iphones on the same Apple ID, but would like 4 different accounts and iCloud is this possible?

    Create a new Apple ID for the one you want to change.

  • HT204053 I would like to have one apple ID and sign in for the Australian Apple Store and for the New Zealand Apple Store without it asking me to switch stores. Is this possible?

    I would like to have one apple ID and sign in for the Australian Apple Store and for the New Zealand Apple Store without it asking me to switch stores. Is this possible? If not can I setup two stores (one in each country) using the same email address and same password (both and / or either)?

    An iTunes account can only be used in one store at a time, and you need to be in that country with a valid billing address on your account for that country in order to use it there. An email address can only be linked to one account, so if you want two separate iTunes accounts then you will need two email addresses

  • Unable to apply a new site template to a new site collection's root web

    Hi folks,
    Using PowerShell I need to create a new site collection and add a new site template to its root web.  I've tried but failed...
    I created the site template from a team site that I modified and then saved it as a site template and saved the template to an WSP file (in the solutions gallery).
    I have tried both of the following methods but can't find the template to add to the root web of the site collection.  Help!!
    Method 1 - Create the site collection, deploy & install the template as a user solution, and apply the template
    I did the following, but it doesn't work because Get-SPWeb doesn't find it.  If I run Get-SPWeb with no parameters the list it returns doesn't include my template.  So site.GetWebTemplates includes it but Get-SPWebTemplate doesn't.
    # Create the site collection
    $site = New-SPSite $siteURL -OwnerAlias $owner -SecondaryOwnerAlias $secondOwner -name $studentName -Description $description
    # Deploy and install the template
    $wsp = Add-SPUserSolution -LiteralPath $wspPath -Site $siteURL
    $wsp = Install-SPUserSolution -Identity $wspIdentity -Site $siteURL
    # Assign the template.
    $loc= [System.Int32]::Parse(1033)
    $templates= $site.GetWebTemplates($loc)
    foreach ($child in $templates)
    Write-Host $child.Name
    If ($child.Name.EndsWith("ABC")
    # the name of the template that I added ends in "ABC" - when this script runs I the name of my
    #added template displays as "{longGUID}#1ABC"
    $template = $child
    $templateID = $child.Name
    $template = Get-SPWebTemplate $templateID
    # regardless of whether I assign $template above or here the Set-SP_Web assignment below fails
    $web = Get-SPWeb $siteURL
    $web | Set-SPWeb 
    -Template $template
    Method 2 - Deploy and install the template as a farm solution, create the site collection, and apply the template
    I did the following.  After I did the first section (deploy and install the solution to the farm) I was able to go to "Manage Farm Solutions" in CA and it was listed there, but neither
    site.GetWebTemplates nor Get-SPWebTemplate included the site template in their list of templates.
    # Deploy and install the solution to the farm
    $template = Add-SPSolution -LiteralPath "C:\SharePoint\Student Site.wsp"
    $template | Install-SPSolution
    Do {Start-Sleep 2 } while (!((Get-SPSolution $template).Deployed))
    # Create the site collection
    $site = New-SPSite $siteURL -OwnerAlias $owner -SecondaryOwnerAlias $secondOwner -name $studentName -Description $description
    # Assign the template.
    $loc= [System.Int32]::Parse(1033)
    $templates= $site.GetWebTemplates($loc)
    foreach ($child in $templates)
            Write-Host $child.Name
            If ($child.Name.EndsWith("ABC")
    # the name of the template that I added ends in "ABC" - when this script runs I the name of my
    #added template displays as "{longGUID}#1ABC"
                            $template = $child
                            $templateID = $child.Name
    $template = Get-SPWebTemplate $templateID
    # regardless of whether I assign $template above or here the Set-SP_Web assignment below fails
    $web = Get-SPWeb $siteURL
    $web | Set-SPWeb
    -Template $template
    David

    Out of curiosity, are you able to create a site within a site collection using this template? That is, can you create a site that is not the root site (e.g. http://sharepoint/sitecollection/Web)?
    Jason Warren
    Infrastructure Specialist
    Habanero Consulting Group
    habaneroconsulting.com/blog

  • Would like each new site / link to open in tab as default. is this possible please?

    I would like each new web site or link to open in a new tag as default rather than right click and 'open in new tab'. is this possible please?

    No built-in function to '''''automatically''''' do that, but you can:
    *right-click link or bookmark and choose Open in New Tab
    *middle-click link or bookmark (middle-click = press the mouse scroll wheel
    *CTRL+left click link or bookmark
    NOTE: Options => Tabs => 'open new windows in a new tab' works only '''''when coding on a web page''''' would otherwise open a link in a new window.
    Add-ons (set options after install: Add-ons > Extensions, click Add-on by name, click Options):
    *https://addons.mozilla.org/en-US/firefox/addon/tab-utilities-lite/
    *https://addons.mozilla.org/en-US/firefox/addon/tab-utilities/
    *https://addons.mozilla.org/en-US/firefox/addon/tab-mix-plus/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • I'd like to edit my site from iWeb on two computers, is this possible?

    I'd like to edit my site from iWeb on two computers, is this possible?
    I started creating my site on a PB 15", but when I'm home I like the speed of my iMac and I'd like to continue the editing process on my iMac but I can't find the files that iWeb saves.
    I'd ideally like to save my site on my 30gig iPod using it as a hard drive between both. I would love for this to happen but I can't find the files saved by iWeb. Is this even possible?
    I've even tried linking my PB to my iMac via firewire as a hard drive. No Luck.
    Please Help . . .
    john
    PB G4 15" 167GHz 80HD, iMac G5 2Ghz, 160HD Mac OS X (10.4.5)
    PB G4 15" 167GHz 80HD, iMac G5 2Ghz, 160HD   Mac OS X (10.4.5)  

    I think iWeb only recognizes the 'domain.sites' file so while you can set up more than one site, they are in the same project.
    Of course, the workround is to move the domain.sites file out of the default location, which them makes iWeb create a new one. You can then work on any number of projects, only moving the correct file into the default location for work on each one. Not elegant by any means, but until someone suggests a better way (or Apple produce a more flexible version of the software) it works fine that way.

  • I would like to be able to size images by kilobytes instead of pixels--is this possible?  I use I-Contact which requires a maximum of 70kb per image.  For best quality I want to make the images as close to 70 as possible.  Currently I choose a size of 300

    I would like to be able to size images by kilobytes instead of pixels--is this possible?  I use I-Contact which requires a maximum of 70kb per image.  For best quality I want to make the images as close to 70 as possible.  Currently I choose a size of 300 pixels on the shortest side but sometimes this gives me an image of slightly greater than 70kb and sometimes the image is just 30-40kb.  Is there a way to be more precise in reaching but not exceeding 70 kb?

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    You can opnly resize using the available options and file size is not one of them
    LN

  • Hello, i have a question. I've got one .mov  video and one .mp4, both 3 minutes long. Now I want to burn them on one single dvd, and a menu (if possible) so i can choose between them. Is this possible?

    Hello, I have a question.
    I've got one .mov  video and one .mp4, both 3 minutes long. Now I want to burn both of them on one single dvd, with a menu (if possible) so i can choose between them.
    How can I do this?

    You could use iMovie if you own it. Look here for an example...

  • How can we transfer product attributes from an already existing site?  We have thousands of items and it would be tedious to do them one at a time.  Is this possible through a CSV?

    How can we transfer product attributes from an already existing site?  We have thousands of items and it would be tedious to do them one at a time.  Is this possible through a CSV?

    There are two parts to this:
    1) It may be that you should have an Apple Education Support person helping you with this. If you have enough computers for this to be a problem, you may benefit from a Server, a site license, and an occasional visit from an Education Support Specialist.
    2) The brief answer, if you want Individual Apple_IDs to control each computer, is to buy new copies of Mac OS X under those new Apple_IDs and re-download and re-Install. Mac OS X is customized to the Apple_ID before it is downloaded.

  • I want to upload HTML code from an existing site and then revise in Muse. Is this possible?

    I want to upload HTML code from an existing site and then revise in Muse. Is this possible?

    HTML files from an existing site cannot be reused in Muse as Muse works only with files having extension as .muse.
    However, you use apps like Dreamweaver to edit your existing HTML files.

Maybe you are looking for