Jump to content

kjavitz

Member
  • Posts

    10
  • Joined

  • Last visited

Everything posted by kjavitz

  1. yes I agree, I wasn't saying I am going to try and decrypt it that would be a bad idea. Thanks for all your input. I have contacted a few developers, and it seems the best they can do is add a separate search form. really it's too bad so much of WHMCS is encrypted, it's really only necessary to encrypt a few key and not often used files. That is what we used to do before we open sourced our rental system for Magento. if we do end up paying a developer I'll put it to github or something so other people can benefit.
  2. Hi, thanks I would love to have this added, but the supporttickets.php (and it seems 90% of the files) are ioncube encrypted. Maybe I'm wrong. Do you know where the query and code is that does support ticket searches so we can modify and add this feature? Or perhaps there is some way to get the unencrypted files for development, do the marketplace people get that?
  3. thank you - I did see that post before posting this thread. The solution there is not satisfactory for our needs. We need it integrated to the usual ticket search, not a separate form.
  4. I am actually very surprised given its wide use that WHMCS search tickets feature does not include a search replies feature, it only searches the original ticket message. We really really need this feature, and we need to have the ability to set "search replies" checkbox (which does not yet exist) by default. Is there something I'm missing, or is this feature missing? Please help add this feature ASAP.
  5. yes I do - but the goal is a support ticket custom field that clients don't have to fill in every time ("sticky") unless they want to change it. So they enter their server logins once, and it stays there unless they update it.
  6. Hi, I need a feature that has a "sticky" custom field across client tickets for their server logins. I realize it could be a customer custom field but I prefer a ticket level field so we can access it quicker and so I don't have to ask all our existing clients to go to their profile and enter their logins. Does anyone know of a module like this? I searched and couldn't find one.
  7. what about linking to a non-WHMCS page is this possible? I want to link to: /http://www.rental-e-commerce-software.com/rental-booking-system.php but my WHMCS page is here: /https://www.rental-e-commerce-software.com/billing/cart.php?gid=2
  8. Hi, I want to restrict our free trial signups to only 1 per ip address. Is there any API for this or suggestions you have on how to accomplish it?
  9. thanks, actually I figured it out after posting this. The issue was it needed to have print_r($vars, TRUE) to make it return the values like: $varsemail = print_r($vars, TRUE); then all the variables are in the email. Weird thing is though that the product id returned is wrong it should be the product id of 15 but instead it gives the service id so I can't do an if statement to check what product was ordered, it does not give the product id for product, rather the order id, so I'll have ot custom code that I guess. Array ( [OrderID] => 876 [OrderNumber] => 5525116701 [serviceIDs] => Array ( [0] => 987 ) [DomainIDs] => Array ( ) [AddonIDs] => Array ( ) [RenewalIDs] => Array ( ) [PaymentMethod] => paypal [invoiceID] => 0 [TotalDue] => 0.00 [Products] => Array ( [0] => 987 ) [Domains] => Array ( ) [Addons] => Array ( ) [Renewals] => Array ( ) )
  10. Hi, having a hardtime getting a list of all available vars from the hook for order creation http://docs.whmcs.com/Hooks:Order_Process. Here is the code, I've tried different methods and always same result all I get is "1" which is not helpful for the email debug. Does anyone have any debug code that works and shows the variables? HELP function create_free_trial($vars) { $to = "kjavitz@gmail.com"; $subject = "Hello, i'm the hook!"; $varsemail = print_r($vars); $message = $varsemail; $from = "kjavitz@gmail.com"; $headers = "From:" . $from; mail($to,$subject,$message,$headers); } add_hook("AfterShoppingCartCheckout",1,"create_free_trial");
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated