Время создания
Filters
#TechHour
#DynamicEmail
#marketing
#CreatioAcademy

Want to make every email feel personal? Discover how to use Dynamic Content in Creatio to automatically adapt your messages for different audiences. In this quick tutorial, you’ll see how easy it is to deliver the right message to the right person - every time! Start creating personalized campaigns that convert and keep your audience engaged! Join live Tech Hour session to learn more:

When: Nov 12th 9AM EST | 3 PM CET

Registration link: https://creatio-global.zoom.us/meeting/register/RtNJnc3fRdKjHjZwlIwx2A

 

Like 1

Like

Share

0 comments
Show all comments
login
quicklogin
extension
chrome

If you work with multiple Creatio CRM environments or credentials, you know the need: switching between instances, remembering different credentials, and typing them in again and again. What if you could handle all that with just one click?

Introducing Creatio Quick Login — a Chrome extension designed to make your daily Creatio workflow faster, safer, and much more pleasant.

 

What is Creatio Quick Login?

Creatio Quick Login is a smart credential manager built specifically for users who access multiple Creatio CRM instances.
It stores your login information securely inside Chrome and lets you access any instance instantly — no more repetitive typing, no more lost passwords, no more wasted seconds.

 

Key Features

One-Click Login
Save your Creatio credentials once, then log in instantly to any instance right from your Chrome toolbar.

Group Management
Organize your credentials into collapsible groups — perfect for separating production, test, and demo environments.

Secure Local Storage
All data stays safely in your browser using Chrome’s storage. Nothing is shared externally.

Multi-Language Interface
Available in English, Italian, French, Spanish, and German — pick the language you prefer.

Import / Export Made Easy
Backup or migrate your saved credentials in seconds through the built-in JSON import/export tool.

Colorful and Intuitive UI
A clean, modern interface with icons and collapsible sections designed for productivity and clarity.

 

Who is it for?

  • Creatio consultants juggling multiple client environments.
  • Developers and testers switching often between demo and production instances.
  • System administrators who need quick, secure access to multiple portals.
  • Anyone who values speed, organization, and simplicity in their daily workflow.

 

Security First

Creatio Quick Login doesn’t send your credentials anywhere.
All information is stored locally in Chrome’s secure storage, and you’re always in control.
You can delete, export, or import your data at any time.

 

⚠️ Disclaimer

Creatio Quick Login is an independent productivity tool developed to make life easier for Creatio professionals and developers. It is not affiliated, associated, authorized, or endorsed by Creatio Inc. All names and trademarks belong to their respective owners.
Use this extension at your own risk. Always ensure compliance with your organization’s security policies.

Like 1

Like

Share

0 comments
Show all comments

To remove the “Delete” and “Copy” buttons from a record page, add the following code to the target RecordPageSettings schema:

 

{
	"operation": "merge",
	"name": "settings",
	"values": {
		"viewConfigDiff": "[{\"operation\":\"remove\",\"name\":\"Account_FloatAction_Delete\"},{\"operation\":\"remove\",\"name\":\"Account_FloatAction_Copy\"}]"
	}
}

This configuration removes the Account_FloatAction_Delete and Account_FloatAction_Copy actions from the viewConfigDiff.

As a result:

If no other actions remain on the page, the three-dot menu (floating actions button) will be hidden.

If other actions are present, the menu will remain, but the removed actions will no longer be displayed when the button is clicked.
 

Like 2

Like

Share

0 comments
Show all comments
marketplace
MarketplaceUpdates

We’re rolling out updates that make your apps easier to install and easier to discover. One quick action is required.

Update App Properties by November 1st

To ensure smooth installation and compatibility, we’ve introduced new application properties. Please update these app properties in Marketplace Console:

  • Set Required dependencies
  • Set the “Required Creatio version”

This change is required to prevent user from installing incompatible apps on their Creatio environments. 

Learn how to set them up on Creatio Academy:

What’s New in Marketplace

Automatic “Creatio Features” detection
Automatic “Creatio Features” detection. If your package includes features like AI Agent, AI Workflow, AI Skill, Business process element, Campaign element, Home page, or Printables, they’ll now appear on your listing. Users can also filter catalog by “Creatio Features”.

Why it helps: Better discoverability for your app.
  
 

App version management
App version management. You can archive or republish existing versions directly from your listing in Marketplace Console. You can also set “Creatio version from” per package. Republishing without package changes does not require a new review.

Why it helps: Faster control over which versions customers see; no review queue.

 Release info on listings
Release info on listings. Your Launch date and Last updated are shown on the listing page.

Why it helps: Shows customers your app is actively maintained, boosting confidence and making recent improvements easier to find.

    


Please complete these updates by November 1 to avoid verification delays and app installation issues.


Thank you for your partnership!

Like 8

Like

Share

0 comments
Show all comments

When working with Creatio Freedom UI on mobile devices, every section by default displays a floating “+” (Add/New) button. This button allows users to quickly add new records.

While this is useful in many cases, there are scenarios where you may want to restrict users from creating new records via mobile. For example:

  • The section should be read-only on mobile.
  • Record creation is handled through specific business processes instead of manual input.
  • The mobile view needs to be streamlined to avoid unnecessary actions.
  • In such cases, the presence of the floating “+” button becomes misleading or unnecessary.

The Solution

To remove the “Add” button from a section in the mobile Freedom UI, you can update the GridPageSettings schema by removing the floatAction property from the section’s ViewConfig.

Here’s the required configuration:

{		
	"operation": "merge",		
	"name": "settings",		
	"values": {			
		"viewConfigDiff": "[{\"operation\":\"remove\",\"name\":\"ViewConfig\",\"properties\":[\"floatAction\"]}]"		
	}	
}


After applying this change, the floating Add/New button will no longer appear in the mobile view of the section. Users will still be able to view and interact with existing records, but they will no longer see the option to add new ones directly from mobile.
 

This ensures a cleaner, more controlled mobile experience, aligned with your business requirements.

Like 1

Like

Share

1 comments

Thank you - how would you also remove the floatActions button on the record page which opens the overflow menu with "Copy" and "Delete"? The same code which successfully removes the "+" button doesn't seem to remove this button on the record page

Show all comments