Jump to content

cb2004

Members
  • Posts

    547
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by cb2004

  1. Hey @Macrura, so glad you are taking this on. Agree it is stable, just needs a little love. In the fork made by @gebeer this supports the regions US and EU, would be great if you could get this into your fork.
  2. I am coming up against a bug where I cant make use of the functionality 'Name format for children', and it doesn't seem like a hook is possible to save the name: $wire->addHookBefore('Pages::setupNew', function(HookEvent $e) { $page = $e->arguments(0); if($this->input->parent_id === '1') { $page->name = 'some-name'; } }); I have tried many solutions from the forums, nothing is achieving what I would like, even for example if I am trying it on the home page like the code above. Any help would be much appreciated.
  3. Yep, my bad. awesome job on that one. I just had to change 'template=user' to 'template=46' or 'template=members-detail' as my users are not within the normal section for this site.
  4. I think this is a bug so posted here: https://github.com/processwire/processwire-issues/issues/795
  5. Nice thinking Bernhard but no joy. In my case I may have to get users added through the frontend anyway. Creating a name for a user is an unnecessary step for me so people will be adding an email address for the name, and then when the user is added they will be adding the email address again to the email field. Off topic I know but just in case I revisit this thread in years to come. I will do that, cheers.
  6. Yep, that's why I was expecting it to work and banging my head against the table when it didn't. I tried hooking into Pages::added but: Method Page::addRole does not exist or is not callable in this context
  7. I am having a lot of fun with the users in different parents/templates: https://processwire.com/blog/posts/processwire-core-updates-2.5.14/#multiple-templates-or-parents-for-users What I would like to do is when a user is added using my new user template it should automatically add the role, this field can then be hidden. I can get the hook to work in ready.php using 'saveReady' but not 'added'. Any ideas? $this->addHookAfter('Users::saveReady', function($event) { $user = $event->arguments(0); if($user->template->id === 46) { if($user->get('_is_saving')) return; $user->setQuietly('_is_saving', true); $user->addRole('member'); $user->save(); $user->setQuietly('_is_saving', false); } });
  8. So, I followed the steps here to have users in a different parent: https://processwire.com/blog/posts/processwire-core-updates-2.5.14/#multiple-templates-or-parents-for-users This is working great, however when an editor adds a new user to '/members/', I don't want them to have to enter a 'Name'. This is completely irrelevant to the system I am building and will just require an email, so I was going to populate the name from the ID, or the email address entered havent decided yet as its not important, people will login on the frontend with their email. The trouble is, if I populate 'Name format for children' in the parent template nothing works when I go to add a new member, it goes to a 404. Is there any way to skip the adding of a name here? Cheers.
  9. Interesting concept, you could offer a license for the people that did fund you and it will give you some enthusiasm, but may of course hold you to deadlines, ha ha. Putting my cards on the table, I am not sure if I would ever use Padloper, I would love to but the need hasn't come up yet. The only thing I like about WordPress is the speed you can get WooCommerce to market. However I probably would Kickstart it as I know it would make a great addition to PW. There may be many like me, so if you offer up the license to people who do fund, you are not missing out on anything, only they are if they don't use the license. Great thinking HMCB.
  10. All valid points. But in my eyes if @ryan is confident that the current "work in progress" is better than the current "live" is there any harm in pushing? If new visitors see better than what is currently there surely that will gain new users in the interim. Feedback can then be received and implemented to make it even better and boost new users even more. The website is looking tired as it is, and with so many opinions, when would something that everybody is happy with (is that ever the case) actually go live? Happy New year to everyone, it's been a great year with ProcessWire in our small team.
  11. That done the trick, I had to turn off cleaning for things like ?utm_source=X&utm_source=Y. What caught me out here was page:1000{all} didn't work, fine once I realised though.
  12. Can the module redirect to destination including query strings or anything after the / for example? I have tried numerous things but no joy. Having to do this in .htaccess: RewriteRule ^old-page/(.*) /new-folder/new-page/$1 [L,R] Cheers.
  13. Same issue. Latest dev doesn't help.
  14. New site looking great, nice and clean. Would love to lend a hand when you need it.
  15. Ryan has always said he would like the designers that use ProcessWire to get involved and collaborate so I imagine that is what he means.
  16. I discovered this module today. Fantastic.
  17. I discovered this module today. Fantastic.
  18. I remember you from the other CMS which was not simple compared to ProcessWire :). Send me a PM, would be great to reconnect.
  19. Hi @Sorina. I have no experience with Foundation, however it doesn't look like you are loading the CSS or JS files. Also with a quick scan, you have 2 divs with the same id, and an id should be unique.
  20. Pretty sure this was announced in a recent blog post with sessions in the database. Bank holiday in the UK so I will take a look in the morning.
×
×
  • Create New...