Jump to content

IHC

Retired Forum Member
  • Posts

    28
  • Joined

  • Last visited

About IHC

IHC's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Looks real brilliant http://www.jmfemedia.net/
  2. Cool idea bro! keep it online and work on it ... Looks already cool. I would suggest you to make the background of the client area same as index.ext
  3. Hello chickendippers, thanks for your help, but it not work ! I tryt 2 different options 1 to replace in the tos.php $breadcrumbnav=''.$_LANG['tosname'].''; replace with: $breadcrumbnav=''.$_LANG['linkstart'].$_LANG['tosname'].$_LANG['linkend'].''; option 2: after the string:>> $breadcrumbnav=''.$_LANG['tosname'].''; add: $breadcrumbnav=''.$_LANG['linkstart'].$_LANG['tosname'].$_LANG['linkend'].''; I added this strings also in the lang file. $_LANG["linkstart"] = "<a href="tos.php">"; $_LANG["linkend"] = "</a>"; my question is if i want make sitemap.php also linked is thare a problem with 2 same strings in the lang file? Like: $_LANG["linkstart"] = "<a href="tos.php">"; $_LANG["linkend"] = "</a>"; and $_LANG["linkstart"] = "<a href="sitemap.php">"; $_LANG["linkend"] = "</a>"; Greetings, IHC
  4. Hello, thanks for the info. but I already made it like this, tos.php: $pagetitle = $_LANG['tostitle']; $pageicon = "images/support/clientarea.gif"; $breadcrumbnav=''.$_LANG['tosname'].''; and in the lang file: $_LANG["tosname"] = "Terms of Service"; but now the next step is to make from the section "You are here: Terms of Service" a link to tos.php and not only a titel. Greetings, IHC
  5. Hello all, how it come that no image shows up? "Please enter the security code shown in the image - this is required to prevent automated submissions" Greetings, IHC
  6. Hello all, maybe the question is not right asked. I have a question about the links on "your are here". I made some custom sites like tos.php and I need to know how to make the "you are here" so that it is display "you are here" Terms of Service. I hope so much that some 1 can help me with this. Greetz, IHC
  7. Other Question if i made a custom site how to add in the lang file. For example TOS.php I need to know how that shows up You are here: Terms of Service Greetz, IHC
  8. Thanks, this script is made by genius Matt
  9. hello all, I like to know how to change the navigation bar. like put more links in it. Greetz, IHC
  10. To add your own pages to the WHMCS system which utilise the WHMCS templating system, you may use the following code. This code is designed to work with files placed in the root whmcs directory. <?php require("dbconnect.php"); require("includes/functions.php"); $pagetitle = $_LANG['clientareatitle']; $pageicon = "images/support/clientarea.gif"; $breadcrumbnav=''.$_LANG['globalsystemname'].''; require("init.php"); if ($_SESSION['loggedinstatus']=="true") { # User is Logged In - put any code you like here } # Define the template filename to be used without the .tpl extension $templatefile = "homepage"; /* To assign variables in Smarty use the following syntax. $smarty->assign('variablename', $value); This can then be used as {$variablename} in the template */ include("display.php"); ?> if i use this for the php file do I need to make a template file to like display.tpl ? Greetz, IHC
  11. Awesome so easy and so effective thanks for the fast help!
  12. Hello all, I like to make You are here: Support > Downloads to :>>> You are here: homepage > Downloads my question is in what file i need to eddit it ? Greetings, IHC
×
×
  • 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