Search found 34 matches

by nox
Fri Apr 05, 2024 10:03 pm
Forum: Support
Topic: Plugin "Contact Form" does not send mails
Replies: 2
Views: 183

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: 2601

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: 2358

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: 9511

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: 2378

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: 9511

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: 9511

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: 9511

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...
by nox
Thu Dec 21, 2023 12:43 am
Forum: Support
Topic: Rearrange Menu
Replies: 2
Views: 5773

Re: Rearrange Menu

Hey antoonpermadi, if you are using default theme Sky, add this CSS style in your footer (but first switch to Code view if you have Summernote Editor plugin): <style> .menu>li {order: 0;} .menu>li:nth-of-type(2) {order: 3;} </style> This should work fine if you have 3 items in the menu. First line i...
by nox
Fri Dec 01, 2023 9:58 am
Forum: Plugins
Topic: WonderCMS Gallery
Replies: 7
Views: 7381

Re: WonderCMS Gallery

Nicely done joshwlms!