Skip to content
Merged
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
55 changes: 31 additions & 24 deletions fp-defaults/plugins.conf.php
Original file line number Diff line number Diff line change
@@ -1,40 +1,47 @@
<?php
$fp_plugins = array(

// to disable put // or # before the plugin name
// remove it to enable :)
/**
* to disable put // or # before the plugin name
* remove it to enable :)
*/

'jquery', // needed by ligthbox2 (quite heavy in size)
'thumb', // creates thumbnails adding scale=NN% to [img] tags :)
'bbcode', // bbcode-style formatting; if you disable this
// you'll loose some features, but you will be able to use html
// as a default
'accessibleantispam',
'qspam', // quick spam filter
'adminarea',
'archives',
// 'calendar', //time consuming, not really recommended :p
'lastcomments', // cache-based last-comments block
'lastentries',
'prettyurls', // PrettyURLs with NGINX? see https://wiki.flatpress.org/res:plugins:prettyurls#nginx
'categories',
'searchbox',
'audiovideo',
'bbcode', // bbcode-style formatting; if you disable this
// you'll loose some features, but you will be able to use html
// as a default
'blockparser',
'readmore',
'favicon',
'postviews', // Counts and displays entry views
'calendar',
'categories',
'commentcenter', // including Akismet interface
'mediamanager',
'cookiebanner',
'datechanger', // Lets you change the publish date for (new) entries.
'seometataginfo', // Makes it easier to find with search engines and post on social media
'feed', // Activates the RSS and Atom feed widget
'emoticons', // Activates an emoticons toolbar for entries and static pages
'support', // Provides the FlatPress admin and the community with all relevant data in case of problems.
'gallerycaptions',
'photoswipe',
'favicon',
'feed', // Activates the RSS and Atom feed widget
'fpprotect', // Hardens your blog with additional features in the HTTP response header.
// Removes the htaccess editor from the PrettyURLs plugin.
'gallerycaptions',
'gdprvideoembed', // Simple two-click solution for GDPR-compliant embedding of YouTube, Facebook and Vimeo videos.
'storage'
'jquery', // needed by ligthbox2 (quite heavy in size)
'lastcomments', // cache-based last-comments block
'lastentries',
'mastodon',
'mediamanager',
'newsletter',
'photoswipe',
'postviews', // Counts and displays entry views
'prettyurls', // PrettyURLs with NGINX? see https://wiki.flatpress.org/res:plugins:prettyurls#nginx
'qspam', // quick spam filter
'readmore',
'searchbox',
'seometataginfo', // Makes it easier to find with search engines and post on social media
'storage',
'support', // Provides the FlatPress admin and the community with all relevant data in case of problems.
'tag',
'thumb' // creates thumbnails adding scale=NN% to [img] tags :)
);
?>
Loading