Search found 695 matches

by wiz
Sat May 14, 2022 9:51 am
Forum: Support
Topic: [SOLVED] 1st additional content cannot be deleted
Replies: 5
Views: 2717

Re: 1st additional content cannot be deleted

Thank you both for verifying the issue, I've opened a Github issue and should be checked within the next few days:
https://github.com/robiso/wondercms/issues/258
by wiz
Sat May 14, 2022 9:48 am
Forum: Support
Topic: [SOLVED] Menu gets garbled in a foreign language
Replies: 6
Views: 3037

Re: Menu gets garbled in a foreign language

YSato and OneManLaptop, hello!

The issue was reproduced and the plugin was fixed to include UTF-8 encoding.
The plugin update should be pushed to all users within the next 24 hours, so you'll be able to update Simple SEO plugin.

Thank you both so much for reporting and identifying the issue.
by wiz
Fri Apr 22, 2022 7:26 am
Forum: Themes
Topic: Materialize theme
Replies: 17
Views: 16909

Re: Materialize theme

Glad to see progress and see someone working on something new! ;) However it's nearly impossible to debug Summernote (from another of your posts) or simple blog plugin not working without your full theme (importantly - along with all styles and scripts it uses) uploaded somewhere, preferrably to Git...
by wiz
Fri Apr 22, 2022 2:56 am
Forum: Themes
Topic: Theme without boostrap
Replies: 31
Views: 64565

Re: Theme without boostrap

OK. It seems working now (!). But as I can see, another problems occurs. 1. Summernote plugin is not showing on my theme. Maybe it might be worth reworking the plugin so that it works with themes without Bootstrap...? I can't do that. Could you post your whole theme somewhere so we can test it out?...
by wiz
Fri Apr 22, 2022 2:40 am
Forum: Support
Topic: [SOLVED] Add PHP code inside page?
Replies: 1
Views: 1889

Re: Add PHP code inside page?

Hello margas, welcome to the community!

The easiest way to achieve this is to implement/call it directly in your theme.php file, otherwise you'd have to make modifications to the default HTML editor, which will trim out some of your PHP code.

Thank you and glad you're enjoying it. :)
by wiz
Sun Apr 17, 2022 3:07 pm
Forum: Themes
Topic: Theme without boostrap
Replies: 31
Views: 64565

Re: Theme without boostrap

Most welcome - I tested it and it should definitely solve your issue.

I rechecked docs and it's already correct :)
by wiz
Sun Apr 17, 2022 11:06 am
Forum: Themes
Topic: Theme without boostrap
Replies: 31
Views: 64565

Re: Theme without boostrap

Hello c0mp0ser. This line has two mistakes: <a href="<?=wCMS->url() ?>" class="logo center"> <?=wCMS->url() ?> should be <?= $Wcms->url() ?> (missing $ and wrong capitalization) Did you copy this in from of the WonderCMS docs? In that case I'd love to see it fixed asap, so other ...
by wiz
Sat Apr 16, 2022 8:12 am
Forum: Support
Topic: [SOLVED] Subdomains and folders
Replies: 4
Views: 2744

Re: Subdomains and folders

Created GitHub issue and this should be addressed in the next version.

Link to GitHub issue: https://github.com/robiso/wondercms/issues/256
by wiz
Sat Apr 09, 2022 5:00 pm
Forum: Support
Topic: [SOLVED] Subdomains and folders
Replies: 4
Views: 2744

Re: Subdomains and folders

Hello @pkihl. It would be easiest if you provided (you can even private message me your website URL), so it's easier to inspect what happens with the URL's to the styles. In general, WonderCMS shouldn't care where it's installed, but you might have found an issue which requires fixing. After further...
by wiz
Sun Mar 27, 2022 12:39 pm
Forum: Support
Topic: Protected Member Area?
Replies: 3
Views: 2178

Re: Protected Member Area?

Now I understand your idea better, however this isn't possible without major modifications, since WonderCMS supports only 1 user (admin) without additional configurable permissions. However, in your theme.php, you could define something like <?php if ( $Wcms->currentPage == 'about' && $Wcms-...