Skip to content

Releases: robiso/wondercms-plugins

Summernote

23 Jan 17:39
694be24
Compare
Choose a tag to compare

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

  1. Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/3.0.1/summernote.zip
  2. Paste URL in your Settings->Themes & plugins
  3. Select "plugin" and click install.

Update instructions

  1. Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/3.0.1/summernote.zip
  2. Paste URL in Settings>Themes & plugins
  3. Select plugin and click update.

Contact form

13 Aug 14:03
af4a85d
Compare
Choose a tag to compare

A contact form plugin for WonderCMS

Install instructions

  1. Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/contact-form-2.4/contact_form.zip
  2. Paste URL in Settings->Themes & plugins

Put the code below in your theme.php to display the contact form on all pages.

<?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

  1. Change 'the name of the page' in the code below and add it to your theme.php (to show it on that specific page)
  2. 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

18 Mar 18:27
70afe87
Compare
Choose a tag to compare

Summernote editor (original plugin by Prakai Nadee, edit by Robert Isoski)

Install instructions

  1. Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/summernote-2.4/summernote.zip
  2. Paste URL in Settings->Themes & plugins
  3. Select "plugin" and click install.

Update instructions

  1. Copy URL of the ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/summernote-2.4/summernote.zip
  2. Paste URL in Settings>Themes & plugins
  3. Select plugin and click update.

Add additional content / Add new editable areas

31 Mar 21:10
70afe87
Compare
Choose a tag to compare

Simply add new editable areas

  • easily show/hide newly created areas

Install Instructions

  1. Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/additional-contents-2.4/addition_contents.zip
  2. Paste URL in Settings->Themes & plugins
  3. Select plugin and click install.

Update instructions

  1. Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/additional-contents-2.4/addition_contents.zip
  2. Paste URL in Settings->Themes & plugins
  3. Select plugin and click update.

Plugin developed by Prakai Nadee // forked by Robert Isoski

Hits counter

18 Mar 19:01
Compare
Choose a tag to compare

Simple hits counter

Instructions

  1. Copy URL to ZIP file: https://github.com/robiso/wondercms-plugins/releases/download/hits-counter/hits-counter.zip
  2. Paste URL in Settings->Themes & plugins
  3. Select plugin and click install.

Plugin developed by Yassine Addi