Blog Post view disapper when Modified View to remove comments SP13

On my blog site on Post.aspx I edited the page, to modify the view so that we can remove the comments and likes from the posts. I saved my changes and the Post web part is no longer producing the post contents.
I have also completed the same process on the default.aspx Blog page and its just fine.
Please Please help.

Danielle ~ See this old thread:

Similar Messages

  • Blog post : "Bug in Create/Edit View Criteria Wizard (JDeveloper 11g)"

    hi
    Using steps 1 to 13 from the blog post "Bug in Create/Edit View Criteria Wizard (JDeveloper 11g)" by Andrejus Baranovskis, I have been able to reproduce the issue he describes.
    see http://andrejusb.blogspot.com/2008/12/bug-in-createedit-view-criteria-wizard.html
    I the blog post comments he writes "... there was no time for me to fill bug in Metalink ...".
    Maybe someone from Oracle can pick it up from this forum post and file it as a bug if it is one (and if possible post the bug number here).
    many thanks
    Jan Vervecken

    The mechanism is to create a reproduceable test case, create a Service Request in metalink.oracle.com, post the test case, and convince the analyst to file it as a bug.
    It may be not efficient at some time, but this the way it is handled.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Blog posting: Adobe Captivate 2 - Edit view

    Hi folks,
    Just to let you know, I have published my next blog posting,
    today I cover some of the new features available in the
    Edit view
    All comments welcomed.
    Regards,
    Mark

    Hello Boxing Boom,
    Many thanks for your kind words,
    everything you see in the sample movie was created in Adobe
    Captivate 2. Adobe Captivate 2 is awesome!
    Regards,
    Mark

  • Blog Post Comments - #comments anchor causing an error on 2nd page of comments

    We have run into a problem with blog posts on our SharePoint 2013 on premise installation (15.0.4649.1000). The problem is with the blog on the users' MySites.  On the front page of the blog, (https://mysite.url/personal/user_name/Blog/default.aspx),
    you are presented with a listing of the blog posts - displayed as a summary view.  So, this includes:
    -  the title (linked to the post ie https://mysite.url/personal/user_name/Blog/Lists/Posts/Post.aspx?ID=5)
    -  the publication date
    -  an excerpt of the post
    -  the author, the time posted
    -  the number of comments (linked to the post - but with an anchor to the comment section ie https://mysite.url/personal/user_name/Blog/Lists/Posts/Post.aspx?ID=5#comments).
    If you click on the Title (ie https://mysite.url/personal/user_name/Blog/Lists/Posts/Post.aspx?ID=5) everything is fine - the problem does not come up.
    If you click on the number of comments (ie https://mysite.url/personal/user_name/Blog/Lists/Posts/Post.aspx?ID=5#comments), here's where things go wrong.  The initial page loads fine, but if there are more than 10 comments, you have to go to the next page. 
    If you click the arrow to go to the next page you get the following error:
    Exception from HRESULT: 0x80131904
    Correlation ID:20a9f49c-d329-0015-874e-4818b529d673
    If I check the ULS logs, this is what I see:
    System.Data.SqlClient.SqlException (0x80131904): Conversion failed when converting the nvarchar value '5#comments' to data type int.    
     at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)    
     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)    
     at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)    
     at System.Data.SqlClient.SqlDataReader.TryHasMoreRows(Boolean& moreRows)    
     at System.Data.SqlClient.SqlDataReader.TryReadInternal(Boolean setTimeout, Boolean& more)    
     at System.Data.SqlClient.SqlDataReader.Read()    
     at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock)    
     at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock)  ClientConnectionId:e6cdabb3-a778-4c47-8024-73913a538b51  Error Number:245,State:1,Class:16
    So what I think is happening here, is that SharePoint is not stripping the comments anchor (#comments) from the post ID before it queries the database for all comments related to that post.  SQL is expecting an integer - in this case "5", but
    is instead getting "5#comments".
    For the time being we are going to let users know not to click on the comments, but to click on the title instead.  But we would like to correct this problem.
    Is there a fix for this?
    Thanks!

    Hi,
    In my environment, I do not encountered the error as yours. My environment has installed the 2014 December CU. I recommend you
    to install the 2014 December CU or the latest CU for SharePoint 2013.
    The article below is about the 2014 December CU for SharePoint 2013
    http://blogs.technet.com/b/stefan_gossner/archive/2014/12/09/december-2014-cu-for-sharepoint-2013-has-been-released.aspx
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Template breaks when viewing Blog Post Details Layout

    I've made a new ECommerce site with my own template (HTML en CSS). On the Blog Post List is my new template. But when I click on the title or permalink, Then my template breaks and all I see is the text from my template and the blog post detail. What can I do?
    Regards,
    A.H. Bakker

    Yes, just as I suspected.  A lot of your CSS, JS and IMAGE assets are referenced incorrectly in your page template or page.
    Right now, in your page template you are referecing IMG elements with a "relative URL":
    <img src="images/myimage.jpg"/>
    That will work fine on the homepage and first-level pages like "/" and "/blog" because the browser will attempt to load:
    http://yoursite.com/images.myimage.jpg
    But, if like on your blog detail pages which are located deeper in the websites folder structure "/blog/nog-maar-eentje" since this URL places you on the "nag-maareetje" page inside the "blog" folder, your relative URL will lead the browser to try and load
    http://yoursite.com/blog/myimage.jpg
    That is not the correct location for our images folder which is directory in the site's root folder.  To avoid this issue, you need to update your references to all images that's SRC attribute start with "images/" and change it to a "site relative URL" simply by prepending a "/" at the beginnging of the SRC attribute:
    <img src="/images/myimage.jpg"/>
    You'lll need to replicate this process for your CSS and Javascript references too. CSS references will look like:
    <link href="css/style.css" rel="stylesheet" type="text/css" />
    Becomes:
    <link href="/css/style.css" rel="stylesheet" type="text/css" />
    And javascript:
    <script type="text/javascript" src="js/lib.js"></script>
    Becomes
    <script type="text/javascript" src="/js/lib.js"></script>
    Anywhere that a reference to a javascript, stylesheet or image starts without a slash, "/" and just begins with the folder or asset ("images/...", "myimage.jpg") are relative URLs. You'll also see URLs that are absolute and those are URLs in your code that start with "http://yoursite.com" or "http://yoursite.businesscatalyst.com". Those you don't have to worry about since they are absolute and won't get mucked up when you are trying to load those from page within your site.
    After you edit your page templates you might need to fix the same problem in your pages that are in a subfolder of your site.

  • Path issue leaving me unable to add blog post content in design view

    Hi guys,
    I am unable to add blog post content in design view when a template is applied to my blog. BC support have told me they fixed the problem by making minor changes to the paths of the css and javascript files and then told me to post on here for the solution.
    When I call the files using <link rel="stylesheet" href="/css/custom.css" /> everything displays perfectly but in BC I can't add blog post content in design view. I can edit in html but this isn't ideal for clients to update the blog.
    If I change the paths to <link rel="stylesheet" href="css/custom.css" /> it fixes the problem and I can then edit blog content in design view but all blog pages that are in folders display incorrectly. Only the main blog page display properly.
    I'm sure the answer is simple but I can't find it so any help would be greatly appreciated. Thanks
    Pete

    I took a look at your page URL and can't find any CSS issues or styles that would directly affect you editing/adding content to a blog post via the content editor.
    Make sure you either clear your cache or try in another browser to see if the problem is localized to your current browser.
    If you still have the problem can you link me to a screencast (you can use Jing if you don't have a screencast program: http://www.techsmith.com/jing.html) of what you are experiencing?

  • Problem viewing and reading blog posts

    I have several friends comment to me that they have trouble viewing and reading my blog posts. They have told me when the click on the "read more" to read the entire blog posts, it jumbles the pictures and text together so they can't see or read any of it. This has happened to multiple people and I can't seem to find an explanation on the forums for it. I have ilife 08 now. Please help! I hate paying $100/year when my friends and family can't view my blog properly!

    You really need to publish the URL to your blog to get some help.

  • Display only a part of a blog post in the summary view

    Hello,
    Has anyone come across an effective way to set the size, either by pixels or the number of characters, that is displayed for blog posts in the summary view? I'm working with a blog that has some very lengthy posts, and we want to reduce the amount that people
    have to scroll down the page on the homepage of the blog.
    It's worth noting that I've come across a couple different potential solutions, but have had issues because the body of the post is an "enhanced rich text" field.
    Thanks in advance for any help!

    Hi Bogan,
    According to your description, my understanding is that you want to display only a part of the blog post in the summary view.
    I recommend to edit the homepage in SharePoint Designer and modify the XSLT to achieve your goal.
    Here is a link for you to refer:
    http://heatherwaterman.com/2011/05/customizing-the-blog-posts-in-a-sharepoint-blog-template/#lightbox/10/
    Here is a similar thread for you to take a look:
    http://social.technet.microsoft.com/Forums/en-US/77465d4d-0db7-4736-8358-e9b853a644d7/default-blog-site-summary-view-of-posts?forum=sharepointgeneralprevious
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Get collaboration content (Discussion Board, Blog Posts, Wikki) last view time in SharePoint 2013

    Hi,
    How to get get collaboration content (Discussion Board, Blog Posts, Wikki) last view time in SharePoint 2013. I have tried using SPAudit setting but its not returning
    list item view time. I have enabled the SiteCollection Audit setting for "Opening or downloading documents,
    viewing items in lists, or viewing item properties". I have tried using below code.
    SPSite site = new SPSite(siteURL);
    SPWeb web = site.OpenWeb();
    SPList list = web.Lists[listName];
    SPListItem item = list.GetItemById(itemId);
    SPAudit audit = site.Audit;
    SPAuditQuery query = new SPAuditQuery(site);
    query.RestrictToListItem(item);
    query.AddEventRestriction(SPAuditEventType.View);
    SPAuditEntryCollection coll = audit.GetEntries(query);
    Is there any other way to get last view time in SharePoint
    2013?? or any changes in above code?
    Thanks.

    Hi Patil,
    According to your description, my understanding is that you want to get the last view time of any entities in SharePoint 2013
    How did you do with using Site Collection Audit?
    Below are my testing:
    Click Settings->Site Settings
    Click Site collection audit settings under Site Collection Administration
    On the Audit Log Trimming section, select ‘Yes’ under ‘Automatically trim the audit log for this site?’
    On the Documents and Items section,  select ‘Opening or downloading documents, viewing items in lists, or viewing item properties’
    Click OK
    Click  Audit log reports, click Content viewing under Content Activity Reports
    Then select a location to save a report, click OK
    ‘Operation Completed Successfully’ displayed, and there is a link ‘click here to view the report’, click it.
    Open the report, there were two worksheets in the file. The first one was ‘Audit Data-Table’, it contained the viewing total times. The second one was ‘Report Data 1’, it provided the time when the item was viewed.
    Below is a screenshot about my report.
    Through checking the second worksheet, we can see which items were viewed and the viewed time. Please have a try.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • TS2776 having trouble syncing google calendar.  If I add event to my calendar using my ipad mini, it won't appear on my google calendar when Im viewing it using my computer or phone.  However, if I post an event using my phone or computer, it appears on i

    Im having trouble syncing google calendar.  If I add event to my calendar using my ipad mini, it won't appear on my google calendar when Im viewing it using my computer or phone.  However, if I post an event using my phone or computer, it appears on ipad mini, why is this and how do I fix it to where everything syncs both ways?

    let me ellaborate on this part:
    "b) perhaps I've got some kind of virus on mine?"
    I mean, " perhaps I've got some kind of virus on mine, and I've passed it on to hers?"

  • SharePoint 2013 Add Author image in default view of blog post

    Hi, 
    How to add Author Image in the Default view of SharePoint 2013 blog site. 
    Thanks
    ram

    Hi  Ram,
    According to your description, my understanding is that you want to display author picture in SharePoint blog.
    In my test, we can achieve the demand as following steps:
    Go to the blog site ->Site Actions -> View All Site Content ->Posts.
    In the Posts list, go to List  Settings-> click Created By column  in the Columns section.
    In Additional Column Settings,  select
    Name (with picture) or Name (with picture and details) for Show field.
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/0d2fd27b-c96e-4c24-a1c8-e415969693bd/authors-image-on-blog-posts?forum=sharepointcustomizationpreviou
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Viewing full blog post....

    I'm using 'Free RSS Reader' from the app store on my 64gb iPod latest sw version.
    When subscribing to a blog sometimes I get the full blog with images and all the text for that entry. Frustratingly I also get some blogs where all I get is the first say 3 lines then I have to click go to website
    I don't mind paying for an app so could anyone either tell me how to resolve this issue in the free app or recommend a paid for one that ***** in the whole post. Also is it possible to get an offline reader so you d/l the blog in full for Reading later when you have no wireless connection?
    Cheers
    Hvxuser

    Thanks for the reply!
    I'm publishing to a folder and using FileZilla to upload the site. I simply click and drag all the files within my site folder onto the site. I did not click and drag the folder, because then it gives me the address http://HealthyDayFitness.com/HealthyDayFitness/Welcome.html. Looks messy in my opinion.
    I'm a little confused on what you mean by blank spaces on the page name... This is the blog page that works: http://healthydayfitness.com/Blog/Blog.html
    If you click on "First Post," that's when things go haywire, but I don't see any blank spaces in that broken URL.
    Any other thoughts? If not, I'll give the folder upload a try.

  • When I view my ipohotos on my macair that have been uploaded from my iphone, sometimes my compute just shuts down. It is when I have the iphoto open. I'm not sure which version this is...I bought the computer about four months ago.

    When I view my ipohotos on my mac air that have been uploaded from my iphone, sometimes my computer just shuts down. It is when I have the iphoto open. I'm not sure which version this is...I bought the computer about four months ago.

    adkennon wrote:
    And maybe you don't talk to too many people but I've been on many forums on different websites where people have had similar problems and a lot of people in the store were having battery problems where they were draining too fast. What I learned is that all the people who did not download the updates are good. There phone is working the same. The people who have, they're having battery problems
    I have downloaded every update and my battery life is better than any previous iPhone I have ever owned. I see posts from hundreds of people every day, and this is not a commonly reported problem. While there are a few random reports of battery problems, it is no more than I have seen for any other model or any other version of iOS in almost 8 years. Usually problems of rapid battery drain can be traced to bad apps (FaceBook is the worst offender) or corrupt data being synced from iCloud or other sources (gmail, Windows Live, Yahoo, etc).
    The simple test is to restore the phone as New. Do not create any email accounts. Do not install any apps. Do not enable FaceTime or iMessage. Do not enable Twitter or any other social networking app. Use it for a day and check the battery usage. You will find that it is working well.
    And also see this: http://www.overthought.org/blog/2014/the-ultimate-guide-to-solving-ios-battery-d rain. It is the best treatise I have seen on the subject of battery usage.

  • I have set up my airprint wifi printer which works perfectly with the HP eprint app. However, when i view an email and click on the top right arrow button and select "PRINT" on my ipad nothing happens????...

    I have set up my airprint wifi printer which works perfectly with the HP eprint app. However, when i view an email and click on the top right arrow button and select "PRINT" on my ipad nothing happens????...
    Also, when im viewing websites and i find something i wish to print, same again, if i simply click on the print option at the top right of the screen nothing happens... the only way I can print is if i copy the weblink of the site page then click on my HP eprint app and paste the web link, then select print, it prints off fine.. but its it such a pain to keep copying and pasting links or screen dumping emails just to print...

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • "Restore last view settings when reopening documents" option not working with all documents

    Said option (found under Edit/Preferences, category Documents), which works like an automatic bookmark in that it takes you back to the same place you were at when you last closed a document, is very useful, but apparently doesn't work with *all* documents.
    - Does anyone know what determines whether a given document works with this option or not?
    - Is this by design or a bug? A matter of PDF format version?
    - Is there a way to work around the problem?
    I've compared two documents, only one of which works with the option, to determine what the relevant difference may be, and found two suspects (under File/Properties): the PDF version (1.5 in the document that works, 1.4 in the one that doesn't), and 'Fast Web View' ('yes' in the document that works, 'no' in the one that doesn't).
    Thanks,
    Michael

    This seems to be a problem with some PDF files.
    Suggested workaround: If the PDF you have allows "Save As", then try save-as to a new file. The "Restore last view settings when reopening documents" option should then work as expected (in the new file).
    (Original post: Restore last view setting not working in version XI)

Maybe you are looking for

  • Query View in Replacement Path variable

    When selecting the query for a replacement path variable there is an option 'Use View for Query Start'. Does anyone know what this is (supposed) to do? Whatever setting I use during testing, the result is always the same. Thanks, József.

  • Single-row refresh in ADF tables, with PPR

    Hello everybody. I have an application in JDeveloper 11gR2 environment. Here are my requirements: 1. I have a table, each cell is an input text; 2. Some cell must be rendered differently depending on a specific key-field (for example, input or output

  • Costing run & MM period

    Dear All, Can someone clarify the below question : Current period - 7 Date - 26.07-2011 Procedure 1 : a) Run MMPV to close period 7 & open period 8  2011 b) Mark & execute Costing run  Procedure 2 : a) Mark & execute Costing run  b) Run MMPV to close

  • Why does my Ipod 4 Generation speakers stop working randomly and then start back up again?

    I have heard that this problem has happened to alot of the 4 gen ipod users. Is there any way to complain to apple or get a refund? Becuase an ipod is suppose to play music, that's what it's good at, but if it cant even do that then no point buying t

  • Migration assistant waiting for your mac to connect

    I'm trying to utilize the migration assistant to migrate from Windows XP3 to a new iMac.  The migration assistant connects and shows me the selected XP machine, but the XP machine is stuck on "waiting for your mac to connect."  I've confirmed both ma