Menus Not Showing Under Site Manager?

Here's a heads up to users of BC...
Even some well known BC gurus didn't know this, so I thought I'd share it.
After going slightly nuts trying to figure out why I couldn't see this "menu" button, I contacted support, and figured out why.
For the record - I'm not using MUSE for this. And - This is my first BC site, so I'm learning a few tricks as I go on.
All I wanted to do was customise a template a bit, and change the menu to reflect the pages in that template that I wanted to show...
- nothing unusual in that right?
Wrong.
Here's why:
If you have set up a trial site on the lowest webBasics plan (using a template) and want to EDIT the menus, it's not going to happen. Because you won't see the menu function (as in the following diagram)
On the adobe sales page for BC hosting:
http://www.adobe.com/products/business-catalyst/buying-guide-subscriptions.html
It says that there is a dynamic menu builder under WebBasics+ or above.
SO, what I suggest you do is this:
BEFORE YOU CREATE A TRIAL SITE:
If you want to edit the menus, you NEED to have more than a simple "WebBasics" hosting plan, otherwise the "menus" function won't show on the left hand side...
...And if you inadvertently do this, there is no way you can upgrade it from your BC partner admin.
If you want to edit dynamic menus that come with a template, you must have Web Basics+ as the hosting option FIRST, and then you can manually request support to "downgrade" the hosting plan to WebBasics... after you've edited the menus...
Unbelievable, but true!!
I was gobsmacked that I couldn't do such a simple thing as alter a menu on the lowest hosting plan.
Anyway - That's taken HOURS of my time, I could have built this whole site from scratch multiple times over not using BC...
..But I'm commited to learning how this beast works!! :-)
Cheers
Dave

Yes, this kinda really shocks me that menus are not avaiable? Even the lowest of low plans likely need some sort of menu to get from page to page.
I hope that was just an oversight and menus will be added to the lower plans. Any plan or site that has pages needs a menu.

Similar Messages

  • Employee not showing under correct manager

    I have been using this query inside the package that I created to load data into cube. From this cube I am fetching records for my cascaded parameterized report. The issue here is one of the employee is showing under different team manager and site manager.
    This team manager has left the company and now the employee is back to its previous team manager. here is the code:
    Truncate table CallCenterEmployee.dbo.tblCube_Staff;
    GO
    Insert Into CallCenterEmployee.dbo.tblCube_Staff
    SELECT     dbo.tblStaff.Emp_N
    , CONVERT(varchar, dbo.tblStaff.Emp_N) + CONVERT(varchar, tblDate.ID) AS SurrogateKey
    , dbo.tblStaff.StaffId
    , dbo.tblStaff.First_M
    , dbo.tblStaff.Last_M
    , dbo.tblStaff.PreferredName
    , dbo.tblStaff.First_M + ' ' + dbo.tblStaff.Last_M AS FullName
    , dbo.tblStaff.SupervisorEmp_N as SupervisorEmployeeNumber
    , CONVERT(varchar, dbo.tblStaff.SupervisorEmp_N) + CONVERT(varchar, tblDate.ID) AS SupervisorKey
    , SupervisorStaff.First_M as SupervisorFirst_M
    , SupervisorStaff.Last_M as SupervisorLast_M
    , SupervisorStaff.PreferredName as SupervisorPreferredName
    , SupervisorStaff.First_M + ' ' + SupervisorStaff.Last_M AS SupervisorFullName
    , SupervisorStaff.NTID as SupervisorNTID
    , SupervisorStaff.EmailAddress as SupervisorEmailAddress
    , case when AgentHierarchy.HierarchyLevel = 'Agent' and isnull(SupervisorHierarchy.HierarchyLevel,'999999') = '999999' then STN.SupervisorTeamName 
      when AgentHierarchy.HierarchyLevel = 'Agent' and SupervisorHierarchy.HierarchyLevel <> 'Supervisor' then STN.SupervisorTeamName 
      else SupervisorStaff.First_M + ' ' + SupervisorStaff.Last_M  end as HierarchySupervisor
    , CONVERT(varchar, SupervisorStaff.SupervisorEmp_N) + CONVERT(varchar, tblDate.ID) AS TeamMgrKey
    , CONVERT(varchar, SupervisorStaff.SupervisorEmp_N) as TeamMgrEmployeeNumber
    , TeamMgr.First_M as TeamMgrFirst_M
    , TeamMgr.Last_M as TeamMgrLast_M
    , dbo.tblStaff.PreferredName as TeamMgrPreferredName
    , TeamMgr.First_M + ' ' + TeamMgr.Last_M AS TeamMgrFullName
    , dbo.tblStaff.NTID as TeamMgrNTID
    , dbo.tblStaff.EmailAddress as TeamMgrEmailAddress
    , Case when AgentHierarchy.HierarchyLevel = 'Agent' and isnull(TeamMgrHierarchy.HierarchyLevel,'999999') = '999999' then FIRM_Section + ' Unknown Team Mgr' 
      when AgentHierarchy.HierarchyLevel = 'Agent' and TeamMgrHierarchy.HierarchyLevel <> 'Team Mgr' then FIRM_Section + ' Unknown Team Mgr' 
      else TeamMgr.First_M + ' ' + TeamMgr.Last_M end as HierarchyTeamMgr
    , dbo.tblStaff.NTID
    , dbo.tblStaff.EmailAddress
    , dbo.tblStaff.Location_C
    , dbo.tblStaff.FIRM
    , dbo.tblStaff.Status_C
    , dbo.tblStaff.JobClass
    , dbo.tblStaff.JobTitle
    , dbo.tblStaff.Job_C
    , dbo.tblStaff.Shift_N
    , dbo.tblStaff.FTE
    , CONVERT(varchar, dbo.tblStaff.Hire_D, 112) AS HireDate
    , CONVERT(varchar, dbo.tblStaff.AdjHire_D, 112) AS AdjHireDate
    , CONVERT(varchar, dbo.tblStaff.Seniority_D, 112) AS SeniorityDate
    , tblDate.ID AS DateKey
    , tblStaffStatusHours.StatusHrs_N AS StatusHoursKey
    FROM         CCBR_DATA.dbo.tblDate AS tblDate WITH (nolock) 
    INNER JOIN dbo.tblStaff WITH (nolock) 
    ON tblDate.[Year] BETWEEN 2012 AND YEAR(GETDATE()) 
    AND tblDate.StandardDate BETWEEN tblSTaff.Eff_D AND CASE WHEN tblStaff.Exp_D > getdate() THEN  DATEADD(MILLISECOND, -3,DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()) + 1, 0)) ELSE tblStaff.Exp_D END AND tblDate.StandardDate <= ISNULL(tblStaff.Term_D,
    DATEADD(MILLISECOND, -3,DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()) + 1, 0))) 
    Left Join CallCenterEmployee.dbo.tblStaff as SupervisorStaff(nolock)
    on SupervisorStaff.SupervisorEmp_N = SupervisorStaff.Emp_N
    and tblDate.StandardDate between SupervisorStaff.Eff_D and CASE WHEN SupervisorStaff.Exp_D > getdate() THEN DATEADD(MILLISECOND, -3,DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()) + 1, 0)) ELSE SupervisorStaff.Exp_D END AND tblDate.StandardDate <= ISNULL(SupervisorStaff.Term_D,
    DATEADD(MILLISECOND, -3,DATEADD(YEAR, DATEDIFF(YEAR, 0, GETDATE()) + 1, 0))) 
    Left Join CallCenterEmployee.dbo.tblStaffHierarchy as AgentHierarchy(nolock)
    on tblStaff.Job_C = AgentHierarchy.Job_C
    Left Join CallCenterEmployee.dbo.tblStaffHierarchy as SupervisorHierarchy(nolock)
    on SupervisorStaff.Job_C = SupervisorHierarchy.Job_C
    Left Join (
    Select substring(GSW_EMPLOYEE_ID,1,6) as GSW_EMPLOYEE_ID
    , WM_START_DATE
    , isnull(WM_END_DATE,'12/31/2999') as WM_END_DATE
    , b.WM_NAME as SupervisorTeamName
    from MRKREPORTS.dbo.WM_AGENTS a (nolock)
    Inner Join MRKREPORTS.dbo.WM_TEAMS b (nolock)
    on a.WM_TEAM_ID = b.WM_TEAM_ID
    where ISNUMERIC(GSW_EMPLOYEE_ID) = 1
    ) STN
    on tblStaff.Emp_N = STN.GSW_EMPLOYEE_ID
    and tblDate.StandardDate between STN.WM_START_DATE and STN.WM_END_DATE
    Left Join dbo.tblStaff as TeamMgr(nolock)
    on SupervisorStaff.SupervisorEmp_N = TeamMgr.Emp_N
    and tblDate.StandardDate between TeamMgr.Eff_D and CASE WHEN TeamMgr.Exp_D > getdate() THEN  dateadd(y,1,getdate()) ELSE TeamMgr.Exp_D END AND tblDate.StandardDate <= ISNULL(TeamMgr.Term_D, GETDATE()) 
    Left Join CallCenterEmployee.dbo.tblStaffHierarchy as TeamMgrHierarchy(nolock)
    on TeamMgr.Job_C = TeamMgrHierarchy.Job_C
    INNER JOIN CCBR_DATA.dbo.tblStaffFirm WITH (nolock) 
    ON dbo.tblStaff.FIRM = tblStaffFirm.FIRM_SECTION 
    AND tblStaffFirm.BUS_UNIT IN ('B029','B620','B629','B420','B020','B278','B291','B028', 'B432', 'B732','B748') 
    INNER JOIN CallCenterEmployee.dbo.tblStaffStatusHours WITH (nolock) 
    ON tblStaffStatusHours.StatusHrs_N = case when dbo.tblStaff.FTE = '0.00000' then 98 else ISNULL(dbo.tblStaff.FTE * 40, 99) end

    Hi Dee25, 
    Thank you for your question.  
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.  
    Thank you for your understanding and support. 
    Thanks,                                       
    Simon Hou
    Simon Hou
    TechNet Community Support

  • My new iPad mini does not show under manage devices

    I just purchased a new iPad mini for my husband. I removed his old one from the section of iTunes that reads manage devices. And even though his new iPad mini is synced and backed up, now the new one does not show under manage devices.
    Can anyone tell me how to get it to show up? I called Apple support and the lady trying to help me did not even know what I was talking about.
    Thank you.

    If you're on Windows read this support article.
    If on Mac, read this one.

  • I have an iPod Touch but I currently don't have a PC.  I found an app that would allow me to connect to my network drive and I was able to transfer music files to it.  These files do not show under the Music app and I can't find any way to do it.

    I need help from some Apple people. I have an iPod Touch and I wanted to load it up with some fresh music but I currently don't have a PC. I found an app that would allow me to connect to my 2TB network drive directly and I was able to transfer a bunch of music files to the iPod. Unfortunately, these new files do not show under the Music app and I can't seem to find any way to convince the iPod that they are music. I can play them through the file manager only. Android doesn't have this problem, any music I put on my phone is recognized as music and can be played through any of the music apps. Am I missing something or is Apple to inflexible to handle this?

    You can't. The only way to get songs in the Music app is to sync from a computer or to download from iTunes.

  • IPhone 4s not showing up in manage devices

    My wife's iPhone 4s shows up in the side bar of iTunes and sincs fine, but does not show up in Manage devices on her account, where as her iPad does. it clearly shows you how to remove devices, but how can we add one?

    "Manage Devices" appears under the broad heading "iTunes in the Cloud".  I suggest you (or she) do this on her iPhone 4S:
    Go to Settings > iCloud and make sure she is signed on there with her Apple ID.

  • G470 Bluetooth not listed under Device Manager and not working

    Hi,
    Can someone teach me how to solve my G470 problem?
    Its Bluetooth is not listed under Device Manager and I can't find it anywhere.
    Before that, it isn't working at all.
    Thanks
    Solved!
    Go to Solution.

    hi athirah11,
    Welcome to the Lenovo Forums.
    Can you try the following:
    1. Press the Windows key‌ +R, type devmgmt.msc and press Enter. On the Device Manager, click View > Show hidden devices and check if the Bluetooth device is being listed.
    - Link to picture
    - Link to picture
    2. If the bluetooth device shows up under the Device Manager, do the following:
        a. Under Control Panel > Programs, uninstall the Bluetooth driver/software (reboot if necessary)
        b. Run the Bluetooth Driver Installer
         -  this will identify the type of Bluetooth Device installed on the system (eg. Qualcom Atheros, Intel, etc.) and it will install a generic Bluetooth driver. If successful, the Bluetooth device and its components should now appear normally under the Device Manager.
    If the bluetooth device still doesn't show up, can you provide the model number of your G470 (eg. 59xxxxxx) fur further checking.
    Let me know how it goes.
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Photoshop Elements 9 Editor menus not showing

    missing Quick/Guided/Effects menus in Editor

    It's Windows...when I click on any of the tabs, Guided, Effects, etc, it's blank (black background).  It usually has the thumbnails, for example, under Effects, 'neon' 'sketch'   all that is gone.  A pop up shows up & states the Help content is missing & I might have to re-install.
    Tanya Pacheco
    Date: Tue, 13 Sep 2011 12:55:19 -0600
    From: [email protected]
    To: [email protected]
    Subject: Photoshop Elements 9 Editor menus not showing
    Do you mean you can't see the words Full/Quick/Guided under the Edit tab? (There are no menus there.)  Is the Edit tab active and not Create or Share? Windows or Mac?
    >

  • What happened to all of the options under Site Manager?

    There used to be tons of options under Site Manager:
    Pages
    Page Templates
    Module Templates
    Content Holders Menus
    Web Forms
    File Manager
    Etc.
    Now I only have two:
    Web Forms
    System Emails
    What happened to all of the extra options, and how do I access them now? Seems like it only happened since the BC updates.
    I have an Ecommerce BC Plan, so I should have everything.

    Turns out it was something simple. I created a ticket, and got the answer back. I clicked on "my details" under my name in the top right. I then checked and enabled "content editing". Somehow it must have gotten disabled because I was using Muse.

  • CD does not show under Devices on iTunes

    I am a new user and would appreciate any suggestions. My iPod shows under Devices on iTunes, and I've had no problem buying music from iTunes store or loading to iPod.
    I have set iTunes to be the default player of music cds but they do not play when loaded (iTunes opens) and the CD does not show under Devices.
    Thanks in advance for any help.
    HP dv6110ca   Windows XP  

    I did run the diagnosics before, and have just run again. As you will see it passes with flying colors - but still is not recognized as a device on itunes......
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Hewlett-Packard HP Pavilion dv6000 (RN907UA#ABL)
    iTunes 7.0.2.16
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.1
    LowerFilters: PxHelp20 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.0.6.1),
    Video Driver: NVIDIA GeForce Go 6150\GeForce Go 6150
    IDE\DiskST98823AS______________________________7.24___, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomPHILIPSDVD-RAM_SDVD8821________________EH19___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is an administrator.
    E: PHILIPS DVD-RAM SDVD8821, Rev EH19
    Audio CD in drive.
    Found 14 songs on CD, playing time 72:11 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 04:13:25
    Track 3, start time 09:58:02
    Track 4, start time 14:37:60
    Track 5, start time 20:31:35
    Track 6, start time 25:38:35
    Track 7, start time 31:37:27
    Track 8, start time 35:21:52
    Track 9, start time 41:56:50
    Track 10, start time 47:36:50
    Track 11, start time 52:54:27
    Track 12, start time 58:11:12
    Track 13, start time 63:52:55
    Track 14, start time 68:20:05
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 10 16 20 24.
    The drive CDRW speeds are: 10.
    The drive DVDR speeds are: 10.
    The drive DVDRW speeds are: 10.

  • Photoshop CC2014 running under window 8.1.  How do I access mini bridge.  It does not show under FILE or WINDOW-EXTENSIONS.  Works ok with CS6

    Photoshop CC2014 running under window 8.1.  How do I access mini bridge.  It does not show under FILE or WINDOW-EXTENSIONS.  Works ok with CS6

    Photoshop: Spring Cleaning | PHOTOSHOP.COM BLOG

  • IPod Nano does not show under Devices (in iTunes) but is recognized in My Device and Printers (My Comouter) as "Unspecified"

    My ipod nano is not showing under the devices tab in iTunes however, is is recognized in My Computer (Devices and Printers) as "Unspecified" I just want to be able to sync and add/remove music!!!

    Hi there!
    have you tried any of the steps mentioned here?
    http://support.apple.com/kb/TS1363

  • While updating Ipod we now have a blank screen and when connecting to itunes the ipod is not showing under devices

    While updating ipod touch we now have a blank screen. I have updated itunes but am unable to sync because the ipod does not show under devices. I have tried shuttng down and restarting but only have a blank screen or ap0ple logo. Sometimes the screen shows connect to itunes but that has been it.

    I have the same problem, after upgrading my itouch to iOS6, it doesNOT respond to anything, apple logo stays on the screen all the time and does NOTHING! restore does not work either.... i hope we can get an answer from someone soon... apple support did not have an asnwer.

  • External hard drive seagate 3.0 cant read and not showing in disk management.

    Why my external hard drive seagate 3.0 cant read and not showing in disk management, while 2.0 can read. please help me to solve it. BIG THANK YOU.. 

    Hi,
    Yes, like Vegan said, you should check if your Seagate hard drive if it could available in USB 3.0 port. This is hardware related.
    Karen Hu
    TechNet Community Support

  • HT201272 I updated my IPhone and it took away all music including my ring tones. I have been able to recover the songs but my ringtones are not showing under purchased. How do I get my ringtones back?

    I updated my phone and all my music, including rigntones went away. I was able to recover my songs under purchased. My ringtones are not showing under purcahsed. How do I get my ringtones back?

    I don't understand this answer. What do you mean " your contacts should be in whatever program/service you have selected to sync."? The address book is created on the phone not in Itunes or any other program/service. When Itunes says backing up phone I have to assume it backs up everything on the phone. Most of what's on my phone does not come out of itunes. I download apps directly on the phone. When the software updates it does not bring those apps back. I have to go into the appstore and install them all over again. Itunes music library syncs with whatever is on the device your linked up to BUT the phone book just dissappears after you update the phone. There is no way to save it anywhere else.

  • Adobe Photoshop elements 10 Editor not showing under application support;adobe

    Adobe Photoshop elements 10 Editor not showing under application support;adobe on a MAC.  I would like to add actions in photo effects but can't add like instructios say because it is not in adobe.

    SSharpPhotography I would recommend posting your inquiry to the Photoshop Elements forum.

Maybe you are looking for

  • General Error Message When Installing Flash Player on Mac

    I have a new MacBook Pro.  I have OS 10.8.2.   I cannot get FlashPlayer to download.  I have tried uninstalling and reinstalling Adobe Flash Player 11 from the Adobe website.  Doesn't work.  Every time I try to download, I get an error message that s

  • Itunes not syncing all files to ipod - permissions error

    With the newest verison of itunes is not syncing all of my files to my ipod - this is so frustrating! I have taken itunes/quicktime completely off my dell and reloaded with the newest version of itunes/quicktime. Changed to manually managing my ipod

  • Anonymous login failed [solved]

    pacman -Syu gives... error: anonymous login failed Control socket read failed: Success I tried commenting out the nethat line in /etc/pacman.d/* and rebooting but still get the same error. Last edited by tony5429 (2007-06-09 15:07:14)

  • XI content for SAP SRM SERVER 6.0

    Hi All, I want to implement SRM-MDM CATALOG Business scenario, but i am not getting the XI content for Software Component  Version <b>SAP SRM SERVER 6.0</b>. Can anybody tell me from where to get the XI content for Software Component  Version <b>SAP

  • Change Life of PDF message from the current 7 days

    How do I change the current 7 days life span of a sent PDF?