Search found 36 matches

by nox
Tue May 07, 2024 1:55 am
Forum: Support
Topic: Stand-alone mode
Replies: 2
Views: 24

Re: Stand-alone mode

There is a Summernote Editor Lite plugin without Bootstrap made by c0mp0ser:
viewtopic.php?p=6628#p6628
by nox
Tue May 07, 2024 1:49 am
Forum: Support
Topic: Stand-alone mode
Replies: 2
Views: 24

Re: Stand-alone mode

Hey JoeT, I really like your idea using WonderCMS in offline mode, so I tried to do the same but using XAMPP without Internet connection. It was a lot of leg work looking for js and css files but somehow it did work. Here is the whole process if anyone wants to give it a try and how to fix Glyphicon...
by nox
Fri Apr 05, 2024 10:03 pm
Forum: Support
Topic: Plugin "Contact Form" does not send mails
Replies: 2
Views: 7775

Re: Plugin "Contact Form" does not send mails

Hey cvr,

just tested contact form plugin and it does work fine for me.
Contact form instructions here: https://github.com/robiso/contact-form/ ... structions
Also check if the mail is in the spam folder.
by nox
Sun Jan 07, 2024 9:15 pm
Forum: Plugins
Topic: Summernote editor and </>
Replies: 1
Views: 4876

Re: Summernote editor and </>

Hello pivari,

while Code view in Summernote editor is active, editing isn't saved.
When you have finished editing, click on Code view icon </> (to switch back to rich text editor) and then click anywhere outside Summernote editor area (outside dashed line container) to save.
by nox
Sun Jan 07, 2024 8:42 pm
Forum: Plugins
Topic: Bug with every language plugin?
Replies: 1
Views: 4627

Re: Bug with every language plugin?

From Wonder CMS news: New: HTML language parameter can be changed in Settings - Security. Seperate settings available for admin and for visitors. This can be done by replacing your html tag with <html lang="<?= $Wcms->getSiteLanguage() ?>"> in your theme.php file Replace <html lang="e...
by nox
Tue Jan 02, 2024 3:41 pm
Forum: Support
Topic: Logo placement
Replies: 11
Views: 14330

Re: Logo placement

Great! I'm glad it worked out for you.
by nox
Tue Jan 02, 2024 3:37 pm
Forum: Support
Topic: Editing database.js
Replies: 2
Views: 5062

Re: Editing database.js

Hi joseluis,
sure, here is a database.js example:
https://github.com/WonderCMS/wondercms/ ... atabase.js

You can add new pages or delete existing, set page order, visibility (menu items) and so on.
Create a backup just in case before editing database.
by nox
Thu Dec 28, 2023 5:22 pm
Forum: Support
Topic: Logo placement
Replies: 11
Views: 14330

Re: Logo placement

Adding logo without editing theme.php: Paste inside footer or sidebar area, while logged in admin: <style> .navbar .container .navbar-brand { display: flex; flex-direction: row; align-items: center; gap: .5rem; } .navbar-brand:before { content: ''; background: url(data/files/logo.png); background-si...
by nox
Thu Dec 28, 2023 5:11 pm
Forum: Support
Topic: Logo placement
Replies: 11
Views: 14330

Re: Logo placement

You are welcome :) For Paper P theme, check inside theme.php for: <a class="navbar-brand" href="<?= $Wcms->url() ?>"> <?= $Wcms->get('config', 'siteTitle') ?> </a> and add img before site title, so it looks like this: <a class="navbar-brand" href="<?= $Wcms->url() ...
by nox
Wed Dec 27, 2023 12:53 pm
Forum: Support
Topic: Logo placement
Replies: 11
Views: 14330

Re: Logo placement

Hello Durhamwilly, what theme are you using? You are free to change theme.php file (themes - ThemeName - theme.php). Here is an example logo for Sky theme: Add inside theme.php, where section id="topMenu" starts (but just copy <a class... line>) <section id="topMenu"> <a class=&q...