addeacher Posted January 11, 2007 Share Posted January 11, 2007 Is there a way to disable the image validate on the domain checker? Also just to here everyone else opinion, we have decide to integrate our site into whmcs which is made of all html. What we plan to do is use header to put all the stuff we have on our current site at the top and footer for everything at the bottom and homepage.tpl for t he middle. Is this a good idea? Also where can i find that grey background setting to change it to match with out current site? 0 Quote Link to comment Share on other sites More sharing options...
MACscr Posted January 11, 2007 Share Posted January 11, 2007 Im not trying to be rude, but please search before posting. http://www.whmcs.com/forums/viewtopic.php?t=756&highlight=captcha+domain Using homepage.tpl for your actual site homepage is bad idea. There is nothing wrong with using the smarty templating system for it. Thats how I am doing it, but your going about it the wrong way. As far as the background color, that can be changed in the file style.css. Thats basic web design knowledge. 0 Quote Link to comment Share on other sites More sharing options...
bedot Posted January 11, 2007 Share Posted January 11, 2007 homepage.tpl is the key support page and isnt recommended over writing/changing that one... The method of adding new pages into the website can be found in the knowledge base, basic html/php programing knowledge is required. 0 Quote Link to comment Share on other sites More sharing options...
addeacher Posted January 11, 2007 Author Share Posted January 11, 2007 Im not trying to be rude, but please search before posting. http://www.whmcs.com/forums/viewtopic.php?t=756&highlight=captcha+domain Using homepage.tpl for your actual site homepage is bad idea. There is nothing wrong with using the smarty templating system for it. Thats how I am doing it, but your going about it the wrong way. As far as the background color, that can be changed in the file style.css. Thats basic web design knowledge. Just so you know i do have basic html knowledge ofcourse i am not a designer and or programmer but up for the challenge so if when i ask a question u not going to answer or don't want to answer would be nice just not to say anything, its not like css is the only method of changing these settings i ask and simple all you had to say is its in the css file, anyways thanks for your respond its greatly appreciated and i dont mean to sound rude at all 0 Quote Link to comment Share on other sites More sharing options...
addeacher Posted January 12, 2007 Author Share Posted January 12, 2007 Ok so we decide to take a different approach to this as we are looking into having a different index file and do some includes etc to have it fit and look the way we want it, but i have a question or few. How can i acheive this look (see image link below) without a hassle have whmcs stay within #1 and 2 at all time on all pages, we are looking into include as we are just putting in thoughts and preparing for the site integration still haven't tried anything as yet. link to image http://img226.imageshack.us/my.php?image=whmcssamplegj9.gif Again i am not a designer or a programmer but know a little and up for the challenge. 0 Quote Link to comment Share on other sites More sharing options...
Adam Posted January 12, 2007 Share Posted January 12, 2007 Ok so we decide to take a different approach to this as we are looking into having a different index file and do some includes etc to have it fit and look the way we want it, but i have a question or few. How can i acheive this look (see image link below) without a hassle have whmcs stay within #1 and 2 at all time on all pages, we are looking into include as we are just putting in thoughts and preparing for the site integration still haven't tried anything as yet. link to image http://img226.imageshack.us/my.php?image=whmcssamplegj9.gif Again i am not a designer or a programmer but know a little and up for the challenge. Hey, Um, just add your content above and below the tables for WHMCS. I think thats your question. You might want to make sure you don't have the same style names that WHMCS uses or have different tags like body with a margin then have whmcs who doesn't use it. (just an example). You can always order the Integration Service from WHMCS http://www.whmcs.com/order.php From, Adam 0 Quote Link to comment Share on other sites More sharing options...
addeacher Posted January 12, 2007 Author Share Posted January 12, 2007 We don't mind spending the money but rather the challenge and to learn. I was actually reffering to keeping everything in between 1 and 2, think i have a few things i am going to try. Thanks for the input will update as to how its going 0 Quote Link to comment Share on other sites More sharing options...
bedot Posted January 12, 2007 Share Posted January 12, 2007 Addeacher, Okey.. heres what you do, in the template folder - edit the header.tpl and the footer.tpl.. this will create the basic look and feel of your site. These can be found in ../WHMCS/templates/default Then using the WHMCS Knowledge Base, add some additional pages into the WHMCS system.. creating corresponding .php and .tpl pages. http://support.whmcs.com/knowledgebase.php?action=displayarticle&catid=7&id=26 The index.php - is hardcoded you cant rename that page. I suggest you create a "home.php" then use a .htaccess redirect to force that as your default page. Maybe use the following features on your new home page: http://support.whmcs.com/knowledgebase.php?action=displayarticle&catid=7&id=10 http://support.whmcs.com/knowledgebase.php?action=displayarticle&catid=7&id=9 The background is controlled by the style.css file in ../WHMCS/templates/default The text on the site is controlled by english.txt in ../WHMCS/lang/ -- If all else fails, pay Matt 0 Quote Link to comment Share on other sites More sharing options...
addeacher Posted January 13, 2007 Author Share Posted January 13, 2007 Think i am getting there with the integration, however in my header.tpl at first i try iframes which works fine with just one problem, because i have the iframe in between two images everytime i move from page to page on the whmcs sytem the iframe gets reload and the image doesn't so the image stay then iframe space goes blank then back to iframe doesn't look good at all, i tried using image rollover in the tpl file but doesn't seem to work nothing shows up at all i get a blank page. Is it even ok to use rollover in .tpl and is there any other alternative i am simple trying to get a rollover effect on some buttons. Thanks in advance. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS CEO Matt Posted January 13, 2007 WHMCS CEO Share Posted January 13, 2007 You can't put any { symbols in the template file as these are the template tags eg. {$pagetitle}. With your rollover buttons, you'll be doing this in the javascript which is then causing an error. You'll need to put the JS code in an external JS file and then include it. Matt 0 Quote Link to comment Share on other sites More sharing options...
addeacher Posted January 13, 2007 Author Share Posted January 13, 2007 What would be the exact syntax to include the .js file, i tried a few but none work. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS CEO Matt Posted January 13, 2007 WHMCS CEO Share Posted January 13, 2007 Just the normal way of doing it should work: <script language="javascript" type="text/javascript" src="filename.js"></script> 0 Quote Link to comment Share on other sites More sharing options...
MACscr Posted January 13, 2007 Share Posted January 13, 2007 Just the normal way of doing it should work: <script language="javascript" type="text/javascript" src="filename.js"></script> your you can just wrap javascript wit {literal} and {/literal}. But it is still preferred to link to external js instead so that its cached. 0 Quote Link to comment Share on other sites More sharing options...
addeacher Posted January 14, 2007 Author Share Posted January 14, 2007 Thanks for the respond MACscr, much appreciated. i tried that before i post and that didn't work, probly its my .js file it self could you please post a sample of what the .js file would be like with atleast one rollover image effect. Thanks in advance 0 Quote Link to comment Share on other sites More sharing options...
MACscr Posted January 14, 2007 Share Posted January 14, 2007 Thanks for the respond MACscr, much appreciated. i tried that before i post and that didn't work, probly its my .js file it self could you please post a sample of what the .js file would be like with atleast one rollover image effect. Thanks in advance please start a new post as this has nothing to do with the original topic 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.