Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKate Butler <kate@innocraft.com>2019-09-19 01:00:09 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-09-19 01:00:09 +0300
commitf697570e06d16c79e4b32ed4733b48f63f2173f6 (patch)
treee26d6c7fa46cbabb233f8c85ff24f7ec3dca23f2 /plugins/Feedback/config/config.php
parent782768d1ecca400bfb5fafb1c06ef04e82a68a98 (diff)
Make it easier to search help resources from within Matomo (#14870)
* Add link to matomo.org resources in awesome search * Add "How can we help" card to help page * PR fixes * CSS improvements * Update UI test screenshots * PR improvements * CSS improvements * Remove duplicate links and reword community help links * Update reference screenshot * make it work for mobile, remove duplicate dot, minor style tweak * fix screenshot test
Diffstat (limited to 'plugins/Feedback/config/config.php')
-rw-r--r--plugins/Feedback/config/config.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/Feedback/config/config.php b/plugins/Feedback/config/config.php
index 4932533ad3..2261fb951d 100644
--- a/plugins/Feedback/config/config.php
+++ b/plugins/Feedback/config/config.php
@@ -1,3 +1,9 @@
<?php
-return array();
-?> \ No newline at end of file
+return array(
+ 'popularHelpTopics' => array(
+ array('title' => 'Feedback_NotTrackingVisits', 'url' => 'https://matomo.org/faq/troubleshooting/faq_58/'),
+ array('title' => 'Feedback_TrackMultipleSites', 'url' => 'https://matomo.org/faq/troubleshooting/faq_104/'),
+ array('title' => 'Feedback_RemoveOtherLabel', 'url' => 'https://matomo.org/faq/troubleshooting/faq_54/'),
+ array('title' => 'Feedback_PurgeOldData', 'url' => 'https://matomo.org/faq/troubleshooting/faq_42/'),
+ )
+);