Deprecated: YoastSEO_Vendor\Symfony\Component\DependencyInjection\Container::__construct(): Implicitly marking parameter $parameterBag as nullable is deprecated, the explicit nullable type must be used instead in /home/nubelus/sharedove/adisjugo/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php on line 60
Adis Jugo - The Southern Side Blog - Adis Jugo blog
Select Page

Programmatically creating MMS (Taxonomy) fields

It’s a common task to create SharePoint Fields (Columns) through code, and to deploy it to the SharePoint server as a feature. This process is actually quite an easy one: there is Visual Studio item called “Site Column” which you can add to the SharePoint Solution. It...

List SharePoint 2013 site feed programmatically

In the last post, I have shown how to list the user's personal SharePoint 2013 feed. Here is the code snipped for getting the data from the site feed: using (SPSite site = new SPSite(siteName)) { using (SPWeb web = site.OpenWeb()) { SPServiceContext context =...

Posting on SharePoint 2013 newsfeed on behalf of someone else

It is a common requirement in the enterprise social scenarios, to post on to SharePoint newsfeed on behalf on someone else. Those reasons are mainly in the domain of the social governance, or implementing internal procedures. Just think of automatic admin posts to the...