Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/10/2015 in Posts

  1. Often the login forms all look similar .... There is really not much to do on it (a couple of fields and either labels or icons and some text and a login button) so really you cannot judge.
    2 points
  2. Feedback? It's not 100% done. There are still many to tweak and need advice on this kind of style. I will also try not to change alot especially on the default blesta layout unless it's necessary. Thanks.
    1 point
  3. You can clone it, and delete the companies you don't want sure. You'll just have data from the other companies hidden in the database, but if it's all your data, and you aren't selling one of the companies to a 3rd party then I suppose it doesn't matter too much.
    1 point
  4. Tyson

    Payment Url Is Not Correct

    Looks like the Root Web Directory is incorrect. The root web directory should be set to /home/site/public_html/, without /blesta/. /blesta/ is Blesta's installed web directory, while /public_html/ is the root web directory.
    1 point
  5. There's a lot to consider. We have future plans to implement a Blesta -> Blesta importer for this purpose. This would allow people to move companies between installations, so addon -> standalone, or addon -> addon, or standalone -> addon, just moving companies. It isn't very high on the priority list at the moment though, so I don't have an ETA for you.
    1 point
  6. Very nice! If you found this plugin useful, please consider donating to @PauloV for all his hard work. Look for the red "Donate Here" link in his signature above.
    1 point
  7. Many thanks, PauloV! I wanted to write you to ask you if you would have updated the chat
    1 point
  8. woohoo, a new Client Theme for Blesta
    1 point
  9. @Paul, Thanks! I know what is the big priority: make Blesta fully multi-lingual!
    1 point
  10. The error is likely caused by the name of the class or directory. The class name of the gateway should be in camel-case format, while the directory name should be separated by underscores as described in the Programming Style Guide, following the gateway file structure. You can use the other gateways as reference. i.e. The class name "CarrotPay" means the directory it is within should be "carrot_pay" @ /components/gateways/nonmerchant/carrot_pay/carrot_pay.php Curious, are you a developer by trade? I ask because I have been tailoring my explanations assuming that you are familiar with object-oriented programming in PHP--classes, abstract methods, inheritance, etc., following the MVC design pattern that Blesta uses. If not, there is going to be a learning curve to overcome first. In CarrotPay::buildProcess, you would create a view, set variables to the view, and return the view. Setting variables can be done by calling set on the View object by setting a name for it in the view (first parameter) and the value (as the second parameter). e.g. (This is copied from the Payza gateway) $fields = array(); $this->view = $this->makeView("process", "default", str_replace(ROOTWEBDIR, "", dirname(__FILE__) . DS)); Loader::loadHelpers($this, array("Form", "Html")); //Sets sandbox or production URL based on "test_mode" parameter value. $this->view->set("post_to", ($this->ifSet($this->meta['test_mode']) == "true" ? $this->payza_sandbox_url : $this->payza_url)); $this->view->set("fields", $fields); return $this->view->fetch(); You would output the data in your view template under /components/gateways/nonmerchant/carrot_pay/view/default/process.pdt. The Form and Html helpers are used to simplify creating form fields and for outputting content html-safe.
    1 point
  11. Hello Paul/Cody/Tyson I saw in CORE-450 that you are planning some new functions on Support Manager that we were working on it (Display Services/Assign Service to Tickets), and ofcourse custum filds that are welcome Can I ask for you to add this also that is very easy, and so we do not nedded to continue with "Support Manager Pro", and we can STOP some confusing in Support Manager Native / Pro Import "Email Name", and not only the "Email" wen its not a registered client Add a "Trash" (visible only by Staff) status (to move to trash) Add a "Spam" (visible only by staff) status (to move to spam, and also to prevent importing by pipe/pop3/imap all tickets that are from the same email in the "spam") Add a action "Delete", to be able to "Delete Tickets" with a "Popup Warning" to prevent any missclicking Add in Ticket View a "Quick Add Client" button wen is not a Registered Client On Staff Replying to a Ticket, change the status to "Awaiting Reply" You can also add our javascript code to correct the "Signature" problem wen you trie to add a "Predefined Response" and it adds after the signature insted of adding before. Logs entries in light grey and with no padding/magins on top and bottom Notes in full yellow and not only the title Client and Staff Responses and title with no padding/magins on top and bottom. There is unecessery spaces betwin all entries Notification Badge on how many open tickets are, in Admin Support Menu and also in Client Support Menu Thanks in advance, PV
    1 point
×
×
  • Create New...