novafacile / bludit-plugins

Plugins for Bludit CMS - https://bludit-plugins.com | Contact3 - the contact form for Bludit CMS | ImageGallery - the image gallery for Bludit CMS | Online Store Plugin für Bludit
https://bludit-plugins.com
MIT License
16 stars 6 forks source link

Form is not appended #24

Closed hinzhelg closed 4 years ago

hinzhelg commented 4 years ago

I just installed Contact3 within a Bludit 3.12.0 installation on an PHP 7.3 server, activated and configured the plugin but there is no email form attached to the selected static page whatsoever.

Searching for a solution hasn’t helped me yet. Any suggestions?

clickwork-git commented 4 years ago

Which theme is used?

hinzhelg commented 4 years ago

It’s a self-made theme.

The following snippets are implemented and working fine:

<?php Theme::plugins('siteHead') ?>
<?php Theme::plugins('siteBodyBegin') ?>
<?php $page->content() ?>
<?php Theme::plugins('siteBodyEnd') ?>

I would have thought that the contact form will be appended directly after "$page->content()".

clickwork-git commented 4 years ago

The contact form uses the following hook:

<?php Theme::plugins('pageEnd'); ?>

hinzhelg commented 4 years ago

The contact form uses the following hook:

<?php Theme::plugins('pageEnd'); ?>

Will try it. Thanks in advance!

hinzhelg commented 4 years ago

That’s it! Works like a charm now ❤️