-
Posts
516 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Gideon So
-
PW 3.0.12: Support for extended (UTF8) page names/URLs
Gideon So replied to ryan's topic in News & Announcements
Hi, I don't think this is a good way to do it either. Seems other CMSs get a more simple way. Gideon -
PW 3.0.12: Support for extended (UTF8) page names/URLs
Gideon So replied to ryan's topic in News & Announcements
Hi Adrian, I found a 5000- word list and copy all the characters to the config.php and don't forget copy them to the .htaccess file too. But from time to time I need to add more. Gideon -
Hi, @Robin S Learn something new today. Thanks. Gideon
-
Hi @xxxlogiatxxx, There is no $page->find(). You may want to find all pages which use template "item". The syntax should be: $fields = $pages->find("template=item, sort=item_type"); Gideon
-
Hi @Neveroff, I started my journey with this one: Gideon
-
Just replace the css file and js file and you have the latest bootstrap 4 version. Gideon
-
I read Medium everyday but not a blog. Medium indeed is replacing blogs. Gideon
-
Very impressive. Why not post in the modules main forum? Gideon
- 3 replies
-
- 1
-
-
- module
- administration
-
(and 1 more)
Tagged with:
-
Access child pages / auto redirect to parent page
Gideon So replied to Manalishi's topic in Getting Started
Hi, Maybe you should try using a full URL. Gideon -
$page->children() unpublished pages are still shown ...
Gideon So replied to jrtderonde's topic in API & Templates
Hi, $page->child already select the first child of the current page. I think there is no need to add any selector to it. Gideon -
Sort or search by field other than system field like id, created, etc is not possible because all the custom form fields are saved as one array in the database. Gideon
-
+1. Much better to have it in field settings. Gideon
-
Hi, The solution is simple. $pages->find("my_repeater_matrix.my_repeater.my_textarea_field%=$q"); I think I messed up with field name before. Gideon
-
Hi @Robin S, I have tried this syntax. Here is my line of code. $pages->find("repeater_matrix_field.repeater_field.textarea%=$q"). it seems that it does not work in repeater in a repeater matrix context. It still return no results. Gideon
-
Hi, Typo here. I think I use the right operator in my code. Any more suggestions? Gideon
-
Correct a typo here doesn't help much. ?? Gideon
-
I have a repeater matrix field in which there is a repeater field that container a textarea field. How can I search text in the textarea?? I tried $pages->find("repeater_matrix_field.repaeter_field.textarea=%$q"), but return no results. Any idea how to do it?? Gideon
-
Get last three repeater posts to another template
Gideon So replied to Roych's topic in Getting Started
LimWub, Your code only shows the first 3. Try this: $Events = $pages->get('/Events/')->Events_repeat->find('limit=3,start=-3'); Gideon -
Backend and Frontend Shop Catalogue for PadLoper
Gideon So replied to kongondo's topic in Module/Plugin Development
Hi, Sounds very interesting and useful to many. Gideon -
Hi Adrian, Confirmed this version fixed the problem. Gideon
-
I have the same problem with repeater also. The solution is exclude the repeater page under admin in the module settings. Gideon