Jump to content

marieneige

Member
  • Posts

    11
  • Joined

  • Last visited

Everything posted by marieneige

  1. Yes, that is exactly what I do, I have a long list of changes I must re-do...
  2. Hi any time there is a update I have to re-make all the customizations. How can I insert or remove lines on my templates using a child or sub system as Opencart (xml) or Wordpress (child themes for css and php functions)? Thank you!
  3. is it still supposed to work? I tried both and nothing happens when I click check all, using whmcs 5.3
  4. did you find a solution? I would be interested too
  5. If my look in my databases I see 2 databases handle tld pricing
  6. Hi with 3000 domain tlds we have to find a way to import them to the database, manual domain entry would be very long. I have my tlds and prices for every year on a excel sheet that I can export as csv. I tough of importing them directly in the databe via mysql or myphp but I would like to know what links need to be done exactly? I am suprised such plugin or template or database request was released in the documentation. thank you! - - - Updated - - - I meant was NOT released
  7. awesome I looked at the code it looks perfect, I am looking to try this tonight, thank you so much. I passed the whole night yesterday trying to achieve it
  8. Hi I would like to have the domain price table for every year but I don't get to do it. I tried to modify the feeds php file but this is just how far I went. I don't see how to change the years and I would like to have it only for 1 tld at once. http://docs.whmcs.com/Data_Feeds <?php require("../init.php"); require("../includes/domainfunctions.php"); /* *** USAGE SAMPLES *** <style type="text/css"> table.domainpricing { width: 600px; background-color: #ccc; } table.domainpricing th { padding: 3px; background-color: #efefef; font-weight: bold; } table.domainpricing td { padding: 3px; background-color: #fff; text-align: center; } </style> <script language="javascript" src="feeds/domainpricing.php?currency=1"></script> */ $code = '<table cellspacing="1" cellpadding="0" class="domainpricing"><tr><th>TLD</th><th>For 1 year</th></tr>'; if (!is_numeric($currency)) { $currency = array(); } else { $currency = getCurrency('', $currency); } if (!$currency || !is_array($currency) || !isset($currency['id'])) { $currency = getCurrency(); } $whmcs = WHMCS_Application::getInstance(); $type = $whmcs->get_req_var('type'); $freeamt = formatCurrency(0); $tldslist = getTLDList(); foreach ($tldslist AS $tld) { $tldpricing = getTLDPriceList($tld, true); $firstoption = current($tldpricing); $year = key($tldpricing); $code .= sprintf( '<tr><td>%s</td><td>%s</td></tr>', htmlspecialchars($tld, ENT_QUOTES, 'UTF-8'), htmlspecialchars($firstoption["register"], ENT_QUOTES, 'UTF-8') ); } $code .= '</table>'; echo "document.write('".$code."');"; ?>
  9. Hi if the user serach for a domain name that is taken it won't suggest similar avalaible domain names. How can I get that? thank you
  10. Hi with that code, are the categories selectable, I mean if somebody click on Generic extensions, will it give the result for all extensions in the generic category ? thank you
×
×
  • 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