Jump to content

nabo

Members
  • Posts

    119
  • Joined

  • Last visited

Everything posted by nabo

  1. Thanks for this module, it seems great, but if I try to install I got this error 😞 Error installing module - FieldtypePageGrid Modules: Unable to install module (FieldtypePageGrid): Can’t save page 0: /pg-items/: It has no parent assigned
  2. This is the problem! I can't check because the value for a given language (if the value is empty) is returned with default value.
  3. Yes, I know this feature but I can't change this setting for these fields 😞
  4. Hello I manage a multi-language site. In very few case I would like to have a content in other language than default when the value is not set in current language. I try this way to check if the value is empty, but the value is printed with default language $cl = $languages->get($user->language->name); $blog_title = $page->getLanguageValue($cl, 'title'); Is there a way to check if a value is empty in some language?
  5. Hello it would be nice if it could be possible to force a unique (or relative) imagefield for CKEditor. Example Using a repeater matrix (or repeater) with CKEditor field, the primary sources for images are imagefields in the page-repeater fieldset. Obviously I can change the page source, but I need to start from the root and this is not comfortable. In this specific situation the better solution is to have an imagefield in the parent page and force CKEditor to automatically go there... or if you want to have a "media library" go there first. Don't know which could be the best "setting system" but in my opinion this is an annoying problem.
  6. Thanks @Robin S this command solved the problem! Thank you again ?
  7. Thanks @Robin S. I will try soon and let you know! (unfortunately the PW installed is 3.0.123 and I need some time to update it)
  8. Hello I have a strange problem with $page->find The problem is that it's not work for a particular template. I correctly get the starting $page but these kind of selectors don't work $page->find("template=my-template") $pages->find("has_parent=xxx,template=my-template") but these work $page->find("template=another-template") $pages->find("template=my-template") I tried also with include=all in the selector. The strage thing is that I repeat the same procedure with another starting parent $page the system works perfectly. Any ideas?
  9. Hi @kongondo thanks for your work, I really appreciate and have waited for a long time ? I'm really excited to test PadLoper2. I have some questions 1) since PadLoper product are separated by PW pages, are you planning to do an Inputfield for select PL2 product? It could be useful if you want to use a richer product page modeling it with PW fields. 2) PL users are different from PW users?
  10. The problem is this indeed! The parent page exists! I tried to export the page, copy the json, delete the page and import in the same position. This is the error. Other details PW 3.0.148 superuser
  11. Hello I'm trying to use export/import. The export works correctly, but when I try to import data I get this error for each row. 1. Page: /en/data/coupons/coupon_code/ – Fail Unable to locate parent page: /en/data/coupons/ Page cannot be imported I tried every options (changing parent, erasing path info from json)... but nothing. Any idea?
  12. Hello is there a way to hook a page save but only when I save it from page edit? And is there a way to prevent page save hook when I trash it? thanks
  13. I got a solution (maybe there are others better than mine) public function init() { if($this->wire('user')->isSuperuser()) { $this->wire()->addHookAfter('ProcessPageEdit::buildFormSettings', $this, 'buildForm'); $this->wire()->addHookBefore('Pages::saveReady', $this, 'saveForm'); } } public function buildForm(HookEvent $event) { $p = $event->object->getPage(); $inputfields = $event->return; $data = wire('modules')->getConfig($this); $fieldset = $this->wire('modules')->get("InputfieldFieldset"); $fieldset->attr('id', 'my_fieldset'); $fieldset->label = __("My Renders"); $fieldset->collapsed = Inputfield::collapsedYes; $field = $this->wire('modules')->get("InputfieldTextarea"); $field->attr('name', 'renders'); $field->attr('value', $data['RendersPages'][$p->id]['renders']); $field->label = $this->_('Renders'); $fieldset->append($field); $inputfields->append($fieldset); } public function saveForm($event) { $data = wire('modules')->getConfig($this); $data['RendersPages'][$this->input->post->id]['renders'] = $this->input->post->renders; $this->wire('modules')->saveConfig($this, $data); }
  14. Hi class Renders extends WireData implements Module, ConfigurableModule { static public function getModuleInfo() { return array( 'title' => 'title', 'summary' => 'summary', 'version' => '1', 'author' => 'me', 'autoload' => true ); }
  15. Hello this is my snippet public function init() { if($this->wire('user')->isSuperuser()) { $this->wire()->addHookAfter('ProcessPageEdit::buildFormSettings', $this, 'buildForm'); $this->wire()->addHookBefore('ProcessPageEdit::processInput', $this, 'saveForm'); } } public function buildForm(HookEvent $event) { $p = $event->object->getPage(); $inputfields = $event->return; $fieldset = $this->wire('modules')->get("InputfieldFieldset"); $fieldset->attr('id', 'my_fieldset'); $fieldset->label = __("My Renders"); $fieldset->collapsed = Inputfield::collapsedYes; $field = $this->wire('modules')->get("InputfieldTextarea"); $field->attr('name', 'renders'); $field->attr('value', $p->renders); $field->label = $this->_('Renders'); $fieldset->append($field); $inputfields->append($fieldset); } public function saveForm($event) { $page = $this->pages->get($this->input->post->id); $page->set('renders', $this->input->post->renders); } It builds correctly the inputs, I edit the field renders but when I save the page the value of this inputfield remain blank. What's wrong?
  16. Hi @kongondo any news? I'm just frustrated of working on e-commerce platforms... I need Padloper2 ?
  17. Hello @Robin S thank you very much, you save my day! ?
  18. Hi @Robin S I updated my ready.php including this wire()->addHookBefore('Page::path', function($event) { $page = $event->object; if($page->id === 1 || $page->template=="_site") return '/'; $path = ''; $parents = $page->parents(); foreach($parents as $parent) if($parent->id > 1 || $parent->template!="_site") $path .= "/{$parent->name}"; $event->return = $path . '/' . $page->name . '/'; }); but nothing different from usual happened... if I tried to log something there's also a Fatal Error
  19. Hello I configured the CMS multilanguage with a multisite idea. I created template "_site" and the name of the template is the url of the site interested. This installation is used only as API generator. The problem is that $page->url method returns the url with _site name. Now I have this situation /[language]/[_site name]/example/example... I would like to have this /[language]/example/example.... Is there a way to rewrite this method? The best solution could be a template type check that exclude the _site name in the result. This solution should work also when I select a page in CKEditor to set a link. Thanks
  20. Hello I have a repeater that contains two field: a page reference and a textarea. The page reference is a list of user. With superuser all works correctly but with other roles (that have the correct rights to see and edit user as long as pagereference and repeater) there's a small but very annoying problem. I attach some screenshot This is what superadmin see. After the #1: and #2: there's the email of the user page reference. The email field is the field that I choose to set as label field. This is what another role see but... the strange thing is that if I open the row, the pagereference is working correctly so... what's the problem with non superadmin user? Thanks
×
×
  • Create New...