jrianto
Retired Forum Member-
Posts
76 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by jrianto
-
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?
-
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.
-
SEO: Custom description and keywords per page
jrianto replied to msaunders's topic in Developer Corner
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. -
Yes you should use = or != sign and make sure the $pid is already used in that same template.
-
Redirect presales submitter to login if a registered client
jrianto replied to HostinPK's topic in Developer Corner
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. -
Allowing access to only your own IP address to the administration area is also a good added security.
-
HostGator Acquired - Precautionary Measure?
jrianto replied to jrianto's topic in General Discussion
Check this thread on WHT: http://www.webhostingtalk.com/showthread.php?t=1168297 Have fun reading -
Creating a Private Label Reseller with WHMCS
jrianto replied to jrianto's topic in Showcase Your Site
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 -
Creating a Private Label Reseller with WHMCS
jrianto replied to jrianto's topic in Showcase Your Site
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. -
Creating a Private Label Reseller with WHMCS
jrianto replied to jrianto's topic in Showcase Your Site
Hi tsiedsma, You have signed up to one of our services, free or paid. We have quite some out there including whmcsgold modules. -
Hello, I think it would help you better if you try to post in English?
-
HostGator Acquired - Precautionary Measure?
jrianto replied to jrianto's topic in General Discussion
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. -
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!
-
This page will help you out: http://drupal.org/node/309494
-
Remove Hosting Stuff + Some Customization HELP NEED
jrianto replied to abdullah2k's topic in Developer Corner
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. -
Yes it is possible for sure. Everything is possible Do you have any specific technical question that we can help you with?
-
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?
-
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.
-
How do you disable fields in the registration form?
jrianto replied to misstheresa2009's topic in Developer Corner
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. -
That would be footer.tpl
-
changing 'Product details' to 'Service details' on client area
jrianto replied to Kiroge's topic in Developer Corner
It's inside the lang folder. Open English.txt and change this: $_LANG["clientareaproductdetails"] = "Product Details"; To $_LANG["clientareaproductdetails"] = "Service Details"; -
Suggested Google Analytics Module (client Area)
jrianto replied to Strother's topic in Developer Corner
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. -
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.
-
Custom Email Templates for Support Departments?
jrianto replied to fws_hosting's topic in Developer Corner
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?
