Jump to content

zoeck

Members
  • Posts

    440
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by zoeck

  1. 38 minutes ago, adrian said:

    but this invoice has expired so I can't pay.

    Have a look here: https://processwire.com/blog/posts/pw-3.0.80/#pro-module-renewals 

    Quote

    I want to renew, but the renewal invoice expired
    Just like the renewal invoices are automatically generated, they also automatically expire after awhile. However, this doesn't mean that you can no longer renew, just that the system automatically expired it after a period of time. If you find this to be the case, just send a PM to "ryan" in the forums, or fill out the Contact form and let me know what product you want to renew. I can refresh the expired renewal invoice so that it'll start anew from today. It's simple to do, and we do it all the time.

    My support/renewal expired two years ago, can I still renew, or do I have to purchase a new copy?
    You can still renew, it doesn't matter how much time has passed. Just contact Ryan (see previous paragraph) and we can refresh it here very easily. Your renewal starts from the date you renew, regardless of how much time has passed.

    You just have to contact ryan 😉 

    • Like 1
  2. 27 minutes ago, HMCB said:

    Can we replace the PW logo with our client’s and keep this throughout updates to PW?

    It’s already possible in the UIkit Admin Theme

    Just Go to Modules -> Core

    Category Admin
    UIKit -> Settings -> Masthead + Navigation -> Logo File

    • Like 5
    • Thanks 1
  3. The slider does not change the image size.
    The slider is only used to scale the size of the preview in the admin area.

    if you click on the picture, you can select the edit function. Then you can resize the Image (and save the resized image)

    • Like 1
  4. When I look into the code of the module, there is no way to set “sender_reply” via a function, except via the module config.

    But there are some Workarounds:

    Or the easier version via the mail header:

    $mail->header("Reply-To", "your@replyto.address");

     

    • Like 1
    • Thanks 1
  5. 8 hours ago, tires said:

    Really, i don't understand what you mean right now.

    In your hook posted above you use “indexPages()”, but the correct one would be “indexPage($page)” without the s at the end.

    Your hook creates a completely new search index each time, not only for the changed page but for all pages.

    You have to use something like this (not tested)

    $wire->addHookAfter('Pages::saveReady', function($event) {
      $page = $event->arguments(0);
      $event->modules->get('SearchEngine')->indexPage($page);
      $event->wire('log')->save('Page saved', "Page ID: $page->id / Page Name: $page->name / Page Parents: $page->parents");
    });

     

    • Like 2
×
×
  • Create New...