Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • charlotte 6 posts 75 karma points
    Sep 30, 2018 @ 23:20
    charlotte
    0

    trying to edit text on home page, cant get to it

    I am editing a site that was made by someone else on Umbraco. There is a paragraph, just above the footer that I am unable to find. it is not in the template or even in the Main code files. Is anyone able to help me with this? or give me a contact method for Umbraco?

  • Søren Gregersen 441 posts 1884 karma points MVP 2x c-trib
    Oct 01, 2018 @ 07:20
    Søren Gregersen
    0

    Hi Charlotte,

    This forum is the main channel for (unpaid) support.

    Since umbraco is "just" a CMS, the content of every site is rarely structured 100% same as another umbraco site. I would suggest you get a developer to look at the site, or contact the person(s) who made it.

    Sometimes developers use other nodes in the content tree to save shared texts. If it is just a simple text, it may be stored as a dictionary item. Can you showsome of the code that renders the HTML for the "paragraph, just above the footer"?

    I see you have chosen umbraco 8 as your version. This version still in development - are you sure you are on version 8?

  • charlotte 6 posts 75 karma points
    Oct 01, 2018 @ 20:32
    charlotte
    0

    Hi there,

    It might be made on Version 7 Sorry. I will post the main code here.

    I think I am needing to get into the Developer area which I don't appear to be.

    <%@ Master Language="C#" MasterPageFile="~/umbraco/masterpages/default.master" AutoEventWireup="true" %>

    <!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    
    <head runat="server">
        <title><umbraco:Item field="pageTitle" runat="server" /></title>
        <meta name="description" content="<umbraco:Item field="metaDescription" runat="server" />" />
        <meta name="keywords" content="<umbraco:Item field="metaKeywords" runat="server" />" />
        <link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet"> 
        <link href="/css/styles.css" type="text/css" rel="stylesheet" media="all" />
        <link href="/css/editorStyles.css" type="text/css" rel="stylesheet" media="all" />
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
        <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
        <script src="/scripts/jquery.cycle.all.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(document).ready(function () {
                $('#bannerImages').cycle({
                    fx: 'fade'
                });
            });
    
            function toggleDiv(id) {
                $("#d" + id).slideToggle(1000, 'swing');
            }
        </script>
        <asp:ContentPlaceHolder Id="cphHead" runat="server" />
        <script>
          (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
          (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
          m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
          })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
    
          ga('create', 'UA-2352529-43', 'auto');
          ga('send', 'pageview');
    
        </script>
    </head>
    
    <body>
        <umbraco:Macro Alias="BrowserDetection" runat="server" />
        <div id="outline">
            <div id="headerArea">
                <div id="header">
                    <div id="menuArea"><umbraco:Macro Alias="MainNavigation" runat="server"></umbraco:Macro></div>
                    <div id="logo"><img src="/images/missLogo.png" alt="miss logo" /></div>
                </div>
            </div>
            <asp:ContentPlaceHolder Id="cphBannerImages" runat="server" />
            <div id="content" class="outline clearfix"><asp:ContentPlaceHolder Id="mainContent" runat="server" /></div>
        </div>
        <div id="footerArea" class="clearfix">
            <div id="footer" class="outline"><p>Copyright &copy; 2017  MISS Scheme. All rights reserved.<br />
                <umbraco:Item field="footerContent" stripParagraph="true" runat="server" /></p></div>
        </div>
    </body>
    </html>
    

  • charlotte 6 posts 75 karma points
    Oct 01, 2018 @ 20:57
    charlotte
    0

    How do you get access to Developer areas? is it possible to set up? I think this is a part of the issue

  • Søren Gregersen 441 posts 1884 karma points MVP 2x c-trib
    Oct 01, 2018 @ 22:01
    Søren Gregersen
    0

    well, you login as an administrator and grant the users access.

    There are package like this https://our.umbraco.com/packages/developer-tools/umbraco-admin-reset/ that may help

Please Sign in or register to post replies

Write your reply to:

Draft