Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/02/2013 in Posts

  1. I have updated the ticket -- yes, we can take a look but will need login details. You can provide them in the ticket if you're willing.
    1 point
  2. It's actually simpler than that. Edit your Universal Module Product. Under "Service Options" scroll down to the form with "Notice" in it. For the "Add" option, add your email address in Post URL/Email. Expand the "Email Notification" section, and set the From Email, Subject and message. Use the {% debug %} tag in the message and run a test. It will spit out all the fields available to that template, which you can use to customize it.
    1 point
  3. Alex

    Proxmox Module

    Actually, I have the impression that OpenVZ is better supported than KVM. However, both do work and both are supported by the module to the best of the API's ability. GoGetSSL and TheSSLStore modules are coming soon as well.
    1 point
  4. LOL, I love this. Your function that you hacked together to decrypt their data is faster than the one they use. That just proves how much better at this you are than them.
    1 point
  5. First...remember that if you make this change, you will most likely need to redo the change after updates, as this is editing a core plugin file that could be altered with new versions of Blesta. You will need to edit this file: plugins/order/views/templates/standard/types/registration/main_signup.pdt Find: <?php $this->Form->fieldRadio("username_type", "email", ($this->Html->ifSet($vars->username_type, "email") == "email"), array("id"=>"username_type_email")); $this->Form->label($this->_("Main.signup.field_username_type_email", true), "username_type_email", array("class"=>"inline")); $this->Form->fieldRadio("username_type", "username", ($this->Html->ifSet($vars->username_type) == "username"), array("id"=>"username_type_username")); $this->Form->label($this->_("Main.signup.field_username_type_username", true), "username_type_username", array("class"=>"inline")); ?> Replace with: <?php $this->Form->fieldRadio("username_type", "email", ($this->Html->ifSet($vars->username_type, "email") == "email"), array("id"=>"username_type_email")); $this->Form->label($this->_("Main.signup.field_username_type_email", true), "username_type_email", array("class"=>"inline")); ?> This will simply remove the username radio button, so the only option is to choose email.
    1 point
×
×
  • Create New...