Search results

  1. CE-Matt

    Completed Enable currency exchange rate even if it's a custom rate

    We are planning a proper currency exchange rate system for our 7.0 release.
  2. CE-Matt

    Completed Linode Addons

    Hi, This is something we will be looking to implement after the 6.3.0 release.
  3. CE-Matt

    Completed Upgrade Package in Action Button

    Hi, This is actually something that is in the works for 6.3.0
  4. CE-Matt

    Completed quick access to ticket department

    Hi, This can already be done, in one of two ways: 1) Send "messagetype" as a GET parameter and use the Ticket Type ID. 2) Send "tickettype" as a GET parameter and use the name of the ticket type. index.php?fuse=support&controller=ticket&view=submitticket&messagetype=1...
  5. CE-Matt

    Completed Plugin request gogetssl.com SSL provider

    A Plugin for GoGetSSL is currently being considered for our 6.3 release.
  6. CE-Matt

    Feature Requests

    In order to better gauge community interest and address each item clearly, can you please create a separate thread per each request.
  7. CE-Matt

    Read Before Posting

    Please only post 1 feature request per thread. This allows the thread to focus solely on the requested feature and allows us to gauge community interest in the feature, allowing us to prioritize the request. Please make sure you use the search feature to ensure that your request doesn't...
  8. CE-Matt

    Not A Bug Stripe problem, one-time payments, no CC modal

    This was addressed in a support ticket and was a configuration issue.
  9. CE-Matt

    Completed show product status in searches in Admin Portal

    This will be added in a future release.
  10. CE-Matt

    Planned Attach multiple files when Open Support ticket in Admin Portal

    The admin re-design will take this into account.
  11. CE-Matt

    Coupon Code in URL

    As long as you are using 6.2 you can send couponCode=code in the URL.
  12. CE-Matt

    DomainNameApi

    This was added in 6.2.0.
  13. CE-Matt

    2 feature in Notification Center

    I'm a little confused as to why you'd have a notification enabled if you didn't want it to complete any action? What would be the point?
  14. CE-Matt

    clientexec on a subdomain and website on the main domain but need to use classes

    We are always working on extending our API functions. If there is something you need that could be accessed from the API, please open a feature request about this. If you actually need to call CE code, you could setup a secondary instance of Clientexec and hook it into the same database.
  15. CE-Matt

    How to create a snapin

    The function name that is called for the view (snapinexample) will look for snapinexample.phtml.
  16. CE-Matt

    How to create a snapin

    Awesome! Not a problem :)
  17. CE-Matt

    How to create a snapin

    Ah, sorry! Snapin Example on snapinexample.phtml <br> <?php echo $this->output; ?> <br> function snapinexample() { $this->view->output = '<h3>Snapin Example from snapinexample PHP</h3>'; } That should work for you now.
  18. CE-Matt

    How to create a snapin

    Since you're calling snapinexample in the addMappingForTopMenu, that is the function and view name that'll be returned. Just add any PHP code to the snapinexample function, and any HTML to snapinexample.phtml and you should be good
  19. CE-Matt

    How to create a snapin

    You don't need to do any HTML in the function. Just have a view.phtml in the directory and it'll render that HTML. If you need to pass any variables, just set them in $this->view->varName in that function.
  20. CE-Matt

    How to create a snapin

    We don't really have any docs for this yet. You should be able to call: $this->addMappingForTopMenu('admin', 'clients', 'templateName', 'title', 'desc'); Then make sure you have a function called templateName() in your Snapin, as well as a templateName.phtml in the snapin directory, and...
Back
Top