Search found 503 matches

by webform
Thu Jun 12, 2025 9:56 am
Forum: Modules/Add-Ons
Topic: LISE Custom Search Template Title Field Only
Replies: 1
Views: 89

Re: LISE Custom Search Template Title Field Only

Never mind! It seems that the global search field practically functions as a title search field when combined with custom search fields. <div id="{$modulealias}_search"> {$formstart} <label for="{$modulealias}title">{$mod->ModLang('searchfor')}:</label>&nbsp; <input type=&quo...
by webform
Thu Jun 12, 2025 9:12 am
Forum: Modules/Add-Ons
Topic: LISE Custom Search Template Title Field Only
Replies: 1
Views: 89

LISE Custom Search Template Title Field Only

Is it possible to setup a custom search field that only searches the title field in a LISE Custom Search Template? I can easily search custom fields, but I can't seem to find the right setup for a search field to only search the title field. I've tried these combinations: <input type="text"...
by webform
Thu Jun 12, 2025 8:41 am
Forum: Modules/Add-Ons
Topic: LISE: How to keep filter values after performing a search?
Replies: 7
Views: 642

Re: LISE: How to keep filter values after performing a search?

One more question - once the search filter applied, if I click on the item and go to detail page, I can't go back - browser fires 'Confirm Form Resubmission' error page. Is this even possible with pretty_urls turned on? I typically change the search handling from POST to GET precisely to avoid the ...
by webform
Wed Jun 04, 2025 8:50 pm
Forum: CMSMS Core
Topic: a problem with adding PHP to template with UDT
Replies: 3
Views: 556

Re: a problem with adding PHP to template with UDT

My work around to handle the bug in UDT, is to create the UDT with only a PHP comment and then submit the full PHP code in the cms_userplugins table in phpMyAdmin.
Just remember to Clear Cache in System Maintenance after submitting the PHP code, so the UDT loads the code.
by webform
Sun Apr 27, 2025 8:11 pm
Forum: Modules/Add-Ons
Topic: CGUserDirectory Template redirects to frontend page
Replies: 2
Views: 1073

Re: CGUserDirectory Template redirects to frontend page

I think i've found what causing the error! :-[ It was a redirect set up in the htaccess file to "catch" old CGUserDirectory URL's using an old deleted template. It was flooding the admin log hence the redirect. Disabling the redirect also "solved" the access to some CGUserDirecto...
by webform
Sun Apr 27, 2025 3:53 pm
Forum: Modules/Add-Ons
Topic: CGUserDirectory Template redirects to frontend page
Replies: 2
Views: 1073

CGUserDirectory Template redirects to frontend page

I have an old very active website that uses CGUserDirectory that has suddenly started behaving strangely. If you click on a link on the website where CGUserDirectory is set to a specific detail template, the user is redirected to a different page in the frontend than specified in the parameters. If ...
by webform
Sun Mar 16, 2025 4:07 pm
Forum: CMSMS Core
Topic: Does CMSMS Supports Dynamic Content Blocks in Templates?
Replies: 4
Views: 5708

Re: Does CMSMS Supports Dynamic Content Blocks in Templates?

I have also tried that way, but the result is the same. So Block name for example: block="{$section.id}_id" outputs ((string)$_smarty_tpl->tpl_vars['section']->value['default'])."_id A simple test where I don't use a foreach loop: {assign var='foo' value='foo'} {content block="`$...
by webform
Thu Mar 13, 2025 5:27 pm
Forum: CMSMS Core
Topic: Does CMSMS Supports Dynamic Content Blocks in Templates?
Replies: 4
Views: 5708

Re: Does CMSMS Supports Dynamic Content Blocks in Templates?

I already use group fields in the section, but since you can't place a group within a group, I wanted to see if I could make a set of fields in the section dynamic and achieve a similar effect. I have a collection of fields including an ECB2 group in a section. And since I have 6 sections in the pag...
by webform
Thu Mar 13, 2025 12:32 pm
Forum: CMSMS Core
Topic: Does CMSMS Supports Dynamic Content Blocks in Templates?
Replies: 4
Views: 5708

Does CMSMS Supports Dynamic Content Blocks in Templates?

I have a page template with many sections, and each section has a bunch of hard-coded content blocks that are the same in each section (Title, Content, Image, etc.). I thought I would try to see if I couldn't just define my group of content blocks once and then loop through them in the template, but...
by webform
Fri Feb 07, 2025 2:12 pm
Forum: Modules/Add-Ons
Topic: Passing Default Values to Forms with special character's
Replies: 0
Views: 5658

Passing Default Values to Forms with special character's

I'm using FormBuilder 1.2 to edit a LISEInstance and passing default values from LISE to the form. {$ServerName = $item->title} {FormBuilder form='my_form' value_fld877=$ServerName} But if a LISE field contains special character's and the reciving FormBuilder Field is a Text Field the special charac...
by webform
Tue Jan 21, 2025 8:46 am
Forum: The Lounge
Topic: Integrate DataTables into page?
Replies: 3
Views: 46823

Re: Integrate DataTables into page?

Here is how i do it: At the top (after {process_pagedata}) in my page template, i insert a custom text block to hold my JS: {$custom_js="{content block='custom_js' label='Custom JS' wysiwyg='false' tab='Extra'}" scope=global} And before closing <__body> i insert: {$custom_js} That way I ca...
by webform
Mon Jan 13, 2025 3:54 pm
Forum: CMSMS Core
Topic: canonical domain and a domainname with german umlauts
Replies: 7
Views: 3657

Re: canonical domain and a domainname with german umlauts

It shouldn't be necessary to delete the module and create a manual site map.
You can edit and change the template for Sitemap Pages in the Design Manager or create a new sitemap template.
by webform
Wed Nov 27, 2024 12:00 pm
Forum: Modules/Add-Ons
Topic: LISE Instance failing
Replies: 2
Views: 1592

Re: LISE Instance failing

I have partly solved the problem by exporting the LISE Instance as xml, deleting the module and then reimporting the xml file and assigning the LISEInstance a completely new instance name. If I reuse the instance name, the module fails again. Why and what causes the module to fail, I can't figure ou...
by webform
Wed Nov 27, 2024 9:51 am
Forum: Modules/Add-Ons
Topic: LISE Instance failing
Replies: 2
Views: 1592

LISE Instance failing

I have a weid problem where a LISEInstance suddenly has stopped working! The LISEInstance is only outputting a single item id nothing else. All templates and actions is ignored. Nothing is displayed in the admin or server error log and no other LISEInstances is failing. ??? Tried to delete all syste...
by webform
Sat Sep 28, 2024 2:47 pm
Forum: Modules/Add-Ons
Topic: Getting field values from LISE and use in an UDT
Replies: 3
Views: 6544

Re: Getting field values from LISE and use in an UDT

Thanks a lot velden! Totally forgot about LISE's api After fiddling around a bit, I came up with the following (test) UDT, where I retrieve different field values ​​and filter/search on params values, that seems to work: $mod = cmsms()->GetModuleInstance('LISEyourinstancename'); $parms['pagelimit'] ...

Go to advanced search