Jump to content

Daniel B

Members
  • Posts

    682
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    Daniel B reacted to Michael in Invoice Services Separately   
    Suppose it's a good feature for resellers, so I would +1 this but I believe it would be best to do it via client groups and not a system setting, so you can enable it for certain groups (aka resellers).
  2. Like
    Daniel B got a reaction from Joseph H in Staff Group - Allow Only To Manage One Group Of Clients   
    this would be an excellent addition +1
  3. Like
    Daniel B reacted to Joseph H in Staff Group - Allow Only To Manage One Group Of Clients   
    We have some agents whom we would only want to have access to only specific group of Clients and be able to manage their Invoices, Upgrades and Downgrades. Unlike the way it is now that each staff can have access to every client account.
     
     

  4. Like
    Daniel B reacted to Paul in Create And Maintain An Official Git Repo   
    We may allow pull requests for certain extensions in the future. 1 step at a time 
  5. Like
    Daniel B got a reaction from capedave in Wordpress Integration Plugin   
    +1 for someone excited about it...since I use wordpress for every site that I make...saving me a bit of integration would be nice
  6. Like
    Daniel B got a reaction from tenaki in Multiple Order Forums On Client Portal   
    Updated to the version 3.2 Portal!
     
    I believe that Paul mentioned somewhere that they are currently working on a better method for allowing clients to place multiple orders (domain + hostng, etc) from one order page...but until then, I figured I would share my portal page edits with everyone.
     
    This rearranges things a little bit, and then adds a separate link for different order forms...to allow clients to pick which one they want directly from the portal page.
     
    (in this example, the Register link will be whatever you set as the default order form...so I would suggest creating a registration order form for this).
     
    You can of course add in as many order forms as you want, it should be fairly obvious how to do so if you read the code...however, if anyone has any trouble, I'm happy to help generate the needed code for your specific situation .
     
    End Result:
     

     
    In order to implement this:
     
    Go to Settings > Plugins > Manage Portal
     
    the replace the Index Page Content with the below:
    (you will need to edit the direct links to each of your order forums, the example below is for my site...you'll have different links)
     
        {% if plugins.order %}<div class="col-md-4 col-sm-6 portal-box">         <a href="{blesta_url}order/">             <div class="well">                 <i class="fa fa-cogs fa-4x"></i>                 <h4>Register</h4>                 <p>Don't have an account?  Create one now.  Or you can create one while ordering a package later.</p>             </div>         </a>     </div>{% endif %}     <div class="col-md-4 col-sm-6 portal-box">         <a href="{client_url}login/">             <div class="well">                 <i class="fa fa-cogs fa-4x"></i>                 <h4>My Account</h4>                 <p>Have an account with us? Log in here to manage your account.</p>             </div>         </a>     </div>     {% if plugins.support_manager %}<div class="col-md-4 col-sm-6 portal-box">         <a href="{client_url}plugin/support_manager/client_tickets/add/">             <div class="well">                 <i class="fa fa-ticket fa-4x"></i>                 <h4>Support</h4>                 <p>Looking for help? You can open a trouble ticket here.</p>             </div>         </a>     </div>{% endif %}     {% if plugins.download_manager %}<div class="col-md-4 col-sm-6 portal-box">         <a href="{client_url}plugin/download_manager/">             <div class="well">                 <i class="fa fa-download fa-4x"></i>                 <h4>Download</h4>                 <p>You may need to be logged in to access certain downloads here.</p>             </div>         </a>     </div>{% endif %}     {% if plugins.order %}<div class="col-md-4 col-sm-6 portal-box">         <a href="{blesta_url}order/main/packages/shared/?group_id=1">             <div class="well">                 <i class="fa fa-shopping-cart fa-4x"></i>                 <h4>Order Shared Hosting</h4>                 <p>Start your presence on the web, order a web hosting package today!</p>             </div>         </a>     </div>     <div class="col-md-4 col-sm-6 portal-box">         <a href="{blesta_url}order/main/packages/reseller/?group_id=2">             <div class="well">                 <i class="fa fa-shopping-cart fa-4x"></i>                 <h4>Order Reseller Hosting</h4>                 <p>Shared hosting not enough for you, need to host your own clients?  A Reseller plan will be perfect.</p>             </div>         </a>     </div>     <div class="col-md-4 col-sm-6 portal-box">         <a href="{blesta_url}order/config/preconfig/domains">             <div class="well">                 <i class="fa fa-shopping-cart fa-4x"></i>                 <h4>Order a Domain Name</h4>                 <p>It's always good to have your own place on the net...so get your domain before someone else does.</p>             </div>         </a>     </div>{% endif %}
  7. Like
    Daniel B got a reaction from gutterboy in Being Pci Compliant With Stripe   
    While they may not be federal laws (yet...though they already are in some states), PCI is required by all major credit cards networks (Visa, Master Card, Discover, American Express)...and if you are found in breach of them you can face hefty fines and expulsion from said credit networks.  Not complying with PCI Standards and being caught could easily mean that you'll never be able to accept credit cards or get approved for a merchant (or non-merchant) account again.  If you get blacklisted by the credit networks you are screwed as a business.
     
    It's not something that many sole proprietor's or small business think about, but PCI Compliance is a serious issue and should be viewed as such.
  8. Like
    Daniel B got a reaction from Michael in Unlimited Use Coupons   
    true, I wasn't thinking about unlimited for X amount of time.
     
    +won
  9. Like
    Daniel B reacted to Michael in Unlimited Use Coupons   
    It just means Unlimited uses for a certain time, we do that too Like Black Friday which is coming up soon. +1 maybe a check box.
  10. Like
    Daniel B got a reaction from Michael in Being Pci Compliant With Stripe   
    I was a bit confused by all the stuff happening in that thread as well, but the way I understood it was that in it's current state, the Stripe Module leaves the onus of PCI compliance on you, because it sends card information to the server to be tokenized before passing it along to stripe (since it doesn't use stripe.js).  There is a fix/workaround item in progress, looks like it's assigned to 3.5.  Core-1085
     
    Blesta does not store the credit card details, but it does send them to the server to be tokenized on the initial charge.  The fact that it has to send the card details to the server to tokenize them is the step that requires your server to be PCI Compliant, whereas if we could use stripe.js, you wouldn't have to worry about PCI compliance because stripe would be responsible for it since the card info would never touch the Blesta server.  So, once the above task is completed, using stripe.js will be possible.
  11. Like
    Daniel B got a reaction from Michael in Use E-Mail Address As Login Id By Default   
    What kind of update are you looking for?  As mentioned earlier in the thread, it's already been assigned as a future feature: Core-1387, looks like it's scheduled for version 3.5, but that could always change.
  12. Like
    Daniel B reacted to Jonathan in Auto-Merge Template Changes For Blesta Updates   
    A few other applications have a nifty ability to automatically merge template changes which are required for Blesta updates.  It would be awesome if Blesta had something similar.
     
    I use XenForo and their implentation of such a system is amazing and has always worked flawlessly for me through several major updates with lots of template changes even. https://xenforo.com/community/threads/template-merging-and-history.48846/
  13. Like
    Daniel B reacted to astroroxy in What Do You Use For Management?   
    I found the following
    http://www.sivann.gr/software/itdb/
    http://codecanyon.net/item/inventory-manager-v11/8240513
  14. Like
    Daniel B reacted to Paul in Removing Taxid On Registration Form   
    Just FYI, this field can be disabled in the next release, 3.4 per CORE-547 and CORE-1443
  15. Like
    Daniel B reacted to JDG in [3.3.x] Blesta Theme From Jass Design Group (In Progress)   
    I will be showing you a new theme I am working on, I hope this time I can finish it and deliver it to the community.
  16. Like
    Daniel B got a reaction from Blesta Addons in The License Is Not Valid For The Installed Location.   
    Did you purchase it through Blesta, or through a reseller?
     
    If Blesta, login to your account and re-issue the license.
     
    If a reseller, contact the reseller and tell them they need to re-issue your license.
  17. Like
    Daniel B got a reaction from Michael in The License Is Not Valid For The Installed Location.   
    Did you purchase it through Blesta, or through a reseller?
     
    If Blesta, login to your account and re-issue the license.
     
    If a reseller, contact the reseller and tell them they need to re-issue your license.
  18. Like
    Daniel B reacted to Blesta Addons in Locking Down Admin Area By Ip   
    This has been fully added to my next release of "Admin Tools" plugins , now you can set wich IP to access admin area , if not authorized redirect to 404 error page .
     
    also i have implemented a new security way , to block access direct link of uninstalled plugins , now if the plugin is not installed no one can access it , i'm working now in modules too , to forbidden access if not installed .
     
    need also block access to  client side by IP
     
    i will finish the complete rewrite of this plugin and making some tests  and i will make it available next week .
  19. Like
    Daniel B reacted to Jonathan in Forcibly Generate Service's Next Invoice   
    For one reason or another, we do get a lot of requests to go ahead and generate the next renewal invoice for a service early.  The ability to forcibly generate these from an admin standpoint would be excellent!
  20. Like
    Daniel B reacted to Paul in Hide Invoice Method Change Box If Only One Method Is Available   
    Almost everything is now being assigned to no fix version, so that we can add them to a specific release as we plan out sprints. Previously, all tasks were assigned the next release, and then shoveled to the subsequent release if not completed.. it's not the right way to do it, and it's too messy. So, we're getting more organized
  21. Like
    Daniel B reacted to Paul in Hide Invoice Method Change Box If Only One Method Is Available   
    Good idea, CORE-1467
  22. Like
    Daniel B reacted to Jonathan in Removing Certain Elements From Client Area   
    Glad to have ya on board
     
    Shh, don't tell that I'm hanging out here.  Can't let that cat out of the bag yet.
  23. Like
    Daniel B reacted to Darin in Removing Certain Elements From Client Area   
    In addition to hiding the "Change this" text, it should disable the link to attempt the change. It's kind of strange right now that a client can click the link, only to be taken to a page where he can't actually change anything.
  24. Like
    Daniel B reacted to Darin in Removing Certain Elements From Client Area   
    I don't mind having that invoice box tell the client what method is being used. However, I think Blesta should be smart enough to automatically hide the text about changing the invoice method, if there is only one choice or if we've disabled the client's ability to change the method.
  25. Like
    Daniel B reacted to Paul in Feature Request - Feedback System Nedded :)   
    I actually have useresponse.com written on our whiteboard here for possible consideration. Looks like they have a major new version in beta.
×
×
  • Create New...