Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sharepoint Designer 2013 - How to add a web part zone?

I have a problem in Sharepoint 2013.

I'm using Designer 2013 and I'm trying to add another web part zone. As you can see from the picture, there is a web part zone to the left. I know how to decrease the width of the web part zone, so there's space for another. But I don't know, how to actually add a new web part zone.

Designer 2013 doesn't have design view.
Does anyone know how I could add a web part zone to the right this time?

Thanks in advance.

The problem

like image 219
Sergiu Tripon Avatar asked Jan 26 '14 13:01

Sergiu Tripon


People also ask

How do I add a Webpart to a page layout in SharePoint?

Go to the page where you want to add a web part. If you do not see the site page that you want, click Site contents on the Quick Launch bar, in the list of contents, click Site Pages, and then click the page that you want. If the page is not already in edit mode, click Edit at the top right of the page.

How do I put two web parts side by side in SharePoint?

To insert two parts side by side, create another web part zone for your page underneath the main zone. Web Part Zones only have one behavior for direction (either side by side or vertically). Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help.


2 Answers

You can add it manually if that "Web Part Zone" button is greyed out in SP Designer:

<%@Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>


<WebPartPages:SPWebPartManager id="m" runat="Server"/>
<div data-name="WebPartZone">
    <div xmlns:ie="ie">
        <WebPartPages:WebPartZone runat="server" ID="x0e5f5212505f48a9aac43df13eeae4f9" AllowCustomization="True" AllowPersonalization="False" FrameType="TitleBarOnly" LockLayout="True" Orientation="Vertical">
            <ZoneTemplate>
               <!--DC: Replace this comment with default web parts for new pages. -->
            </ZoneTemplate>
        </WebPartPages:WebPartZone>
    </div>
</div>

Source: Microsoft (2015). How to: Add a Web Part zone snipped in SharePoint 2013. https://msdn.microsoft.com/en-us/library/office/jj862341.aspx

like image 76
vapcguy Avatar answered Oct 31 '22 14:10

vapcguy


Open Designer -> sitepages-> add webpart page from the top of the ribbon -> Edit the page -> see it is saved -> if saved means-> top of ribbon click on Insert-> addWebpartzone option is available.

like image 32
Pavankumar Avatar answered Oct 31 '22 14:10

Pavankumar