Search found 3306 matches
- Sat Jan 16, 2021 2:59 pm
- Forum: Modules/Add-Ons
- Topic: NewsletterMadeSimple custom fields return empty
- Replies: 2
- Views: 86
Re: NewsletterMadeSimple custom fields return empty
The $fields variable is expected to be different from the $fielddefs variable. IF the $fields variable exists it has this form: Array ( [test] => test-value ) So it's an array with the keys being the field name and the value being the field value. {$fields.test} (in my example) should just output: t...
- Mon Jan 11, 2021 12:44 pm
- Forum: Modules/Add-Ons
- Topic: FEU trusted Devices
- Replies: 2
- Views: 69
Re: FEU trusted Devices
Looking at the code of FEU3 - which for the record is not a version that's recommended to use - there are some notes and parameters which prepare the module for so called 'longterm' cookies. However: - I don't quickly find whether it's already possible to actually configure it (don't see anywhere th...
- Mon Jan 04, 2021 10:32 am
- Forum: Modules/Add-Ons
- Topic: LISE field definitions missing while moving to new server using FTP
- Replies: 3
- Views: 82
Re: LISE field definitions missing while moving to new server using FTP
Seems you're not asking for commercial help so I will move the topic
- Wed Dec 30, 2020 2:20 pm
- Forum: Czech/Slovak - Česky/Slovensky
- Topic: Editacia textu na stranke
- Replies: 2
- Views: 101
Re: Editacia textu na stranke
You should find the page and check the content of it. Probably there's something like {FormBuilder form='contact'} You can disable that tag by adding *: {*FormBuilder form='contact'*} If it's not in the content, then it probably is in the page's template. In the overview of pages you can see what pa...
- Tue Dec 29, 2020 11:05 pm
- Forum: Dutch - Nederlands
- Topic: Hoe kan ik de Editor ondersteunen (styles, list/detail view, herhalende secties)
- Replies: 7
- Views: 304
Re: Hoe kan ik de Editor ondersteunen (styles, list/detail view, herhalende secties)
Antwoord op vraag 1: de module LISE
- Fri Dec 18, 2020 4:18 pm
- Forum: Modules/Add-Ons
- Topic: CGFEURegister/FrontEndUsers insert serial number on creation
- Replies: 4
- Views: 324
Re: CGFEURegister/FrontEndUsers insert serial number on creation
I know the practical thing would be to just use the FEU ID as membership number. But the ID isn't visible in FEU in backend, and membership administrators need to know and see the membership number for each member. I do think the user's id is available in the admin template(s). So if they aren't di...
- Thu Dec 10, 2020 9:04 pm
- Forum: General Discussion
- Topic: Update old cmsmadesimple
- Replies: 6
- Views: 431
Re: Update old cmsmadesimple
It WILL delete data from the database on uninstall.
I'm not sure the modules are all 2.x compatible. Gallery is.
The others you should check in the module repository or maybe other users know it.
I'm not sure the modules are all 2.x compatible. Gallery is.
The others you should check in the module repository or maybe other users know it.
- Thu Dec 10, 2020 8:00 pm
- Forum: General Discussion
- Topic: Update old cmsmadesimple
- Replies: 6
- Views: 431
Re: Update old cmsmadesimple
Seems something went wrong in a earlier stage, because - clearly - the db table cms_routes should exist.
I understand it's not very helpful though.
Can you restore from backup and start the upgrade again?
I understand it's not very helpful though.
Can you restore from backup and start the upgrade again?
- Mon Nov 30, 2020 5:14 pm
- Forum: Modules/Add-Ons
- Topic: TinyMCE give table a css-class
- Replies: 2
- Views: 142
Re: TinyMCE give table a css-class
can't you use a class/id for the container of the user-added content?
Example:
Styling:
jQuery selector:
Example:
Code: Select all
<div id="user-content">{content}</div>
Code: Select all
#user-content table {
...css...
}
Code: Select all
jQuery("#user-content table")....
- Tue Nov 24, 2020 6:45 pm
- Forum: Modules/Add-Ons
- Topic: LISE dates entry - only display future
- Replies: 8
- Views: 299
Re: LISE dates entry - only display future
Seems those filters are exclusively for the start and end date fields of LISE.
My bad.
My bad.
- Tue Nov 24, 2020 5:25 pm
- Forum: Modules/Add-Ons
- Topic: LISE dates entry - only display future
- Replies: 8
- Views: 299
Re: LISE dates entry - only display future
Latest version(s) of LISE offer some extended filtering: New Extended Date Filter Parameters The filter_year and filter_month parameters have been deprecated and will be removed in the next major version upgrade of LISE. There is a new set of parameters to replace the previous functionality that you...
- Thu Nov 19, 2020 7:57 am
- Forum: Modules/Add-Ons
- Topic: CGBlog and geting title
- Replies: 4
- Views: 230
Re: CGBlog and geting title
Personally I like this approach: https://cmscanbesimple.org/blog/base-cm ... d-metatags
Especially because it doesn't need the if-then-else construct.
Especially because it doesn't need the if-then-else construct.
- Tue Nov 10, 2020 2:57 pm
- Forum: German - Deutsch
- Topic: Altes CMSMS-Projekt updaten
- Replies: 8
- Views: 764
Re: Altes CMSMS-Projekt updaten
OK, I finally did it. After deinstalling the Guestbook and Captcha modules (the website can live without these) I was able to stepwise update up to 1.12.2, the last build of version 1. The website woks, the admin works. Only problem: when trying to edit a page (via content -> pages) I don't get the...
- Mon Nov 09, 2020 3:44 pm
- Forum: Modules/Add-Ons
- Topic: LISE: Sorting a custom_date
- Replies: 5
- Views: 308
Re: LISE: Sorting a custom_date
Random example from one of my websites: //use for pre-save item event $item = $params['item_object']; $item->key1 = (string) $item->company; $item->key2 = lise_datetime_utils::date_to_unix_ts($item->date); Note: key1, key2 and key3 are always available and hidden. I just don't know if you can use th...
- Fri Nov 06, 2020 7:23 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: Template Creation Question
- Replies: 6
- Views: 1490
Re: Template Creation Question
I'm not sure what you mean with 'the navigation submit link'.
The navigator is a not more than a template (in Design Manager) and a {Navigator} tag in your page template.
So I'm not sure where the submit fails.
The navigator is a not more than a template (in Design Manager) and a {Navigator} tag in your page template.
So I'm not sure where the submit fails.