Search found 1785 matches
- Wed Jul 02, 2025 3:03 am
- Forum: CMSMS Core
- Topic: How To Change Home Button
- Replies: 1
- Views: 18
Re: How To Change Home Button
It depends on how you're setting up the site, but if I'm understanding correctly, you could change the Home page in Content Manager to be a redirecting link, and enter the url appropriately. Most navigation is tied to Content Manager, but you can always do it yourself directly like you would in Joom...
- Mon Jun 30, 2025 1:29 pm
- Forum: Modules/Add-Ons
- Topic: Is there a lightweight module to create simple product listings (not full e-commerce)?
- Replies: 1
- Views: 87
Re: Is there a lightweight module to create simple product listings (not full e-commerce)?
The updated versions of those two modules are SmartImage and LISE. LISE is ideal for this sort of thing, but for small projects where all of the items can be stored in a single page, ECB2 is a potential alternative.
- Sun Jun 29, 2025 1:55 pm
- Forum: Modules/Add-Ons
- Topic: SmartForms preload Multi-Select Values
- Replies: 2
- Views: 81
Re: SmartForms preload Multi-Select Values
I'm not sure if it's a bug that it doesn't work, or just a feature that was never added, but I do something like this:
Code: Select all
<option value="25051"{if in_array('25051', $form_data->project_compare|default:[])} selected{/if}>25051 - Test Project</option>
- Thu Jun 26, 2025 1:44 pm
- Forum: Developers Discussion
- Topic: How to Customize the User Interface in CMS Made Simple?
- Replies: 1
- Views: 90
Re: How to Customize the User Interface in CMS Made Simple?
The documentation is at https://docs.cmsmadesimple.org/
Header, footer, etc are all in Design Manager. Edit the html/css of the template you want to use. For something like featured posts you probably want to be a lot more specific with a separate forum post detailing where you're stuck.
Header, footer, etc are all in Design Manager. Edit the html/css of the template you want to use. For something like featured posts you probably want to be a lot more specific with a separate forum post detailing where you're stuck.
- Sat Jun 21, 2025 4:52 am
- Forum: Modules/Add-Ons
- Topic: TinyMCE not showing in editor after installation
- Replies: 1
- Views: 203
Re: TinyMCE not showing in editor after installation
Each user can select which editor to use - you don't need to uninstall or disable MicroTiny.
Go to My Preferences > My Account > User Preferences and look under the Content editor settings heading.
Go to My Preferences > My Account > User Preferences and look under the Content editor settings heading.
- Wed Jun 18, 2025 6:39 pm
- Forum: CMSMS Core
- Topic: Upgrading a very old version
- Replies: 6
- Views: 754
Re: Upgrading a very old version
I'm not sure, it's been 15 years so I don't remember what would have changed there. It could just be the user has an incorrect or no editor selected, but either way I'd probably just not worry about it and/or uninstall TinyMCE. In 2.x, the default editor is MicroTiny and it will get upgraded with co...
- Wed Jun 18, 2025 5:44 pm
- Forum: CMSMS Core
- Topic: ERR_TOO_MANY_REDIRECTS
- Replies: 2
- Views: 358
Re: ERR_TOO_MANY_REDIRECTS
Have you tried the expanded installer? (see the README included)
- Sun Jun 15, 2025 6:14 pm
- Forum: CMSMS Core
- Topic: Upgrading a very old version
- Replies: 6
- Views: 754
Re: Upgrading a very old version
WIth that module list I don't think you'll run into many issues if you follow the upgrade steps. I'd just uninstall FCKeditorX and then you're only dealing with core modules that will be handled by the upgrade process. Assuming no complex UDTs or core hacks the only trick will be timing the PHP upgr...
- Fri Jun 13, 2025 1:38 pm
- Forum: Modules/Add-Ons
- Topic: Embedd Instagram Feed to cmsms website?
- Replies: 1
- Views: 146
Re: Embedd Instagram Feed to cmsms website?
There's no unique-to-cmsms method, just use one of the many available javascript options out there. There are free and paid ones, depending on the amount of functionality you need. Remember when pasting javascript into a cmsms template to either wrap it in {literal} {/literal} tags, or edit the js t...
- Mon Jun 09, 2025 3:10 pm
- Forum: CMSMS Core
- Topic: Upgrading a very old version
- Replies: 6
- Views: 754
Re: Upgrading a very old version
There are going to be some challenges with a site that age, and even with instructions there could be a few hidden gotchas with customizations, User Defined Tags, etc. We'll try to help where we can, but suggest you make interim backups each time you get past a step. We also have devs available for ...
- Fri Jun 06, 2025 2:31 pm
- Forum: Developers Discussion
- Topic: Colors and fonts
- Replies: 1
- Views: 114
Re: Colors and fonts
This article is a bit dated, but still applies: https://cmscanbesimple.org/blog/customi ... king-files
- Thu Jun 05, 2025 9:16 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: Best practices for custom styling in CMS Made Simple for ecommerce platforms like WISMOlabs?
- Replies: 1
- Views: 514
Re: Best practices for custom styling in CMS Made Simple for ecommerce platforms like WISMOlabs?
CMSMS does not interfere with your html/css at all, so there are no limitations of this type. Best practice is to use Design Manager to manage your templates and stylesheets.
- Fri May 30, 2025 1:11 pm
- Forum: CMSMS Core
- Topic: Undefined array key "public_cache_location"
- Replies: 2
- Views: 1430
Re: Undefined array key "public_cache_location"
What happens if you comment out the public cache location line in config?
- Thu May 29, 2025 11:09 pm
- Forum: CMSMS Core
- Topic: a problem with adding PHP to template with UDT
- Replies: 3
- Views: 684
Re: a problem with adding PHP to template with UDT
There is a bug in the current version where it processes the submitted code instead of just verifying it, so any PHP errors in your code or anything not parsable in admin will cause it to white screen on submit. Best option for now is to use a plugin instead of a UDT - then you should only get error...
- Wed May 28, 2025 1:46 pm
- Forum: Modules/Add-Ons
- Topic: LISE: A way to accept an invalid url?
- Replies: 5
- Views: 528
Re: LISE: A way to accept an invalid url?
Without editing the module code, any workaround is only going to stay in place until you edit the item. I don't think the intention was ever to "ban" double hyphens, it's just a feature to keep things clean and was probably in the original List-It module from ~15 years ago. I think it's fa...