Jump to content

jrianto

Retired Forum Member
  • Posts

    76
  • Joined

  • Last visited

Everything posted by jrianto

  1. You need to edit your page template (.tpl file) and add this suspended services in it. Which exact page are you referring to that have this red box?
  2. I am getting excellent support from WHMCS so far. Just got an issue with a cron job the other day and their support answered it perfectly.
  3. The concept is to make your WHMCS URLS to be SEO friendly, so instead having knowledgebase.php?id=2983, your URL would be knowledgebase/how_to_backup_your_account/ which is MUCH better for SEO purposes. I have used it personally and it boost up our SEO for sure. Go for it.
  4. Yes you should use = or != sign and make sure the $pid is already used in that same template.
  5. You can do this by simply adding a text like: "Existing customers please log in and submit your support ticket from your client area for faster response" Because if they have not logged in yet, there is no way to determine if the visitor is your existing client or not. If they are already logged in, you can edit your ticket template and only show the pre-sales to those who are not logged in. Using a simple if statement would do this trick.
  6. Allowing access to only your own IP address to the administration area is also a good added security.
  7. Check this thread on WHT: http://www.webhostingtalk.com/showthread.php?t=1168297 Have fun reading
  8. This is a heavy customization part just for our backup service. I don't think I will be developing this as a WHMCS module. Just to show that it can be done. I did not write a separate website, it's all based on WHMCS. A lot of {php} tags on the smarty templates. Using sessions to identify what domain is actually calling up the WHMCS. Also combined with mod_rewrite. If you put your mind to accomplishing something, there is always a way
  9. It's just a default thing, the reseller is recommended to upload their own actual logo. I am working on full header and footer customization so that the backup panel can match exactly like the main site of the reseller.
  10. Hi tsiedsma, You have signed up to one of our services, free or paid. We have quite some out there including whmcsgold modules.
  11. Hello, I think it would help you better if you try to post in English?
  12. I asked Brent about it just to confirm since we were doing a project together that will be offered to HostGator's resellers. He said yes, so I postponed my project due to this. So yes, from me personally, it is confirmed and he is just waiting for the payment to go through to finalize the deal.
  13. HostGator - One of the world's biggest web host is being acquired by Endurance International Group (EIG). The deal will be completed in the next two weeks. Are you a HostGator reseller? If you are like me, you would be happy with HG's excellent services, but things can happen when ownership changes. Should you take precautionary measure, for safety? What are your thoughts? http://www.tophosts.com/blog/2012/06/hostgator_acquired_by_endurance_group-013024.html Share with us!
  14. This page will help you out: http://drupal.org/node/309494
  15. You can remove domain checker from the product page when you setup a product, choose This product does not require a domain name. That should do it. You can also customize many things by editing the template files.
  16. Yes it is possible for sure. Everything is possible Do you have any specific technical question that we can help you with?
  17. I think you should ask the module developer to give you a hand with integration? Did you see that their module files get uploaded into the Modules folder?
  18. Yes this is very doable. I recommend you to check out eztexting.com. You can easily integrate their services with WHMCS. I can already see it happening in my mind as I've worked with extexting api services. Go to oDesk or freelancer.com and ask for someone to integrate the two. I'd do it, but just don't have the time for now.
  19. Looks like you have figured it out. That's a nice shiny template, got me thinking to upgrade my own WHMCS now. I'd do that if it's not too heavily customized by now.
  20. Open up clientregister.tpl template file and change the fields where you want to remove to a hidden input field and give it a value. For example: <tr> <td class="fieldarea">{$LANG.clientareaaddress1}</td> <td><input type="text" name="address1" size="40" value="{$clientaddress1}" /></td> </tr> Change that to: <input type="hidden" name="address1" value="notavailable" /> Do that with all the other fields you want to remove and provide with a VALID value for WHMCS to get the data and registers it for the client's data.
  21. It's inside the lang folder. Open English.txt and change this: $_LANG["clientareaproductdetails"] = "Product Details"; To $_LANG["clientareaproductdetails"] = "Service Details";
  22. Interesting idea. You can utilize this using GA API and build your own, or simply use an existing service such as this one: http://www.embeddedanalytics.com/ It should be pretty straight forward to integrate if you're a php developer.
  23. Hi drmosko, On your Product Configuration, on the Module Settings tab for this product, did you choose Automatically setup the product as soon as the first payment is received? That needs to be chosen so that the product will be delivered only upon completed payments.
  24. So in particular, you want to edit your support ticket opened template and do this part: {if $ticket_department eq "Sales"}The sales department is open 9-5pm Monday-Friday so you will only receive a response between these times. We thank you for your patience.{/if} So when it's sales, the message will be sales related. When it is reseller, it will be a different message, etc. Pretty cool huh?
×
×
  • 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