Releases: robiso/wondercms-plugins
Releases · robiso/wondercms-plugins
Summernote
Summernote editor
- Plugin author: Prakai Nadee
- Forked by: Robert Isoski
- Note: this plugin will be included by default in WonderCMS 3.0.0.
Install instructions
- Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/3.0.1/summernote.zip
- Paste URL in your Settings->Themes & plugins
- Select "plugin" and click install.
Update instructions
- Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/3.0.1/summernote.zip
- Paste URL in Settings>Themes & plugins
- Select plugin and click update.
Contact form
A contact form plugin for WonderCMS
Install instructions
- Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/contact-form-2.4/contact_form.zip
- Paste URL in Settings->Themes & plugins
Put the code below in your theme.php to display the contact form on all pages.
- Important: make sure to change [email protected] to your actual email
<?php
global $contact_form_email;
$contact_form_email = "[email protected]";
?>
<div class="container">
<div class="col-xs-12 col-md-6 col-md-offset-3">
<div id="contactform" class="grayFont">
<?php contact_form(); ?>
</div>
</div>
</div>
Save the changed theme.php and that's it!
How to display form on a specific page
- Change 'the name of the page' in the code below and add it to your theme.php (to show it on that specific page)
- Make sure 'the name of the page' exists.
<?php if (wCMS::$currentPage == 'the name of the page'): ?>
<?php
global $contact_form_email;
$contact_form_email = "[email protected]";
?>
<div class="container marginTop20">
<div class="col-xs-12 col-md-6 col-md-offset-3">
<div id="contactform" class="grayFont" style="height: 265px;">
<?php contact_form(); ?>
</div>
</div>
</div>
<?php endif ?>
Summernote editor
Summernote editor (original plugin by Prakai Nadee, edit by Robert Isoski)
Install instructions
- Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/summernote-2.4/summernote.zip
- Paste URL in Settings->Themes & plugins
- Select "plugin" and click install.
Update instructions
- Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/summernote-2.4/summernote.zip
- Paste URL in Settings>Themes & plugins
- Select plugin and click update.
Add additional content / Add new editable areas
Simply add new editable areas
- easily show/hide newly created areas
Install Instructions
- Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/additional-contents-2.4/addition_contents.zip
- Paste URL in Settings->Themes & plugins
- Select plugin and click install.
Update instructions
- Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/additional-contents-2.4/addition_contents.zip
- Paste URL in Settings->Themes & plugins
- Select plugin and click update.
Plugin developed by Prakai Nadee // forked by Robert Isoski
Hits counter
Simple hits counter
Instructions
- Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/hits-counter/hits-counter.zip
- Paste URL in Settings->Themes & plugins
- Select plugin and click install.