wiz wrote: ↑Sun May 30, 2021 8:10 pm
Just WOW, absolutely loving what you have managed to create!
Oh what a great first response to read, thank you so much.
wiz wrote: ↑Sun May 30, 2021 8:10 pm
1. The login page/overlay - 10/10. While we've always tried to be as much as white label as possible, it's interesting to see users taking a completely opposite turn. What is your opinion on white labeling vs branding it?
Honestly, for a brief second I did consider slapping my own business logo on there and calling it Monster CMS or something, but honestly, that would feel like a bit of a slap in the face to yourself and the team who have invested so much time to make Wonder CMS what it is. Plus you've had some great endorsements and it's the only CMS to have gone to the Moon after all. I'm proud of the association with the name and I hope to encourage more people to get on board, but for those who want it to be white label, I think it's great that they have that option.
wiz wrote: ↑Sun May 30, 2021 8:10 pm
2. WonderCMS doesn't download anything automatically.
2a. If any updates are detected, the user should see a "notification" after successfully logging in. (This can be easily tested if you add your own custom theme through the settings panel, and bumping the version on GitHub.
2b. In the next iteration of WonderCMS, there's a CSS native hiding/showing, so I'm thinking of releasing a beta prior to a public release, so users like you can check everything still works as expected with their modifications.
That would be very much appreciated. I appreciate that if you modify to this extent you have to be prepared to adapt to updates a bit, but I'm really trying to make it so any of my modifications will just sit on top of the work you've done and I won't have to run around rewriting everything on update. A beta would really help.
wiz wrote: ↑Sun May 30, 2021 8:10 pm
3. LOL the Wunderbar, it makes so much sense

). It's even drag and droppable! I'm interested to see how it works out on mobile? Piece of art!
Yeah for mobile it sits (or rather it will, haha) at the foot of the window and can be expanded or closed at will.
wiz wrote: ↑Sun May 30, 2021 8:10 pm
4. Maybe we should think of implementing local cache, for whenever the user closes them down, so they stay hidden. When they login/logout, we can clear the cache so they would re-appear. What do you think?
That seems like a clean solution. As long as they see them once, that should be enough.
wiz wrote: ↑Sun May 30, 2021 8:10 pm
5. Seems like an amazing user experience. Is this something we could improve by adding a floating "Save" button and get rid of the click in/click out saving experience?
Honestly, I do think it's quite neat how it is now. I just double checked and if people edit one page and then just automatically click to go to another, their work is still saved, so that's a nice safety net which I really appreciate having. It was only really that overlay which was the problem and I feel the Wonder Bar resolved the necessity for that. Could always make it a toggle setting in the Setting area?
wiz wrote: ↑Sun May 30, 2021 8:10 pm
6. Is this something you would be willing to share with the community? Seems super useful and an awesome/better alternative to the Airmode. I'm in awe

.
Oh of course. I did send a copy of the files to your email address for you to have a look through. The Summernote fix was quite simple though;
Code: Select all
.note-editable {
overflow-x: hidden!important;
}
.note-toolbar {
position: sticky!important;
top: 10px;
background-image: linear-gradient(to bottom, #f4f3f3, #ececec, #e5e4e5, #dddddd, #d6d6d6);
width: calc(100% - 20px);
margin: 10px 0 0 10px !important;
border-radius: 20px;
box-shadow: 0 1px 5px black;
}
.note-toolbar button {
border: 1px solid rgba(0, 0, 0, 0.37) !important;
margin: 0 2px;
}
wiz wrote: ↑Sun May 30, 2021 8:10 pm
7. I love it. Another question here is, could you possibly use the blog plugin as news? It seems we also might have to consider using the blog also as a news plugin and let the users decide what they want do to with it? Any suggestions are greatly appreciated.
I'm actually doing it like that for another project, but as there was no need for separate blog entries here, it seemed like an unnecessary complication. The less moving parts, the less can go wrong.

The other project is coming along but it's substantially bigger than Mary's, so it's progressing a bit slower. Hoping to have an early version of it live for the summer though, so I'm sure I'll have more insight by then.
wiz wrote: ↑Sun May 30, 2021 8:10 pm
8. Have you made any modifications to your index.php? If not, you should be pretty future safe in terms of anything not overwriting your awesome project.
No, I've left the index.php file well alone. The only core file I've had to edit, is the admin of the Summernote editor. I've added this:
Code: Select all
onPaste: function (e) {
var bufferText = ((e.originalEvent || e).clipboardData || window.clipboardData).getData('Text');
e.preventDefault();
document.execCommand('insertText', false, bufferText);
}
The client updates the menu by copying and pasting from word files and originally, Summernote was copying all the style it detected in the word document along with it, which was creating an horrendous mess on the website. It's the thing I'm still wrestling with to be honest, as the client likes to copy and paste updates rather than edit what's there and of course that creates far more layout breaking problems than just editing. Right now I'm trying to develop a system where they can edit the menu in a similar style to the news editor, as there's just less scope for problems.
wiz wrote: ↑Sun May 30, 2021 8:10 pm
Thank you for taking the time and giving WonderCMS a chance. You seem to have completely figured it out. I'm inclined to ask for your opinion on how you think we can improve it and make it easier for amazing devs like you, to have even more fun.
I would urge you to post your project in the "Showoff" section. I'm tempted to bring a "featured" website on the wondercms.com homepage, so more people can see your awesome work. What do you think?
Proud of what you've done and achieved, thank you for sharing it with the community.
P.S. Upgraded your account to Developer on here, you absolutely deserve it.
Well I am sincerely humbled by my upgrade, thank you, that really does mean a lot.
I shall post the site in the show off section now and hopefully it will be the first of many. We are a small studio though (just me and the wife who does the graphics and illustration work) so we don't put out a huge number of websites each year, but I do like to make the ones we do special.
As to future improvements, there's really three main things.
1 - I feel the updates I've made resolve the issues I had with Summernote, notifications and saving. I've no expectation that they'll become a part of the standard software going forward, but if they do that would be easy for me of course, haha. But seriously, in case it wasn't clear, you are welcome to take and use everything I've done specifically related to WCMS. Obviously the design of the website itself is under exclusive license to my client, so I can't offer that up as a template in of itself (although I promise to build a specific, kickass WCMS template in the future) but everything specifically related to WCMS is free and open for anyone and everyone to use.
2 - Those update checks are still pretty long. I'm not a programmer (in spite of my nice shiny blue username haha) so I don't know the nuts and bolts of what's going in those update checks, but can it not be as simple as website tells Git what version number it's running through a simple string, Git checks if it's a greater or lesser number than the current version and acts accordingly? To me that simple check would take a few seconds not a few minutes. Doubtless you have your reasons that I'm oblivious to, but the bottom line is, people are used to login procedures taking seconds not minutes, so it is something it would be great to see brought more in line with user expectations.
3 - The last biggie is image handling. You've told me that you're in the process of overriding default Summernote behaviour and will get the CMS to use links to files rather than embedding in base64, which is great and will prevent that database file from bloating.
However another really crucial thing we need to look at, is image editing. I was with the owner of Mary's yesterday and she asked if she could just take a quick picture on her smartphone and upload the pic in the News section. Technically that should be no problem, but she was using a phone with a 108MP camera! The picture she took came in at just over 27mb in size. The chaos that would have caused if she'd gone ahead and uploaded it would have been both hilarious and terrifying.

Can you imagine what the database file would have looked like after that, haha. It's an eye opener though, because this is the type of thing people just expect they can do, because they can do it with Facebook and Instagram and the like and it just works.
So we need some sort of image processor which sits between the customer uploading images and them appearing on their website. I don't think anybody is expecting filters or anything like that, just something which will make sure the pictures clients upload are suitable for a website setting. Ideally, it would feature webP support, srcset, thumbnail creation, things like that which would allow for the smallest file sizes and easiest creation of galleries.
I found this Summernote plugin, which looks to be actively maintained but I'm not sure if it actually modifies file sizes, but maybe it's the beginning of a solution:
https://github.com/DiemenDesign/summern ... attributes
Anyway, that's all for now. Still got some polishing and tweaking to do but all being well I'll have this project nipped in the bud by the end of the week and I can move on to the next one and continue to work with you in refining WCMS. I really do appreciate your warm response though, everything about the project has a positive vibe to it, which is... wonderful.
