Jump to content

mrzell

Members
  • Posts

    9
  • Joined

  • Last visited

Reputation Activity

  1. Like
    mrzell reacted to Blesta Addons in Allow Invoices To Show Within The Browser Instead Of Forcing Download   
    More sophistical solution to avoid invoice attachment in email probleme
     
    open
     
    app/controllers/client_invoices.php
     
    if view function  change
    $this->InvoiceDelivery->downloadInvoices(array($invoice->id)); to
    $this->InvoiceDelivery->streamInvoices(array($invoice->id)); in components/invoice_delivery/invoice_delivery.php
     
    under downloadInvoices() add the fallowing function
    public function streamInvoices(array $invoice_ids, array $options = null) {   $invoices = $this->getInvoices($invoice_ids, true);   $this->buildInvoices($invoices, true, $options)->stream(); } this will save the email attachement invoice in pdf .
  2. Like
    mrzell got a reaction from Joseph H in Notification on every transaction   
    Hi, is it posible to get email notification on every transaction update? How? TQ
  3. Like
    mrzell reacted to iamp in Modifying Registration Form - Adding And Removing?   
    Hi everyone,
     
    I've just started using Blesta, and have been working my way through getting it right. I've gotten to the user registration form - there are a few fields I really don't need from clients, and I was wondering if I can switch them off?
    Similarly, I'd love to be able to add one extra field (checkbox) and hook into it when they submit (an API for a newsletter) - is there any defined way of doing this / could anyone point me in the right direction?
    Many thanks!
×
×
  • Create New...