Jump to content

Cody

Blesta Developers
  • Posts

    1,574
  • Joined

  • Last visited

  • Days Won

    74

Posts posted by Cody

  1. Just takes me to the IP:port 

     

    Right click on the link and select "Copy Link Location". Then open a different web browser and paste the link in the address bar. You're probably having trouble because you've already logged into a cPanel account and didn't explicitly log out. cPanel, for some reason, won't let you log in to another account using basic authentication unless you explicitly log out of the other account first.

  2. Good suggestion!

     

    You'll have to get your hands a little dirty, but you can disable sending attachments in invoice delivery emails by commenting out lines 80 - 85 in /components/invoice_delivery/invoice_delivery.php

     

                    $attachments = array(
                       /*
                        array(
                            'path' => $inv_path,
                            'name' => $attachment_name,
                            'encoding' => "base64",
                            'type' => $this->company_settings['inv_mimetype']
                        )
                       */
                    );
  3. I'm not sure there are many services out there that handle secure storage of card data. Besides the trust issues that arise from such a solution, I don't believe it alleviates PCI compliance since one of the PCI compliance questions is whether or not you share card data (which obviously you would be).

     

    I've encountered customers like the one you've described many times. I make it clear that it is simply not an option to store card security codes, and I'll often recommend merchant gateways with offsite storage (just about every merchant gateway these days). In my experience they've chosen either not to process auto debits, or have chosen a gateway that supports offsite storage. If the customer is adamant about storing card security codes then we fire the customer because that sets off a red flag for future issues with the client.

  4. Hello,

     

    If only 1 way is accepted for payments (a bank wire), it would be nice if it could be shown on invoices. Something like a text-area "Terms", that shows details on invoice. I see no other way now to provide details bank-wire, so that customer would have all the info in his mail (or attached invoice).

     

    You can update the email template to contain the payment information the customer should use when paying an invoice.

     

    Also, is it a bug, that is does not allow to select a radiobox if only "Offline Payment" gateway is installed? The link is sent to invoiced clients, but it allows to do nothing.

     

    You have to assign the offline payment gateway to the order form.

  5. You'd have to have a separate staff group with super limited access, and this feature would have to be tied into the permission system somehow.

     

    The question asked "Enter Zip/Postal Code" would have to be entirely configurable, possibly even based off of custom client fields. There would be a lot involved (UI-wise).

  6. Hi again,

     

    I have been following the documentation to do remote API calls. How would I be able to do an array for the Users-Add call and others that would need an array at a remote location? Thanks.

     

    Use

     

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($args));

     

    P.S. An SDK has been released that makes API requests much easier, but it only works for version 3.0.0.b4 and newer.

  7. You should have noticed a yellow message appear after you installed the plugin letting you know to set the access control permissions for the plugin. You do this under [settings] > [system] > [staff] > [staff Groups].

  8. We have plans to expand the Portal plugin into more of a CMS, which will allow you to create custom pages.

     

    As it stands, you can create custom pages by creating custom controllers and views. So there's some coding involved, but it's pretty painless if you know what you're doing.

  9. That is FontAwesome, not Bootstrap. While FontAwesome is built to be used with Bootstrap, its not required. I use FontAwesome in various projects, but not Bootstrap.

     

    I think Paul was commenting on the use of bootstrap in the design, not related to the icon itself.

×
×
  • Create New...