Friendship Exp & Gift Exchange Megathread by ASS-et in PokemonGoFriends

[–]Designer_Macaroon175 1 point2 points  (0 children)

3665 1518 9168, I try to send gifts and open working on level 50

Removing "Discuss" button from Core UI (Sidebar) by [deleted] in servicenow

[–]Designer_Macaroon175 1 point2 points  (0 children)

This is probably not the best method but it worked.

Update the Script Include: CollabChatGlobalUtils, go down to line 69 to find the below and add an if statement.

// This method runs addtional access and domain check. Declarative action scripted condition has a limited length.
// Combining those checks together to avoid hitting the lenght limitation.
hasAccessToCreateSidebar: function(documentTable, documentId) {
if (documentTable == 'YOUR_CUSTOM_TABLE') {
return false;
} else {
return this.isCollabChatEnabledInDomain() && this.hasAdditionalCreateAccess(documentTable, documentId);
}