Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/27/2017 in all areas

  1. Hello, I was following the documentation on how to create a custom cron job for a plugin: https://docs.blesta.com/x/PQEh and I noticed that after I called CronTasks::add() the cron job was not being called by cron or showing up under Company > Automation settings. I had to look at the source docs and figure out that in addition to calling CronTasks::add() I need to run CronTasks::addTaskRun(). May you please update the confluence document to reminder developers to call CronTasks::addTaskRun() after CronTasks:add() during installs? Thanks, -Adam
    1 point
  2. timnboys

    Looking to use Blesta

    A: @Licensecart aka Michael Dance since he loves doing web design as he did it for me lol(sorry Michael Dance I just had to mess with you since you do awesome work as my site wouldn't have looked that good if it wasn't designed by you first lol )
    1 point
  3. Michael

    Looking to use Blesta

    It depends on if you are a developer if so should be easier to do you can see how Blesta does it for the main modules / development docs. https://docs.blesta.com/display/dev/Overview Themeforest.net if you can afford a few bob, otherwise there's a few themes in the marketplace on the forum or we have some free pre-made themes on free designs as-well. I believe there's a few people from Australia here not sure when they will be online however.
    1 point
  4. Nginx config at https://gist.github.com/fossxplorer/943ed638518987ae21e074a68c3d9258 Btw, the Paypal IPN works now. How do i get a developer account ? I'd love to have a developer license as i had it with WHMCS and it was very useful!
    1 point
  5. in your module file, you will find the fucntion public function getClientAddFields($package, $vars = null) add the fallowing code $user_name = $fields->label('Enter Username', 'username'); $user_name->attach( $fields->fieldText( 'username', $this->Html->ifSet($vars->username), ['id' => 'username'] ) ); // Set the label as a field $fields->setField($user_name); for blesta password, you can't get the password, if you can got it, then you can send a exploit CVS to blesta
    1 point
  6. I do not fully understand your question. Let me try and say it back to you: You created a custom module with Blesta in PHP. You would like during the order process for someone to enter a custom field called username (which is not the same and 100% different username of the person logged into Blesta) and you grab that input? Have you looked at ModuleFields? https://docs.blesta.com/display/dev/ModuleFields The other way to do this, is use the Universal Module, add a custom field to the order process. The Universal Module has a very useful option to make external ReST calls when an order is submitted. You would listen for this ReST call and then put all your business logic in that call. Blesta Admin -> Modules -> Managed Universal Module -> Edit Product Label (create a product label if you have not already) -Adam
    1 point
  7. in the PDF invoice doawnload, if the service line has TAX, the cost shown in the PDF with TAX . Description Quantity Unit Price Cost xxxxxxx 1 10 12 the cost is showing the total (qnt X Unit) + %tax (20% in our case) . it should show the total without the tax included . affected version 3 and 4 .
    1 point
×
×
  • Create New...