Search found 417 matches
- Sat Mar 07, 2020 1:32 pm
- Forum: Dutch - Nederlands
- Topic: kan een beeldje in tinyMCE geen style geven
- Replies: 2
- Views: 571
Re: kan een beeldje in tinyMCE geen style geven
Welke versie PHP heb je actief. Ik liep tegen een probleem met tinymce op en kon dit oplossen door PHP 7.2 te gebruiken.
- Tue Feb 04, 2020 1:35 pm
- Forum: General Discussion
- Topic: Worried about CMSMS
- Replies: 2
- Views: 3574
Worried about CMSMS
As we all know, CMS made simple is the best CMS on the market today. It is flexible, stable and simple to use for developers, editors and module builders. The first version I used was version 0.11 and CMSMS became better and better. Thanks to many core and module builders. But what I have noticed (c...
- Sun Sep 22, 2019 3:30 pm
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 2516
[Solved] Display inline
It's working
- Fri Sep 20, 2019 10:43 am
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 2516
Re: Display inline
Thank you Calguy1000 en Velden. I got it working : To help others, here is my code : action.default.php <?php if( !defined('CMS_VERSION') ) exit; $query = new CategoryQuery; $categorys = $query->GetMatches(); $sql = 'SELECT SQL_CALC_FOUND_ROWS H.* FROM '.CMS_DB_PREFIX.'mod_msfaq_questions H WHERE ca...
- Wed Sep 18, 2019 2:52 pm
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 2516
Re: Display inline
I,m losing the battle. >:D This is my template : <div class="msfaq_wrapper"> <div id="categoryBlock"> {foreach $categorys as $category} <div class="category"> <div class="row"> <div class="categoryline"> <a href="{cms_action_url action='default' cname=$category->category_name}&showtemplate=false">{...
- Sun Sep 15, 2019 9:55 am
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 2516
Re: Display inline
Calguy1000
Thank you very much for this explanation.
I'm gonna try to use this jquery tip and let you know if was able to get it to work.
Thank you very much for this explanation.
I'm gonna try to use this jquery tip and let you know if was able to get it to work.
- Sat Sep 14, 2019 7:24 pm
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 2516
Re: Display inline
Calguy1000 Thank you for your answer. What I did was create a website where all the pages are displayed on one page. I used the tips on cmscanbesimple.org. https://cmscanbesimple.org/blog/multiple-pages-in-one-with-jquery-tabs I used the CGSimpleSmarty module as mentioned in the tip. On one of the p...
- Wed Sep 11, 2019 2:01 pm
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 2516
Re: Display inline
Anyone ?
I'm building a module and want the replace the tag and not the page.
Please help
TIA
I'm building a module and want the replace the tag and not the page.
Please help
TIA
- Tue Sep 10, 2019 6:01 pm
- Forum: Developers Discussion
- Topic: Display inline
- Replies: 11
- Views: 2516
Display inline
Hey you all. My module is almost working as I planned but I'm facing one unsolved problem. I have a php file pointing to a template : <?php if( !defined('CMS_VERSION') ) exit; $query = new CategoryQuery; $categorys = $query->GetMatches(); $sql = 'SELECT SQL_CALC_FOUND_ROWS H.* FROM '.CMS_DB_PREFIX.'...
- Tue Sep 10, 2019 5:51 pm
- Forum: Developers Discussion
- Topic: Learning building modules
- Replies: 1
- Views: 874
[Solved] Learning building modules
The problem was caused by the read of the array.
- Thu Sep 05, 2019 2:45 pm
- Forum: Developers Discussion
- Topic: Learning building modules
- Replies: 1
- Views: 874
Learning building modules
Hi all, I'm building a module (FAQ's) but have a problem. This is my code of the default.php : <?php if( !defined('CMS_VERSION') ) exit; $query = new CategoryQuery; $categorys = $query->GetMatches(); $sql = 'SELECT * FROM '.CMS_DB_PREFIX.'mod_msfaq_questions WHERE category = "Category 1"'; $question...
- Sat Aug 31, 2019 8:35 am
- Forum: Modules/Add-Ons
- Topic: Dropdown inputfield with data from database
- Replies: 6
- Views: 1103
Re: Dropdown inputfield with data from database
Thank you DIGI3 for this advise. Together we can make cmsms better. Here is my solution: The part is the dropdown in my template looks like this : <div class="pageoverflow"> <p class="pagetext">{$mod->Lang('category')}:</p> <p class="pageinput"> <select class="selectCategory" name="{$actionid}catego...
- Fri Aug 30, 2019 9:41 am
- Forum: Modules/Add-Ons
- Topic: Dropdown inputfield with data from database
- Replies: 6
- Views: 1103
[Solved] Dropdown inputfield with data from database
YES YES. I did it. Thanks to the advise from calguy1000.
THANK YOU
THANK YOU
- Wed Aug 28, 2019 7:21 pm
- Forum: Modules/Add-Ons
- Topic: Dropdown inputfield with data from database
- Replies: 6
- Views: 1103
Re: Dropdown inputfield with data from database
Hey you all I'm almost there but after trying and trying the fiekd is not filling correctly I used the code : $sql = 'SELECT SQL_CALC_FOUND_ROWS H.* FROM '.CMS_DB_PREFIX.'mod_msfaq_category H ORDER BY category_name'; $arr = \cms_utils::get_db(); if( !$arr ) return; $out = null; $out = array(); forea...
- Tue Aug 27, 2019 5:15 pm
- Forum: Modules/Add-Ons
- Topic: Dropdown inputfield with data from database
- Replies: 6
- Views: 1103
[Solved] Dropdown inputfield with data from database
calguy1000
Thank you for your response.
I was not shure if there was a special CMSMS command.
I will use your advise and do my best toi get it to work.
(I'm learning)
Thanks again
Thank you for your response.
I was not shure if there was a special CMSMS command.
I will use your advise and do my best toi get it to work.
(I'm learning)
Thanks again