Creating HashTag in sharepoint 2013 community discussion board

We are trying to create new HashTag in sharepoint 2013 community discussion board. But we are unable to do so. It is getting treated as plain text. We are able to use existing hashtag on same discussion board but not able to create new one. Is not that
a loophole in social feature of sharepoint.

http://www.chrismcnulty.net/blog/Lists/Posts/Post.aspx?ID=101
if you try to create a brand new hashtag there, it gets created in the Keywords MMS group and not the Hashtags MMS group. You need edit rights to add a keyword to a document. And more problematic, the "Enterprise Keywords" feature was introduced as a way
to consume Office doc keywords as a catalyst to social following in SharePoint 2010.
http://webcache.googleusercontent.com/search?q=cache:6uoci4PHcZkJ:sp2013.blogspot.com/2014/01/sharepoint-2013-hashtags.html+&cd=2&hl=en&ct=clnk&gl=in

Similar Messages

  • SharePoint 2013 Community Site Issue : Discussion Post auto reply

    Hi,
    We have SharePoint 2013 Community Site which is used by team for disccusions. Recently we have faced a critical issue, the discussion board all posts have been auto replied and the auto replies contains previous commments of users.
    Kindly suggest since we are unable to track the cause of the issue.
    Regards,

    Is there any customization done in that community site? Check the log files for any more information at that specific time.
    --Cheers

  • Enable reporting of offensive content not working in sharepoint 2013 community site

    i am trying to enable "Report to moderator option" in community site but when i checked option "Enable reporting of offensive content" in a community site settings and clicked Ok. I am getting an error "The file is not checked out.You
    must first check out this document before making changes."
    i am not sure why i am getting this error, the same thing works fine in other community site's i have created.
    This community is a backup restore of another community site.
    Is there any other way by which i can enable 'reporting of offensive content'.
    Any pointer's to solve this will be helpful.

    You just need to 
    Enable the Reporting of Offensive Content feature
     Note    You must be a member of the Owners group to enable this feature.
    On the Community tools web part on your community home page, click
    Community settings.
    Select the Enable reporting of offensive content check box.
    Click OK.
    http://office.microsoft.com/en-in/sharepoint-server-help/create-a-community-HA102891678.aspx
    http://sharepointadam.com/2012/09/15/enable-report-to-moderator-in-sharepoint-2013-community-sites/
    If you facing some issue please send ULS log details.
    If this helped you resolve your issue, please mark it Answered

  • Create solutions in SharePoint 2013 with possible to run in SharePoint 2010

      Hi,
          I would like to create WebParts on SharePoint 2013 (in Visual Studio 2012) version but I would like to run them on SP 2010 too. So it would be great to have such compability back one solution under VS 2012. Is it possible to
    make this one to not duplicate code for different versions?
      Thanx for any info!
      Regards
      Kamil

    Hi,
    As Paul said, I suggest you develop your SharePoint project using visual studio 2010 for SharePoint 2010.
    If you want to use this project in SharePoint 2013, we need convert it to the SharePoint 2013 project, the following articles for your reference:
    Upgrade SharePoint 2010 Visual Studio Solution to SharePoint 2013
    http://ranaictiu-technicalblog.blogspot.com/2013/10/upgrade-sharepoint-2010-visual-studio.html
    Converting Multiple SharePoint 2010 Projects to SharePoint 2013
    http://www.codeproject.com/Articles/522220/Converting-Multiple-SharePoint-Projects-to-Sh
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Any way i can create and manage SharePoint 2013 workflows in browser.

    Guys,
    is there any way i can created and manager sharepoint 2013 workflows in browser like Nintex lets you do. This will eliminate the need for sharepoint designer.
    thanks
    MM

    No. SharePoint's work flows are created from SharePoint Designer or Visual Studio. Third party solutions like Nintex have other approaches.
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • SharePoint 2013 Community members list is not working properly.

    Hello All,
    We have a community site at our office. It is having a discussion list which has almost 2000 discussion. The problem is the members who have raised questions or discussions should get added in community members list. But its not happening. There was only
    11 members were added. The remaining members are not there. So It is showing the wrong top contributors. I really weird due to this issue.
    Please help me.
    Gore T.Richard

    Hi Gore,
    Please try to use the following code to get the members count, then check whether it corrects or not.
    SPWeb web = SPContext.Current.Web;
    SPList Members = web.Lists.TryGetList("Community Members"));
    try
    SPQuery query = new SPQuery();
    query.Query = "<Where><Eq><FieldRef Name="MemberStatusInt"/><Value Type="Integer">1</Value></Eq></Where>";
    SPListItemCollection colection = Members.GetItems(query);
    int membersJoined = colection.Count
    catch (Exception)
    http://sharepoint.stackexchange.com/questions/76973/number-of-memebers-inside-my-community-site-is-wrong
    Or try to reactivate the "community feature" feature and activate "Site Feed" feature at site level.
    If this issue still exists, you can also try to update the latest CU for SharePoint 2013.
    http://blogs.technet.com/b/stefan_gossner/archive/2015/04/14/april-2015-cu-for-sharepoint-2013-has-been-released.aspx
    Best Regards
    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]

  • Create an outlook form for a discussion board

    We need to create a new form or use the existing IPM.Post class and create a form along with few custom fields in our discussion board.
    Any user entry to that custom field in outlook should be posted to the list in the appropriate field.
    How do we achieve this.

    Hi,
    Do you want to create a form for a discussion board list as below?
    If so, we can customize it using InfoPath 2010 and publish the form to the discussion board list, the following article for your reference:
    http://msdn.microsoft.com/en-us/library/gg180738(v=office.14).aspx
    If I misunderstand your requirement, please provide more information.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to properly create and configure SharePoint 2013 Search service with PowerShell?

    Hello Forum,
    I have installed SharePoint 2013 across three tier servers:
    WFE Server  (Of course, SharePoint is installed here. Bsically this is just a Web server)
    APP Server  (Of course, SharePoint is installed here + Central Admin + Service Apps).
    SQL Server  
    I now want to create and configure the Search service, obviously on the APP Server, But of course the search functionality should work correctly on the WFE server to.
    I want to do this via a proper PowerShell script. I found Spence Harbar's script on: (http://www.harbar.net/articles/sp2013mt.aspx), But it has three problems, and they are as follows:
    1) Spence Harbar himself literally stated on his article that this script is for: "deploying on a single server farm", But what if I have three tier servers? Could anyone please help me out in suggesting the required tweaks in the
    script?
    2) By default Search uses the SP_Farm account, So, How can I change the script to use other dedicated account for the search service e.g. SP_SearchAcc ?
    3) How can I modify the script to specify a default Search center?
    4) Apart from all the three aforementioned point - Is the script missing anything? 
    I would greatly appreciate your inputs - Thanks !

    the only differences are where you place the components.  if you are doing a small server farm with a 1-1-1, most likely you just need to change the script so that you set the index and query processing component on the front end, but the others on
    the app server.  just a 2 second update... just keep in mind this will work, but I am making several assumptions without any knowledge of your farm, users, capabilities. 
    generally, there would be more of a breakout on the topology than that, but im guessing for this farm that you wont have dedicated search servers.  also, a lot depends on # users (rps really), # items in index, size of VMs (RAM for query processing,
    Disk for index, etc, etc), and making sure the topology works for your particular environment and needs. 
    if you want more detailed topology help, which aligns as closely as possible to "best practices" (not that those exist in SharePoint, go ahead and provide the total # users, average/peak RPS for search, current index size, content source types,
    VM specs RAM, CPU, #/Size of drives, HA concerns/priority (obviously isn't, since only 1-1-1)
    Christopher Webb | MCM: SharePoint 2010 | MCSM: SharePoint Charter | MCT | http://christophermichaelwebb.com

  • SharePoint 2013 Community Template – The Spelling ICON is greyed out when replying to a discussion on a discussion board

    <meta content="text/html; charset=windows-1252" http-equiv="Content-Type" /><meta content="Microsoft Word 14 (filtered)" name="Generator" /><style></style>
    Much like the title says the Spelling ICON is greyed out.  When I go to the Discussion List and select the thread then view the list in “Flat” view, the Spelling ICON is not greyed out.  However, this is a different aspx file.  The first method
    displays the thread via the Topics.aspx (the normal way) whereas the second displays the thread using the Flat.aspx.
    Regardless, why is the Spelling ICON greyed out on the normal way you would reply to a discussion thread?  By the way, I had to activate the Publishing Infrastructure on the Site Collection to get the Spelling ICON just to show up when I click on “reply”
    from a Discussion thread.
    Thanks to anyone who can help!

    Hi,
    According to your post, my understanding is that when you went to the Discussion List and selected the thread then view the list in “Flat” view, the Spelling ICON was greyed out.
    By design in SharePoint, when you view the list in “Flat” view, the ribbon would be as below:
    Only when you add a reply and move the mouse to the content, the Spelling ICON will appear.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • SharePoint 2013 Community Site Discussion List Custom View Issue

    I need to create a custom view to show the discussions updated in the past 7 days and ordered by most replies.  I have created a custom view based on the subject view and included the following columns:
    Body
    Category
    Last Updated
    Modified By
    Replies
    Subject (linked to item
    the problem is that when you click on the subject link, it does not return that discussion.  We get the message that There are no items to show in this view.
    This happens even if I use the Flat or Threaded view option when creating a custom view.

    You haven't most probably set the "Folders" property when setting up the view. Go to Folders property and set Show this view: In the top-level folder. Also, in Sort property select Replies column and set it to Show items in descending
    order and in Filters property set Last Updated column "is less than or equal to" [Today]+7
    Nadeem Yousuf

  • SharePoint 2013 Community Site Best Answer Reply *BUG detected and Temporary Resolved*

    Hi to all,
    This is a BUG detected with a temporary solution for that problem:
    * Community Site with many Categories and Discussions.
    1.- Make a new discussion.
    2.- Give some answers in that discussion.
    3.- Mark one as the "Best Answer".
    4.- Delete the "Best Answer" reply message.
    5.- Your Discussion have been blocked, and there isn't option to use. The drop down button of the discussion do not respond, and new message or reply aren't appear.
    SOLUTION:
    Enter to Recycle Bin in the SharePoint Site Collection Site Settings and restore the message deleted. For Administrators this is the best option.

    The context menu contains 'Best Reply' not 'Best Answer'; what about the case where the reply is an answer just not the 'Best Answer'.  No way to mark a discussion question as answer without making a weak answer the 'Best Answer'; seems flawed.
    Hoping the Community Site approves.

  • Create Usercontrol for SharePoint 2013

    Hi
    Can any one explain step by step process for developing and deploying a User control to a master page.
    I did the following steps.
    1.) Created a new solution using visual studio 2012
    2.) Added a user control to the project and added some HTML page and deployed.
    But I cant find any dll in GAC and reference in web.config.
    Can any one explain the rest of the process.
    Do I need to use design manager to create the snippet. If so can you explain How to create snippet using design manager ?

    you start with a plain html page
    SharePoint automatically converts it to a master page (or layout page)
    You only edit the html page. SharePoint pushes your changes to the master page
    Most of the SharePoint controls and web parts can be configured and added by copy + pasting snippets into your html
    .NET server controls can also be placed on your page by using snippets.
    But how to you add a custom control?
    I created my branding with the Design Manager. I also have a Visual Studio 2012 solution with custom web parts and custom user controls.
    After deploying the Visual Studio solution to my server I tried to add some of my custom user controls to the master page.  All attempts I made resulted in “Unknown server tag”
    Defining your control.
    1
    <!--SPM:<%@ Register Src="~/_controltemplates/15/AmToPm.Client.Intranet/FeedbackControl.ascx" TagPrefix="uc1" TagName="FeedbackControl" %>-->
    Putting your control on your page.
    1
    2
    3
    <!--CS: Start Create Snippets From Custom ASP.NET Markup Snippet-->
    <!--SPM:<uc1:FeedbackControl runat="server" id="FeedbackControl" />-->
    <!--CE: End Create Snippets From Custom ASP.NET Markup Snippet-->
    The solution
    The trick is easy. Instead of registering your control on top of the html together with all the default SharePoint controls. You need to put the @Register statement and your code together
    1
    2
    3
    4
    <!--SPM:<%@ Register Src="~/_controltemplates/15/AmToPm.Client.Intranet/FeedbackControl.ascx" TagPrefix="uc1" TagName="FeedbackControl" %>-->
    <!--CS: Start Create Snippets From Custom ASP.NET Markup Snippet-->
    <!--SPM:<uc1:FeedbackControl runat="server" id="FeedbackControl" />-->
    <!--CE: End Create Snippets From Custom ASP.NET Markup Snippet-->
    So you do NOT place the @Register-statement before the DOCTYPE declaration. Embed it directly into your html page together with your snippet.
    One other tip.
    I had some problems / errors with defining multiple controls with the same tag prefix. If you have multiple controls on a page give them all a different TagPrefix and you will be fine.
    Hi Naveen Thanks for your reply.
    After deployment my user control is here 
    C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\CONTROLTEMPLATES\testUsrControl
    As you said I have placed the following snippet in my master page.
     <!--SPM:<%@ Register Src="~/_controltemplates/15/testUsrControl/UserControl1.ascx" TagPrefix="uc1" TagName="FeedbackControl" %>-->
    <!--CS: Start Create Snippets From Custom ASP.NET Markup Snippet-->
    <!--SPM:<uc1:FeedbackControl runat="server" id="FeedbackControl" />-->
    <!--CE: End Create Snippets From Custom ASP.NET Markup Snippet-->
    But it showing Error: Invalid SharePoint markup at line 153

  • User name display in Discussion Board - SharePoint 2013 (Office 365)

    Hi,
    I would like to hide the display of user name of "Created by" and "Replied By" in discussion board.
    How to do this setup?
    Thanks and best regards,

    That's the nature of the web part.  Check here:
    http://office.microsoft.com/en-us/sharepoint-designer-help/display-data-from-multiple-lists-with-the-content-query-web-part-HA010174134.aspx
    The biggest limitation for content query web part is not able to go across site collections... but subsites should be ok. 
    Enter content by search web part.... new to 2013. 
    http://msdn.microsoft.com/en-us/library/office/jj163789(v=office.15).aspx

  • Sharepoint 2013: Problem / Error when creating Variation Hierarchy for French and German Languages from Variation root EN

    Hi,
    I have a website with English and Arabic Language Packs installed. I have the corresponding Variation heirachies created and the whole site collection is published.
    Recently the client asked for french and german languages to be accomodated as well. So I followed the same approach I did for English and arabic (installed the language packs) for foundation, ran ocnfiguration wizard, installed server language pack &
    ran configuration wizard.
    But after creating the variation label, when i try to create the variation heirarchy, I am getting the following error.
    "Unknown failure when creating a variation of page http://server:port/en/pages/default.aspx in label /fr/Pages/default.aspx.
    The Variations Create Hierarchies job failed with the following error message&  Unknown failure when creating a variation of site
    http://server:port/en in label fr."
    Am not sure what is going wrong. Appreciate a feedback.
    Thanks,
    SSP
    SSP

    Hi,
    According to your description, my understanding is that the error occurred when you created the Variation Hierarchy for French and German Languages from Variation root EN.
    I recommend to check the Resources folder located at C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15 to see if the file core.fr-FR.resx exists in the folder.
    Here is a similar thread for you to take a look:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/611575b2-d129-44c6-814b-2e5782178850/unknow-failure-when-creating-variations-in-sharepoint-2013-is-this-a-bug-in-sharepoint-2013-rtm?forum=sharepointadmin
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Sharepoint 2013 Workflow not available on Site created from Sharepoint 2013 Foundation Solution Template

    If I create a template on SharePoint 2013 Foundation, then create a site on SharePoint Enterprise (or Office/365) fully configured to support SharePoint 2013 workflows. When I access the site through SharePoint Designer 2013, and attempt to create a workflow
    SharePoint 2013 Workflows are not available -- you get message that SharePoint 2013 Workflow platform is not available because it is not configured on the server. This appears to be a bug in SharePoint Designer as the 2013 Workflows are available on the team
    site on the same site collection. There is no reason that a site created from a SharePoint 2013 foundation template should have this restriction.   To make matters worse if you then save that site as a template on the SharePoint 2013 Enterprise (or
    Office/365) system and create a new site from the that template you get the same issue.
    Anyone know a workaround/fix to this issue.   Have imported the template into Visual Studio but I can not find any way in Visual Studio to enable SharePoint 2013 workflows.   A solution that involves Visual Studio import would work fine
    for me.
    Earllibby

    Apparently you did not read my question very carefully.   The workflow manager is configured properly on this server and for the basic Team site in this site collection the full SharePoint 2013 workflows are available in SharePoint Designer 2013.  
    BUT they are not available on another site in the SAME SITE COLLECTION that was created from a solution template that was created on a SharePoint Foundation server.
    Earllibby

Maybe you are looking for

  • Problem with Managed Server pointing to a different JDK

    Hi, My Adminserver is pointing to JDK 1.7 which is shown in the startup, but my managed servers are pointing to a different 1.6_43 . We are running into Java version mismatch problem while deploying our application built with jdk 1.7 onto these manag

  • Footer & Text Link Issue

    Http://Infinite8imaging.com On some pages the green footer bar i created is being forced off the page (pushed down), I am not sure why. it doesnt look like his in preview mode or when i "preview page in browser", only ater i export to html and upload

  • Assign value to asset under construction

    Hi Sirs, I would like to know what i have to do to solve the problem with value for asset under construction. When I create asset with tr. AS91 in area for Takeover values, the field for ***.acquis.val. is not active. Thank you in advance. Regards, D

  • Are there any shortcuts for creating Value Object Classes?

    Hi, I'm using a Remote Object to connect to my server (pyAMF/Django). I'm getting stuck with the creation of Value Object Classes. It doesn't seem very DRY to have a class on my server representing the data model and then have to recreate that class

  • Double quotes in query

    Hi I get the last query executed using the ora_sql_txt (sql_text) function for some auditing. Now on some server I get the last query as select columnname from "schemaname"."tablename"; i.e I get double quotes as extra. while on some I get without do