Dynamic Title Tags in Webcenter

This is a newbie question. But I am going to be creating a complete external commercial website using Webcenter/jDev. I see nothing in the documentation about search engine optimization, and more importantly, creating dynamic URL-based title tags.
Will this be a problem? Or can I assume Webcenter is set up to easily generate a dynamic title tag based on the URL or some other paramater.
Any thoughts would be appreciated.

No thoughts on this?

Similar Messages

  • Dynamic Title without JS in secondary pages

    Hi All,
    I am working on SSXA application with UCM 11g via Jdev 11g.
    We have more than 2,000 secondary pages which represent different users. The secondary page comprise of HEADER, BODY and FOOTER.
    I have title tag in header which displays static text. Body part has a placeholder (assigned a region template), which is responsible to display users data emaiid, phone number and username etc. vai datafile.
    Now I have to display dynamic content in title, the dynamic content will come from datafile (which is username).
    So the problem is, how can I assign this TITLE value in the hearder part when I get the dynamic value in BODY.
    Constraints:
    1. I can't use JavaScript as Crawler will not read it. I tried document.title already.
    2. I can't remove the static value in header as we have many primary pages which uses the same header file.
    I know its weird one but I need your expert help on this.
    Thanks,
    MAK

    If it's the user name, why not just use #active.dDocAuthor?
    If it's stored in a data file element, use wcmIncludeElement() and append it to the title:
    <!--$pageTitle = pageTitle & " - " & wcmIncludeElement(#active.region1, "wcm:root/wcm:element[@name='[element name that contains username']/node()")-->
    replace "region1" with the name of the placeholder that's used in the BODY.

  • Duplicate title tags in soft repeat region google

    hello,
    i have a page that has a soft repeat region on it that gives
    the following
    link
    /mypage.asp?wee=191&tfm_order=ASC&tfm_orderby=dcountry_usr
    My question is. In google
    Dashboard > Diagnostics > Content analysis
    the above link is reported to have Duplicate title tags, how
    can I fix this
    to be seo compliant.
    regards
    k

    Twocans wrote:
    > hello,
    > i have a page that has a soft repeat region on it that
    gives the following
    > link
    >
    >
    /mypage.asp?wee=191&tfm_order=ASC&tfm_orderby=dcountry_usr
    >
    > My question is. In google
    >
    > Dashboard > Diagnostics > Content analysis
    >
    > the above link is reported to have Duplicate title tags,
    how can I fix this
    > to be seo compliant.
    >
    > regards
    >
    > k
    What is your title at the moment? It sounds like you need to
    test for
    each parameter and display a unique title for all
    possibilities.
    So, if tfm_order does equal ASC, dynamically place "in
    ascending order"
    in your title, and the same for the order by parameter from
    the
    querystring.
    Dooza

  • The Location bar shows me the TITLE tag info for a page in large font + the URL in small font. How can I turn off the display of the Title tag, I just want to see a list of URL's. Bad design to force it that way, I don't like it. I know what a URL is.

    '''YAHOO'''
    http://www.yahoo.com
    I don't need the YAHOO. I find it so completely annoying that you have forced me to look at TITLE tags when I am trying to find the URL I want. This ought to be a setting that I could control. Is there a hack into my registry, or something along those lines, so I can turn off this horrible design element.

    Mozilla hasn't changed anything like that in Firefox 3.6.x versions, which is getting security patches but not any further development of new or existing features. Plus, Mozilla doesn't install anything related to Yahoo, something else probably installed that.
    Please provide a screenshot of what you are talking about. <br />
    https://support.mozilla.com/en-US/kb/Adding+screenshots <br />
    There was a feature similar to what you are describing, that was in and out of the Firefox 4.0 betas last fall, but the 3.6 versions never had anything remotely like what your description has me visualizing.
    Ate you sure that one of your add-ons isn't doing that? <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Dynamic title for Chart created by an xml-file in SAP ChartDesigner

    Hello everybody.
    I created an xml-file with SAP ChartDesigner for using it in my abap program. I import this file as a MIME-Object.
    Everything works fine, i declared my charts and all my values.
    But now I need a dynamic title on the top.
    And know that I can give a title in my xml. But it's not dynamic.
    I looked into the xml file and the path for the title is:
    SAPChartCustomizing
    Elements
    ChartElements
    Title
    and then Caption.
      p_ixml_doc = g_ixml->create_document( ).
      l_encoding = g_ixml->create_encoding( byte_order = if_ixml_encoding=>co_little_endian character_set = 'utf-8' ).
      p_ixml_doc->set_encoding( l_encoding ).
      l_chartdata = p_ixml_doc->create_simple_element( name = 'SAPChartCustomizing' parent = p_ixml_doc ).
      l_elements =   p_ixml_doc->create_simple_element( name = 'Elements' parent = l_chartdata ).
      l_chartelements = p_ixml_doc->create_simple_element( name = 'ChartElements' parent = l_elements ).
      l_title = p_ixml_doc->create_simple_element( name = 'Title' parent = l_chartelements ).
      l_element = p_ixml_doc->create_simple_element( name = 'Caption' parent = l_title ).
      l_element->if_ixml_node~set_value( 'QRK-Mittelwert' ).
    In my opinion, it's the right path :/
    My other values i declare like this.
    l_series = p_ixml_doc->create_simple_element( name = 'Series' parent = l_chartdata ).
      l_series->set_attribute( name = 'label' value = 'TO' ).
      l_series->set_attribute( name = 'customizing' value = 'Series1' ).
      loop at gt_mw into gs_mw.
        lv_tabix = sy-tabix.
        l_point = p_ixml_doc->create_simple_element( name = 'Point' parent = l_series ).
        l_element = p_ixml_doc->create_simple_element( name = 'Value' parent = l_point ).
        l_element->set_attribute( name = 'type' value = 'x' ).
        l_element->if_ixml_node~set_value( lv_tabix ).
        l_element = p_ixml_doc->create_simple_element( name = 'Value' parent = l_point ).
        l_element->set_attribute( name = 'type' value = 'y' ).
        l_element->if_ixml_node~set_value( '35.00' ).
      endloop.
    It works...and i already checked this solution for my title, but it didn't work.
    I call the xml file with the method cl_wb_mime_repository:
    CALL METHOD cl_wb_mime_repository=>load_mime
        EXPORTING
          io              = lv_io
        IMPORTING
          bin_data        = lt_xmlr
        CHANGING
          language        = sy-langu
        EXCEPTIONS
          no_io           = 1
          illegal_io_type = 2
          not_found       = 3
          error_occured   = 4
          OTHERS          = 5.
      CHECK sy-subrc = 0.
    *-- Convert raw to xstring
      CREATE OBJECT lo_conv.
      LOOP AT lt_xmlr INTO ls_xmlr.
        CALL METHOD lo_conv->convert
          EXPORTING
            inbuff    = ls_xmlr
            outbufflg = 25000
          IMPORTING
            outbuff   = lv_xstr.
        CONCATENATE p_xml lv_xstr INTO p_xml IN BYTE MODE.
    Maybe somebody can help me.
    Thanks a lot.

    I got it!
    This thread helped me.
    [http://forums.sdn.sap.com/thread.jspa?threadID=1343796|http://forums.sdn.sap.com/thread.jspa?threadID=1343796]

  • Dynamic title in report!

    in the report we will use sy-title to display report title.
    i want to set dynamic title reference with user name.
    so in report code initiazition.
      i use: sy-title = sy-uname . but this just influce once time. in other event or in report list the title will display static title what we create report .
    so i want to change title.
    i open screen 1000.
    and want to add  set titlebar command in PBO.
    PROCESS BEFORE OUTPUT.
    MODULE %_INIT_PBO.
    MODULE %_PBO_REPORT.
    MODULE %_PF_STATUS.
    MODULE %_PNPPERNR.
    MODULE %_PNPMASSN.
    MODULE %_PNPMASSG.
    MODULE %_PNPSTAT1.
    MODULE %_PNPSTAT2.
    in the my report i write:
    MODULE %_PF_STATUS OUTPUT
    MODULE %_PF_STATUS OUTput.
    ENDMODULE.                    "%_PF_STATUS OUTPUT
    but when i active ,will get syntax error.
    so how to reset report title .
    some can give me a idea. thank you very much.

    Dear xiaobing xue,
    After seeing you code posted here, I have come to know that you are trying change SE38 report with selection screen in SE51. It wont work out.
    Set pf-status after Start-of-selection event.
    SET PF-STATUS 'STATUS'.
    set TITLEBAR 'TITLE'  with sy-uname.
    First set pf-status by double clicking on 'STATUS'. After that Double click on 'TITLE' and give title like below.
    'This title is for &'. & is replaced with sy-uname.
    I hope that you will get.
    Thanks
    Venkat.O

  • How to set the value of the title -tag

    Hi
    I try to set the html-title of the html file rendered by the portal framework. I've found the <head>-tag in the head.jsp skeleton file but there is not title tag. How is the header rendered and how could I determine the title for each page individually?
    thanks for any help...
    marc
    Message was edited by mbae at Sep 22, 2004 10:26 AM

    What issues did you have with setting the backing file to the desktop?
    One solution is to set a page backing file for every page that you want to allow to affect the portal's overall title. In the page's backing file (which could conceivably be shared across all the pages in question) you would write some code that would do something like:
    1) get the desktop backing context
    2) get the desktop's title
    3) get the page's title from the page's backing context
    4) append the page's title to the desktop's title
    5) set the new title on the desktop backing context
    I haven't tested this code, but the common page backing file's relevant method would look something like this:
    public void preRender(HttpServletRequest request, HttpServletResponse response)
        DesktopBackingContext desktop
            = DesktopBackingContext.getDesktopBackingContext(request);
        String title = desktop.getTitle();
        PageBackingContext page
            = PageBackingContext.getPageBackingContext(request);
        title += " - " + page.getTitle();
        desktop.setTitle(title);
    }

  • How to add src, alt and title tags to a PS generated Web Photo Gallery

    I do some web design and need to add some tags to a web photo gallery created by Photoshop. Maybe this question should be directed to the GoLive / Dreamweaver Forum but since the gallery was created in PS I thought I'd start here.
    I need to add src, alt and title tags to the images in the web gallery. Normally this is as simple as working on the code in the html page in which the image sits but the PS gallery doesn't seem to be that simple.
    Can anyone tell me exactly how, and which files I need to work on, to add these tags to each of my 42 gallery images?
    Thanks.
    John.

    You can't do it in Photoshop.
    You can open the pages in a text editor adn easily ad any tags you want. They are simply html pages.
    If you really want to, you can use Dreamweaver or Golive. Using a text editor is generally faster and easier because you can just copy/paste between the files and not have to worry about code rewriting in the WYSIWYG applications. Don't believe the GoLive/Dreamweaver hype about "round trip code" they both will alter code.

  • Title tag does not display all characters

    Hello,
    I think my question is probably extremely easy, but because I am new, I have no idea..
    I bought a web template and so far all is fine.
    One thing, Each page has a header, body text that is all entered by an xml file.
    The header should be displayed by the title tag content. It looks like this...
    <title>Text Field 2</title>
    But when I look at my browser, some of the characters "Text Field 2" are missing and it displays "e Fed"
    please check this link to see what I mean...
    http://test.familycards.nl/
    Does anyone have any idea why some characters do not appear? I tried caps, numbers,.. they all react the same.
    thank you in advance...

    Thank you for your response and help!
    I did think of that.. Unfortunately the template did not come with .fla files, only a host of xml files. I did look for font info to see if perhaps there
    might be conflicts with fonts or missing fonts. but as far as I can interperate the coding, cant find anything.. I will now include some coding here.
    Perhaps it is helpful?
    This is the beginning of the xml page I am working on to add a header and body text...
    <?xml version="1.0" encoding="utf-8" ?>
    <data>
              <title>Text Page</title>
              <field>
                        <title>Text Field 1</title>    ............        (this is the title tag that I place my header text in. but when it shows in browsers as [e Fed]).. the T, x,i,d,l are all missing..
    <text><![CDATA[body text to come here.....
    This is the global options xml...
    <?xml version="1.0" encoding="utf-8" ?>
    <data>
              <global bg="images/bg1.jpg" logo="images/logo.png">
                        <title>Glance Photo Portfolio</title>
                        <slogan>Best photos</slogan>
                        <copyright>Copyright 2009. All Rights Reserved by BK Rascal Multimedia Productions</copyright>
              </global>
              <graphicslib theme="theme4.swf" />
              <playlist src="options/playlist.xml" />
              <menu startPage="homepage">
                        <item name="HOME PAGE" deeplink="homepage" type="page" content="txt1" location="options/text1.xml" visible="1" />
                        <item name="ABOUT US" deeplink="about" type="menu" content="" location="" visible="1">
                                  <item name="WHAT WE DO?" deeplink="whatwedo" type="page" content="txt2" location="options/text1.xml" visible="1" />
                                  <item name="EXHIBITION" deeplink="exhibition" type="page" content="txt2a" location="options/text1.xml" visible="1" />
                                  <item name="MY PUBLIC FORUM" deeplink="awards" type="page" content="txt1" location="options/text1.xml" visible="1" />
                                  <item name="FOURTH DROP" deeplink="awards" type="page" content="txt1" location="options/text2.xml" visible="1" />
                        </item>
                        <item name="NEWS" deeplink="news" type="page" content="news" location="options/news.xml" visible="1" />
                        <item name="GALLERY" deeplink="gallery" type="menu" content="" location="" visible="1">
                                  <item name="OBJECTS" deeplink="objects" type="page" content="gallery" location="options/gallery3.xml" visible="1" />
                                  <item name="PEOPLE" deeplink="people" type="page" content="gallery2" location="options/gallery2.xml" visible="1" />
                                  <item name="NATURE" deeplink="nature" type="page" content="gallery" location="options/gallery1.xml" visible="1" />
                        </item>
                        <item name="CONTACTS" deeplink="contact" type="menu" content="news" location="options/news.xml" visible="1">
                                  <item name="CONTACT PAGE 1" deeplink="contact1" type="page" content="cform" location="options/contact.xml" visible="1" />
                                  <item name="CONTACT PAGE 2" deeplink="contact2" type="page" content="cform2" location="options/contact.xml" visible="1" />
                        </item>
                        <item name="AURORAFlASH" deeplink="blog" type="link" content="" location="http://auroraflash.org/blog/" visible="1"/>
                        <item name="TEST TAB" deeplink="blog" type="link" content="" location="http://auroraflash.org/blog/" visible="1"/>
              </menu>
    </data
    Thats it...
    I hope this helps. (thanks again!!!)

  • Cannot create title tag, meta tags for iWeb site, per Google requirements.

    I created simple website in iWeb to meet art show deadline
    www.barbaraturnertigrett.com
    but when I tried to submit to search engines (via GoDaddy "Traffic Blazer" product), several issues or errors noted...no title tag, meta tags, keywords, too little text, etc. Was told by Apple, there is no fix at this time...no way to access to actual HTML code, to add title tag or meta tags, etc...since iWeb is merely a consumer, not professional enterprise, product. Researching further, I even tried to submit to Google directly, not via GoDaddy "Traffic Blazer", but could not "verify" my url site (because meta tag missing and/or could not upload entire html file, as required. I'd produced client websites in past on Adobe GoLive and was learning Dreamweaver, when someone alerted me to simplicity of iWeb. It is clean and simple, but wish I'd anticipated these other issues. Is there a solution to this with iWeb or should I finish learning Dreamweaver and start over? Thanks for any advice you can share.

    Both these last postings were helpful. THANKS. I could not open home.html file with "text edit", but when using Taco HTML Edit, it would open...so I dusted off (novice) HTML skills and entered the appropriate title tag and meta tag, per Google's requirements. Then, went to my GoDaddy hosting control center and (I think) I uploaded new file with new tags. Seems to be major lag time with any changes, so not sure my site is now successfully "verified", on Google. Hope I did not mess anything up, in the process. There seems to be various lag times before any changes take effect (right??).
    So now...I'm very glad to find out about iMap and will buy it and watch the tutorial video, as instructed...since I am unsure if last 'fix'...fixed the problem, etc...and always eager to learn more. This is my first Apple discussion post, and certainly impressed/grateful for expert help. THX again.

  • Contents of HTML title Tag not rendering in my AIR HTML component

    I have an Air Application that uses a HTML Component. The HTML page that the component is rendering includes images with title tags. The tags render fine outside the Air Application, but when run in the AIR application, they do not render. Any help when this issue would be greatly appreciated.

    what html component?

  • Contents of HTML title Tag not rendering in AIR HTML component

    I have an Air Application that uses a HTML Component. The HTML page that the component is rendering includes images with title tags. The tags render fine outside the Air Application, but when run in the AIR application, they do not render. Any help when this issue would be greatly appreciated.

    what html component?

  • How can I view and edit  title tags in files panel ?

    I have a very big website and I would like to find a way to
    more efficiently view and edit page title tags.
    Is there any way to have a view which shows the file names
    AND the title tags? Is there a way to edit title tags using such a
    view?
    Thanks in advance for your help!
    Laila

    Hi yea,
    back up your site.
    open your site in dw, open any page in question and do a ctrl
    f .
    you will have a find a replace window pop up
    the "find in menu" select "Entire current local site"
    paste <title>Untitled Document</title> inside the
    FIND area or what ever you
    have there that needs to be changed throught out your site.
    it the replace window paste <title>guinness or what
    ever</title>
    then by clicking replace all, all reference to
    <title>Untitled
    Document</title> in your current local site will be
    changed to
    <title>guinness or what ever</title>
    go to the dw help if u want more info on this , make sure you
    back up your
    site first in case you mess things up.

  • Title Tags not working with iWeb SEO Tool

    I created my website using iWeb and realizing iWeb is very controlling over title tags and such, I downloaded the iWeb SEO Tool.  I have recorded my title tags and codes but when I search my site on google, Home is still recorded as the title tag.  I even went so far as to add an HTML Snippet to change the title tag using java script but still no luck.  Please help! 

    The main question is :
         Does the title you added show in the browser title bar?
    If it does then SEO tools did its job.
    But don't expect Google to stand waiting next to you and updates its database after you pressed the ok button.
    Check again in a few weeks/months.
    And do not waste your time with that silly application or using a JavaScript in the HTML Snippet for the intended purpose. Google does not execute the JavaScript.
    Just read this very carefully :
    iWeb uses the textbox in the Header layer of an iWeb page as the title in the browserwindow.
    Do not remove the original textbox, as you cannot replace it other than by selecting another theme and then change it back to the original theme again. Ruining the layout in the process.
    If the textbox in the Header is missing, iWeb uses a textbox down the page in the Content layer. If that textbox is also missing, it uses another textbox. If that fails it uses the pagename in the Sidebar.
    Sometimes you may want a different text in the titlebar and not display it on the page itself. Or not display it at all.
    So use that textbox in the Header layer. Type your text. Then select the textbox. In the Inspector choose T, click a color to open the color palette and drag the opacity slider to 0 (zero).
    Do Command-T to open the font palette and make the font smaller. (Or do Command--(minus)) Also use a font that doesn't change to an image. Arial is a good font. Perhaps do it first before making the text invisble.
    Resize the textbox. You may want to change the height of the Header layer.
    Do Command-Shift-B to move the textbox to the back, possibly behind other objects.
    Next add a optional second textbox to the Header layer and use that one to display text on the page.
    If you want to move the textbox to the front again to make changes, but can't remember the location on the page, drag the area with the mouse to select the objects.
    Deselect objects you do not want to move forward by Command-dragging the mouse over these objects.
    Next do Command-Shift-F to move the textbox to the front. Repeat the steps in reverse order to make the text visible.
    Practice.
    Then concentrate on creating interesting webpages.

  • Dynamic XML TAGS in PL/SQL

    Hi I wish to have dynamic xml tags in pl/sql e.g. say i have a table xml_table with xml_tag and tag_value as two columns. Let us say it has a rows
    XML_TAG = timezone
    TAG_VALUE = UK
    I want the output in the following format
    <timezone>UK</timezone>.
    Any ideas how to achieve it using ORACLE functions and not concatenate <> to the columns? Help would be much appreciated.

    This is a forum discussing questions related to Oracle Portal. I'd recommend you to take a look at XDB and XSQL, on Oracle's Web site at http://otn.oracle.com.
    Hope it helps,
    Peter

Maybe you are looking for

  • Using Apple TV to Display photographs from a windows pc?

    Looking into a Apple TV.  Have Macs at home, but also have kids Windows 7,8 laptops.  Can I use Windows PCs over Wifi to display photographs on the TV through Apple TV?

  • No picture, but sound during commercial

    Recently, our TV goes black during some commercials, but the sound is still on.  I thought it was our HD set top box, but it is happening on another box that isn't HD.  Is anyone else having these issues?  It happens ONLY during some commercials.  

  • How to open multiple hotmail accounts at the same time ?

    Hi, Seems maybe normal for some people but I coming from internet explorer and with this explorer I was able to open multiple hotmail accounts at the same time, by default firefox can't do that, is there some setup to modify to open these at the same

  • Toolkits and Oracle AS 10g

    Hello, Do the XML and PL/SQL Web toolkits both come with Oracle AS 10g? Or do they need to be aquired separately? How about any Oracle PreCompilers like C/C++? Where a they 'bundled'? (I know it is not with Oracle AS) Thank u.

  • F4 for LDB name on the screen

    I want to populate the names of LDB's in a F4 on a selection screen.Please specify the dataelement or search help for that. Rajiv Kanoria