Commenting functionality for blog pages

Does anybody have any information as to when/how Apple might be planning to address a horrible oversight in an otherwise solid 1.0 release... NO COMMENTS!
Is a blog really a blog without commenting functionality? I realize I could publish to a folder and then tweak the code to add a third party service like Haloscan, but that kind of defeats the "one-click" appeal of iWeb. I am still surprised to see that this software made it out the door without some implementation of a commenting solution.
I would be happy with either an Apple proprietary system via a future update OR the ability to insert snippets of code right in the iWeb workspace from third party commenting services. Either way, currently my blog is just a series of static articles without the communal discussion aspect that commenting provides. It's very frustrating when you look at all the other blogging options out there, and nearly every single one allows for comments.
Apple, please don't make us wait until 2007 and another $99 Family Pack to address this crucial oversight! Otherwise, I really love this software. I'm rebuilding my own blog and site with it

A hack has been worked out using Javascript, and it works very well. See this thread: http://discussions.apple.com/thread.jspa?messageID=1609160#1609160
Thanks again, Chad!

Similar Messages

  • How do I turn off comments on my blog pages?

    I see that I can create a rule that requires comments to be approved before they are posted, however I want to turn them off completely. I don't want "Post a comment" on my blog pages.

    Hi,
    You can remove the comment feature completely within the blog layout. 
    Site manager -> module templates -> Blog Layout -> Blog Post Details
    Kind regards,
    -Sidney

  • How to customize / edit wiki theme in content_entry.xsl file to display tags for blog pages and not wiki pages?

    I am trying to customize a wiki theme by displaying the "Edited Today at… by…" for only blog pages and not wiki pages. 
    I tried editing the content_entry.xsl with an xsl if tag, but failed.
    <xsl:if test="context/link='/groups/groupname/weblog/'">
      <div id="entry_date" class="entry_date">
        <a href="{../contentEntry/historyURL}" id="history_link" title="{../../jsstrings/tooltips_history_link}" onclick="return false"><xsl:value-of select="../../strings/History"/></a>
        <span id="history_time_author"><xsl:value-of select="historyTimeAuthor" disable-output-escaping="yes"/></span>
      </div>
    </xsl:if>
    What is the correct <xsl:if test=""> tag, that would execute this? 
    For <xsl:if test="context/"> I believe the content after "context/" are variables like link, baseHREF, contentEntry.  What are other variables I can use?

    I also tried it this way, but does not seem to work. 
      <xsl:if test="context/link='/groups/groupname/weblog/'">
            <xsl:template match="context/entryMeta">
                <div class="metadata" id="entry_metadata">
                    <div class="start startmetadata"><span></span></div>
                        <div class="contents contentsmetadata">
                            <div id="entry_date" class="entry_date">
                                            <a href="{../contentEntry/historyURL}" id="history_link" title="{../../jsstrings/tooltips_history_link}" onclick="return false"><xsl:value-of select="../../strings/
    History"/></a>
                                            <span id="history_time_author"><xsl:value-of select="historyTimeAuthor" disable-output-escaping="yes"/></span>
                                  </div>
                             </div>
                        <div class="end endmetadata"><span></span></div>
                   </div>
              </xsl:template>
         </xsl:if>

  • Easier way for others to comment on blog page

    For others to make a comment on my blog page they have write in or cut and paste the URL before it can be posted. Other sites don't require it so it is not utilized by friends and family. I will probably use my other blog sites instead.

    The BC Comments Module is quite basic! You might wanna consider using a 3rd party app like disqus.
    @webmosphere

  • Blog Page Add a Comment

    Just lost all posted comments on the blog page. In the Archive section, I can see 15 comments for my last entry, but they do not show when I access my site. All the other enties read "NO COMMENTS". Is there any way to restore the comments? Help!!

    See this thread for blog comments patch: http://discussions.apple.com/thread.jspa?threadID=1564966&tstart=0
    Daryl Grunau posts my patch for blog comments (FF3) on his blog.

  • Suddenly unable to post comments on iWeb blog - image verification error

    People suddenly can't post comments to my blog page (web.me.com/stannerory). I've tried this myself, and posting continuously fails at the image verification process, one receives an error message that says the letters entered don't match the image, yet they do. Someone suggested that cutting the comment, closing, reopening, and pasting, and doing the process a second time would work, but I haven't found this to be successful either. Is there some kind of a workaround? Anyone else having this issue?

    OT -
    Thanks for your efforts.
    It seems to be intermittent now, which is an improvement. I still can't add or remove a comment without fail. It's some consolation that it might be a server issue, but if it were, wouldn't there be all kinds of unhappy Apple users complaining about the issue, AND wouldn't the mobileMe website have some kind of problem indicator light flashing? Of course it would.

  • Modify/Change the CSR for view page for a POST in a Blog Site.

    I am working on CSR to add a button and change the look and feel of like
    and comment button for a Blog Site. Currently I am able to achieve
    this, and it is functional(Button).
    I am using the below (JSLink) code to achieve it.
        (function () {
            var overrideCtx = {};
            overrideCtx.Templates = {};
            overrideCtx.Templates.Fields = { 'Body':{'View': CBody} };
            console.log("Registering CSR");
            SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
        function CBody(ctx) {
            var ret = ctx.CurrentItem.Body + "<b>" +
        "<button onclick='myfunc(ctx);' type='button' >Report Abuse</button>" + "</b><hr/>" ;
            return ret;
    Now I should make it look like this.
    is there a way that i can append a button after the Comment button of Image 1, after that manipulating css will be easier.
    I tried to override like below,
        overrideCtx.Templates.Fields = { 'PostCategory':{'View': CDate} };
        function CDate(ctx) {
            var ret =  "<br> <b>" +
        "<button onclick='func(ctx);' type='button' >One More Test</button>" + "</b><hr/>" ;
            return ret;
    But for my luck it didn't worked at all.
    what field should I override in my case. CSR is under documented for
    SharePoint please suggest me which field/Tag/View/Whatever is need to
    overridden.

    Hi,
    The Client Side Rendering(CSR) may not be able to meet your requirement as the “Comment” button is not a field in the Post.aspx page, it just work as a button that when we click
    on it, the TextBox “Add a comment” will be focused for waiting user input.
    A workaround is that we can just apply JavaScript to this page to add elements you want behind the “Comment” button.
    For how to find a specific element in a page and inject HTML on a page, you can take a look at the links below for a quick start:
    How to find a specific element on a page using JavaScript:
    http://javascript.info/tutorial/searching-elements-dom
    Listen to the click event of a button:
    http://idratherbewriting.com/2013/02/04/events-and-listeners-javascript/
    http://coding.smashingmagazine.com/2013/11/12/an-introduction-to-dom-events/ 
    Inject HTML on a page:
    http://stackoverflow.com/questions/3762385/best-way-to-inject-html-using-javascript
    Feel free to reply if there are still any questions. 
    Best regards
    Patrick Liang
    TechNet Community Support

  • How can I add a "search" field for web pages content-not blogs or podcasts?

    This seems to be such a basic function, I can't believe I'm having so much trouble. I don't have a blog or a podcast on my new website that I'm in the process of designing. So how do I allow people who'll visit my site to search there for specified content? The only instructions I find are for the RSS in inspector for blogs or podcasts. All I want is for people to be able to search my site/web pages (that have no blogs or podcasts on them). This must be a common request... or am I crazy? How do I do that?
    Thanks for your help.

    I think I've answered my own question after a few hours of searching:
    http://services.google.com/searchcode2.html?accept=on
    Thank you Google.

  • HT4686 How can I publish my website developed using iWeb and have all functions of the blog page work as it did with MobileMe?

    I have developed a website using iWeb and it includes a blog page selected from stock pages in iWeb.  I'm publishing it with GoDaddy and when I do that the interactive functions of the blog page don't work. (Adding comments and photos as well as searching).  Is there any simple way to host this site somewhere so that those functions work?

    No, because all those functions were MobileMe only and now that MobileMe has gone, they won't function any longer.
    To enable these to function, you either need to add them yourself or change your blogging platform to something else such as WordPress etc., and create a link from iWeb to your WordPress blog or embed the blog page using iframe into your iWeb site.
    Commenting systems such as Disqus or http://www.intensedebate.com work quite well.

  • How to hide username in comments section of sharepoint 2013 blog page

    I have a blog page in SharePoint 2013. In that, in the comments section, i have to hide the username of the person who posted the comment.
    I also have to hide it from the page source, hence i cannot use css. Please suggest some solution,if possible using xslt.

    Open the blog.xsl file which is located in "/_layouts/XSL/blog.xsl"
    For safe side take the back up of blog.xsl file and open it and find the below div
    <div class="ms-PostFooter">
    <!-- For the author field, render it using the span style and preceed it with the word "by"-->
    <span class="ms-postfootercolor"><xsl:value-of select="$thisNode/../@resource.wss.ByPrefix"/></span><xsl:text disable-output-escaping="yes" ddwrt:nbsp-preserve="yes">&amp;nbsp;</xsl:text><xsl:call-template name="RenderAuthor"/>
    <xsl:text disable-output-escaping="yes" ddwrt:nbsp-preserve="yes">&amp;nbsp;</xsl:text><span class="ms-postfootercolor"><xsl:value-of select="$thisNode/../@resource.wss.blog_postfooter_at"/><xsl:text disable-output-escaping="yes" ddwrt:nbsp-preserve="yes">&amp;nbsp;</xsl:text>
    <xsl:choose>
    <xsl:when test="$ContainerId"><xsl:text disable-output-escaping="yes">&lt;#= spMgr.RenderFieldByName("PublishedDate", listItem, listSchema) #&gt;</xsl:text></xsl:when>
    <xsl:otherwise><xsl:value-of select="@PublishedDate" disable-output-escaping="yes"/></xsl:otherwise>
    </xsl:choose></span>
    <div>
    In the above div remove the span tag
    <!-- For the author field, render it using the span style and preceed it with the word "by"-->
    <span class="ms-postfootercolor"><xsl:value-of select="$thisNode/../@resource.wss.ByPrefix"/></span><xsl:text disable-output-escaping="yes" ddwrt:nbsp-preserve="yes">&amp;nbsp;</xsl:text><xsl:call-template name="RenderAuthor"/>
    If you any help please let me know

  • How to view new comments on Wiki or Blog Pages?

    I am trying to find a way (either via RSS, via Email or via a custom search) to be able to identify OSX Server Wiki- and Blog-pages with new comments easily. Unfortunately this seems to be somewhat of a problem, since most searches I tried do not include comments. Plus, I could not figure out if there is a RSS feed for new comments on posts (the usual RSS feeds do not include the comments on the pages). Does anybody know a way to get this working with the 10.5 Server Collaboration tools?
    Thanks,
    Floh

    I have searched this forum extensively and found lots of people with the same issues.. but no solutions. It seems like this just might not be possible with the Server Wiki. If anyone does find a solution I would love to hear what it is!
    In the meantime.. I have been telling users to add a comment, then click the edit button, add the text "Comment Added" as the comment about the page edit, and then click save. This makes it so that the page has been "updated" and will show up in an RSS feed with the title "Comment Added". It is a silly solution and adds extra time and complexity for people.. but so far it is the best solution I have come up with.

  • Comments added to blog change page's appearance

    Hi,
    I'm sorry if this is a repeat posting, but I couldn't find anything about it after a perfunctory search.
    When people add comments to my blog, it upsets the vertical layout of the page (i.e. white space doesn't stretch as far as it should). Looking at the pages in iWeb, there doesn't seem to be a problem.
    This page for example:
    http://web.mac.com/mccormickdavid/iWeb/TrombonesInTechno/Blog/2E725615-0820-47EB -A9A7-9256043FABA9.html
    the space behind 'bosh blog podcast photos' should be white up to the black bar (and appears so in iWeb). Same applies at the bottom of the page.
    Any ideas? Thanks in advance,
    David
    p.s. apologies for the mundane nature of the site.

    I have seen this problem with the shifting background before. Your ultimate option is to eliminate the page background and let the browser background show through.
    Another workaround might be to make a screenshot of a square of white space (your background), then use that square as your page background image...choose tiled in the dropdown menu of the inspector.

  • Can I change the format of my "comments" box on my blog page

    Hi there, I'm new to iWeb and have designed my first website. Great fun and I'm very excited about it but on my "blog" page I would like to get more information from the comment senders. Is there a way I can change the comment box format? For example I would like to change "Comment as" to "Your name", "URL" to "Your occupation" and add two more fill-in fields. Is that possible?
    b.t.w. Is that html, java or php? sorry if I sound a bit ignorant, as mentioned I am new to this.
    Thanks for any advice
    Tony

    As you know MobileMe will be discontinued by Apple on June 30, 2012.  When MMe goes away so will your blog comments. 
    So if you want to continue your blogging you will have to create a blog on one of the existing blogging sites and copy and past your entries and comments into it.
    However, Rage Software has created an application, iWeb to WordPress, which will convert your blog to a WordPress blog, complete with your entires and user comments. 
    You can then use either WordPress.org or WordPress.com to create your blog and host it on your new server.
    This may be of some interest to you: Life After MobileMe.
    Furthermore it is now confirmed that iWeb, and iDVD, has been discontinued by Apple. This is evidenced by the fact that new Macs are shipping with iLife 11 installed but without iWeb and iDVD.
    On June 30, 2012 MobileMe will be shutdown. However, iWeb will still continue to work but without the following:
    Features No Longer Available Once MobileMe is Discontinued:
    ◼ Password protection
    ◼ Blog and photo comments
    ◼ Blog search
    ◼ Hit counter
    ◼ MobileMe Gallery
    All of these features can be replaced with 3rd party options.
    I found that if I published my site to a folder on my hard drive and then uploaded with a 3rd party FTP client subscriptions to slideshows and the RSS feed were broken.  If I published directly from iWeb to the FPT server those two features continued to work correctly.
    There's another problem and that's with iWeb's popup slideshows.  Once the MMe servers are no longer online the popup slideshow buttons will not display their images.
    Click to view full size
    However, Roddy McKay and I have figured out a way to modify existing sites with those slideshows and iWeb itself so that those images will display as expected once MobileMe servers are gone.  How to is described in this tutorial: #26 - How to Modify iWeb So Popup Slideshows Will Work After MobileMe is Discontinued.
    It now appears that the iLife suite of applications offered on disc is now a discontinued product and the remaining supported iApps will only be available thru the App Store from now on. However, the iLife 11 boxed version that is still available at the online Apple Store (Store button at the top of the page) and those still on the shelves of retailers will include iWeb and iDVD. Those two apps were listed in small, gray text on the iLife 11 box that I bought.
    Personally, if I didn't already have a copy I would purchase one to have it for reinstallation purposes if ever needed.
    OT

  • RSS feed for blog comments ?

    On a newly installed leopard server, I can't seem to find the url to subscribe to a blog's comments (not a specific post, but all of the comments posted to a specific blog). Is there any ?

    From the page you wish to get the comment feed for, view source and look for the meta tag: applecollab_commentuid
    It should look something like "groups/foo/discussion/45678" take that and subscribe to:
    http://server.com/groups/foo/discussion/45678/index.rss
    and that should give you the feed for the comments

  • Find function cntrl-f doesn't work for long pages. frustrating

    find function cntrl-f doesn't work for long pages. Works find on your competitions IE, though I strongly prefer FF.
    == This happened ==
    Every time Firefox opened
    == Several versions of FF

    Hi Cb,
    I did try that and it didn't work. the site in question (though I could pick any) is midwestmafia.com and I typed in capone (which is near the end of the page)
    Works well on IE, though I'd like to stick with FF.

Maybe you are looking for

  • How to install Photoshop CS3 disc on a Retina MacBook Pro?

    Just bought a new Retina Macbook pro and trying to install CS3... the program from my old Macbook would not work when moved to the new one. I have the original disc but this will not work on new Macbooks without a drive. Anyone any ideas?

  • A question about OS 5.0

    Hi, When will RIM release OS 5.0 for the Curve 8520? Best regards, Paulo Lino Solved! Go to Solution.

  • My ipod nano goes into sleep mode automatically and the music pauses

    Hi, The music on my Ipod Nano 6th, automatically stops after a minute. I have to go to the sleep/wake up button, then press play to start the music again. Is there any way to stop this. Is this happening because I have activated the watch on my home

  • I Phone wont Sync

    I have just activated my Micro Sim (Australia) and am trying to Sync to get started. However, the phone wont sync and will only let me use it for emergency calls. There is only one small bar that is registering for service, but my Mobile service prov

  • Multi-Forest LDAP Authentication

    Hi Guys We are trying to implement authentication and import across multiple domains We originally tried to build our own custom code but this has failed due to some unforseen errors. I have revert back to the inbuilt ciac option for import person an