Jump to content

Nicolas

Members
  • Posts

    99
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Nicolas

  1. Nicolas

    other CMSs

    Hummm ... are you talking of the module one should not say the name ? Happy to know it's getting close to be released as the last sneak peek video got me really excited about Padlopper 2.
  2. This iconset might be of interest for you as well : https://tablericons.com/
  3. @Robin S Hi Robin. thanks for the clue about Tracy debugger and the right hook method. Solved my problem.
  4. Hi, For a project I need to add a custom admin action button. Tanks to @bernhard i was able to add the action in the submit button dropdown. To peform the action i'm adding a hook to the InputfieldSubmit::processInput method, however the function is executed twice for some reasons i can't figure out. What am i doing wrong ? <?php // Add a save action button to resend the registration email $wire->addHookAfter('ProcessPageEdit::getSubmitActions', function(HookEvent $event) { $actions = $event->return; $actions['send_registration'] = [ 'value' => 'send_registration', 'icon' => 'check', 'label' => '%s + Resend registration email', ]; $event->return = $actions; }); // Process custom save button action wire()->addHookAfter('InputfieldSubmit::processInput', null, 'send_registration_email'); function send_registration_email($event) { $input = $event->arguments(0); if('send_registration' === $input->_after_submit_action) { // populate email vars here send_email($input->email, $mail_subject, $mail_body, wireMail()); } // Populate back return value, if you have modified it // $event->return = $attendee; $event->cancelHooks = true; }; function send_email($email, $mail_subject, $mail_body, $mailer) { // Sends the email }
  5. Hi @malvarco and welcome. I've noticed that the hero image is 800 Ko. There's certainly room for improvement here ?
  6. Thanks for your answers. #2 Totally agree about not storing user card details. I guess that the "easiest" path will be to have a module around a provider like Stripe, ReCharge etc...
  7. @kongondo regarding the payment process, have you planned the ability to pay a fraction of the total cost (make a deposit) and schedule future payment ?
  8. Nice single page website. Any chance to send a pull request for Template Engine Twig module. I think many users will be interested in the Twig 3 compatibility.
  9. Nice site. Thanks for the insights about how it was built and what are the modules involved.
  10. OH MY GOODNESS !! This thing is a beauty !!! Well done sir.
  11. @dragan Indeed nice catch. @bernhard Thanks for the RockSkinUikit module. Will use it in an upcoming project.
  12. Hi Zeka, I was wondering how easy/difficult it has been to style the back office to black & white theme ? Any hints on how you achieved that ?
  13. +1 for the ingredient template allowing to create a ingredient database.
  14. Hi, From the top of my head this could do it this way : a template with a title and body (recipe) field and a repeater field to hold the ingredients list : a text field to hold the ingredient name a text field to hold the amount of ingredient a select field to hold the amount unit (tsp, l, ml? etc..)
  15. Great job ! Well done. Really love the sliding effect and typography.
  16. Great write up Guy, thanks for the post You've mentionned Twig. How did you implement that ? Is there any chance to have more details about the programming architecture?
  17. Nicolas

    So happy :)

    Bravo ? !! I'm thinking about using ProcessWire as a foundation for a marketplace. Glad to see ProcessWire works very well for you. Without selling your company's trade secret it would be great to get some insights about how you use ProcessWire.
  18. Can you elaborate on "other tools that allow separating admin and frontend to different servers". Do you mean tools like Gatsby and the likes ?
  19. No luck by turning off the dynamic loading.
  20. What i want to achieve is to be able to add an remove pages from the repeater fields. When saving the page holding the repeater field on creation everything work as expected, but later on when updating any field in the repeater the changes are not save and an error occurs. My version of ProcessWire version 3.0.36.
  21. Hi, I'm experiencing error on saving a page with multiple repeater fields. Any clue on a solution is welcome. Updating to the repeater field pages under the Admin work as expected though. NIcolas
  22. Hi, i haven't used ProcessWire in a multisite context but have already used the Admin Restrict Branch module to limit to a given subpages set of theProcessWire page tree.
  23. Waooh problem solved. That was fast. Thanks a lot !!
  24. The body field is a CKEditor field to which the Hana code text formatter is being applied. The version of the TeplateLatteReplace is 0.2.0
×
×
  • Create New...