Jump to content

Jono

Blesta Developers
  • Posts

    376
  • Joined

  • Last visited

  • Days Won

    37

Reputation Activity

  1. Thanks
    Jono got a reaction from Paul in Stop invoices from sending on the weekend.   
    That private method no longer exists in the current version of Blesta.  Cron tasks have been moved to their own classes.  See core/Automation/Tasks/Task/CreateInvoices.php  Specifically see the run() and isTimeToRun() and createRenewingServiceInvoices() methods
  2. Like
    Jono got a reaction from Paul in Search user by IP or paypal email   
    Nope, CORE-3573
  3. Thanks
    Jono got a reaction from evnix in Default payment gateway - Razorpay   
    Currently, bypassing this page is not an option, but renaming it is relatively simple.  You can edit the language file under components/gateways/nonmerchant/razorpay/language/en_us/razorpay.php and modify line 2
    $lang['Razorpay.name'] = 'Razorpay';  
  4. Like
    Jono reacted to Paul in Blesta 4.9 Released   
    Version 4.9.0 is now available, please see the release announcement.
    Patching Blesta

    See Patching Blesta in the User Manual for instructions.

    Installing Blesta

    See Installing Blesta in the User Manual for instructions.

    Upgrading Blesta

    See Upgrading Blesta in the User Manual for instructions.

    Migrating to Blesta

    See Migrating to Blesta in the User Manual for instructions.
    Release Notes

    See Blesta Core - Version 4.9.0.

    For older releases see all Change Logs.
  5. Thanks
    Jono got a reaction from kepler in cPanel account: domain subdomain   
    Correct, two packages for ordering either subdomain or full domain.
    We are working on features to accommodate this.  I believe it is planned in the eventual domain manager release, but more immediately there is a task for Namesilo to automatically generate/update packages based on current pricing.
  6. Like
    Jono got a reaction from Paul in Plugin page broken   
    You need to uninstall it before removing the files from your system.  Either re-add the files and uninstall or manually remove the plugin from your database.  If you do it manually make sure there are no tables that were created by the plugin since those should be removed as well.
  7. Like
    Jono reacted to MDHMatt in Possible to merge clients?   
    transfer the services and deactivate the account. blesta has a setting to not allow multiple accounts with the same email, enable that
  8. Like
    Jono reacted to netorica in Create email templates in blesta   
    Thank you very much
  9. Like
    Jono got a reaction from Michael in Trying to Pull Client Phone Number Locally   
    X) How are you outputting it?  $contact_numbers is an array of objects.  I guess in your case you are looking for a particular number so maybe just grab the first one
    <?php $verify_phone = $this->Html->ifSet($contact_numbers[0]->number); ?> <script> window.intercomSettings = { app_id: "app_id", phone: "<?php echo $verify_phone; ?>", name: "<?php echo $this->Html->_($contact->first_name, true) . ' ' . $this->Html->_($contact->last_name, true);?>", email: "<?php echo $verify_email; ?>", // Email address user_hash: "<?php echo $email_sig; ?>" // HMAC using SHA-256 }; </script> You may also want to submit the $type argument to Contacts::getNumbers() to get only 'phone' type numbers.
  10. Like
    Jono got a reaction from Gabriel Gutierrez in Creating Staff user limited to Client Groups   
    Interesting concept, and I can certainly see the appeal.  Currently this is not possible through Blesta.  Staff members are not associated with particular client groups and the client list page doesn't filter by client group anyhow.  If you'd like to see this in future releases, submit a request here https://requests.blesta.com/.
  11. Like
    Jono reacted to Gabriel Gutierrez in Creating Staff user limited to Client Groups   
    Hi,
    I want to create staff users for my Sales People, but I only want them to see the clients they have sold a product to, I do not want them to see accounts of clients that are not theirs. I thought I could achieve this by creating different "Client Groups" and assign in the staff area only the group they can see. How can I configure something like this? Is it possible?
    Thanks, 
    Gabriel
  12. Thanks
    Jono got a reaction from Paul in PagSeguro Payment Gateway   
    This was updated as a part of v4.8.0.  See https://dev.blesta.com/browse/CORE-3295
  13. Like
    Jono reacted to kepler in Stripe zip code   
    Hi,
    Thanks for the reply. For anyone who might need, we just have to go that file ( components/gateways/merchant/stripe_payments/views/default/cc_form.pdt ), and in the line:
    // Create an instance of the card Element. var card = elements.create('card', {style: style}); change it to (hide the zip option):
    // Create an instance of the card Element. var card = elements.create('card', {style: style, hidePostalCode : true}); There are several settings and options we can control described at: https://stripe.com/docs/js/elements_object/create
    Best regards,
    Kepler
  14. Like
    Jono reacted to Digital Yeast in Invoice not marked as paid despite payment   
    Thanks Jono, IT WORKED!
    The API Keys & Webhooks tab in Paystack Settings page has a field for Live Callback URL and another field for Live Webhook URL. 
    I used the URL you provided in both fields, using 1 as my {company_id}.
    You should update the Blesta docs.
    Cheers.
  15. Like
    Jono reacted to sunrisepro in Possible to customize invoice due period?   
    Thanks. It's not obvious that settings controls that too, maybe it would be worth adding some help text.
  16. Like
    Jono reacted to John Vaudrey in Product One Time Pricing Term   
    Thank you, it was a cancelled service.
    I have now been able to remove it
    Thanks again
  17. Like
    Jono got a reaction from Paul in Product One Time Pricing Term   
    Chances are that it is on a non-active service and was overlooked because of it.  The pricing id can be found be going to the package edit page, right clicking on the term test box and opening your browsers inspector.  Right above the term field you will see a hidden field called pricing_id.  You can take this pricing_id and search your "services" table for it.  That should be the one you are looking for.
  18. Like
    Jono got a reaction from Michael in Hotfix for 4.7.0 "Undefined property: Services::$Clients..." Error   
    It has come to our attention that under some circumstances in Blesta 4.7.0 (e.g. when a client is adding an addon service through the client interface) users can receive a fatal error "Undefined property: Services::$Clients on line 5159 in path_to_your_blesta\app\models\services.php".  This is a bug that will be resolved in 4.7.1 (CORE-3271).  You can fix this issue by changing app/models/services.php lines 5112-5114 from 
    if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages', 'Clients', 'ClientGroups']); } to
    Loader::loadModels($this, ['Packages', 'Clients', 'ClientGroups']) Or you can override app/modelsservices.php with the attached services.php file
    services.php
  19. Haha
    Jono got a reaction from bryan in Payment portal not displaying and other issues   
    Pretty sure the problem with the coupon is that it is only set for the NAD currency
  20. Like
    Jono got a reaction from Michael in Payment portal not displaying and other issues   
    Pretty sure the problem with the coupon is that it is only set for the NAD currency
  21. Like
    Jono got a reaction from activa in Blesta TCAdmin problem   
    Would you mind updating components/modules/tcadmin/api/tcadminapi.php line 68 from:
    if ($host_name_output != false) { to
    if ($host_name_output != "<?xml version='1.0'?><document></document>") { The visit the page again and post the log.
    It looks like the module has an bug with logging errors properly, I've created a task on github to fix this.
  22. Like
    Jono got a reaction from Michael in Blesta TCAdmin problem   
    Would you mind updating components/modules/tcadmin/api/tcadminapi.php line 68 from:
    if ($host_name_output != false) { to
    if ($host_name_output != "<?xml version='1.0'?><document></document>") { The visit the page again and post the log.
    It looks like the module has an bug with logging errors properly, I've created a task on github to fix this.
  23. Like
    Jono got a reaction from zthermal in Blesta TCAdmin problem   
    Hi there,
    A couple quick questions.  What version of Blesta and the TCAdmin module are you using? Have you checked the module logs under Tools > Logs > Module to look for errors?  If there are any errors in those logs can you share them here?
  24. Like
    Jono got a reaction from Michael in Blesta unable to accept payments from European credit cards after September   
    Hi, just to chime in on this.  Obviously it is still a work in progress but our goal in this process is to create a stripe integration that will address any security concerns that people have with the current one.  Primarily this includes adding 3DS through Stripe and using Stripe.js to save payment details without them every touching the Blesta server.   Both can be accomplished through the use of Stripe Elements through Stripe.js.  When I mention adding the ability for a gateway to modify the credit card form, that means for stripe it could use those things.  The 3DS process is already a part of Stripe.js and stripe elements as long as we set things up correctly.  That is not specifically laid out in the task so I hope to be able to update it and say more specifically and in depth how it will be implemented.
  25. Like
    Jono reacted to stacklicense in Custom s3 Endpoints for Blesta System Backups   
    Hello
    The Stack License team is happy to announce our free modification to the Blesta System Backups allowing you to use custom s3 endpoints such as DigitalOcean Spaces and StackPath Object Storage
    You can view the modification at github.
    https://github.com/stacklicense/custom-backup-s3-endpoints
    If you want a custom s3 endpoint added just reply here or open an issue and we will get them added.
     
×
×
  • Create New...