Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/configuration/settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -887,3 +887,16 @@ Social settings
:alt: Screenshot showing Social Settings Configuration in Mautic

* **Twitter Handle Field** - This field stores the Twitter username for Users added to Mautic through Social Monitoring.

Support Mautic menu item

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Documented the new 'Support Mautic' menu item and the support_mautic_enabled toggle from PR #16337. The diff adds a mautic.contribute.menu.index entry in app/bundles/CoreBundle/Config/config.php (URI https://mautic.org, opens in a new tab) gated on the support_mautic_enabled parameter, which defaults to true; the PR description states it's hidden by adding 'support_mautic_enabled' => false, to config/local.php. The label 'Support Mautic' comes from the mautic.contribute.menu.index string in messages.ini.

Source: mautic/mautic#16337

************************

Mautic shows a 'Support Mautic' item in the main navigation menu. Selecting it opens ``https://mautic.org`` in a new browser tab, where you can learn how to support the project. Mautic enables this item by default.

To hide the 'Support Mautic' menu item—for example, if you run Mautic for clients and prefer not to show it—add the following line to your ``config/local.php`` file:

.. code-block:: php

'support_mautic_enabled' => false,

To show the item again, set this value back to ``true`` or remove the line.
Loading