Jump to content

JimW

Member
  • Posts

    20
  • Joined

  • Last visited

About JimW

JimW's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Don't put wp-load.php in a hook just add it at the very top of the hook file then add your hooks. if (!defined("WHMCS")) die("This file cannot be accessed directly"); define('WP_DEBUG', false); define('WP_USE_THEMES', false); require_once( $_SERVER['DOCUMENT_ROOT'] . '/wp-load.php' ); // then add hooks add_hook('ClientAreaHeaderOutput... If you just hook into get_header() and get_footer you are going to have a bunch of open and misplaced html tags. Also, Wordpress jquery conflicts with the WHMCS custom jQuery and must be removed or some of WHMCS functionality will break. I do these on a theme by theme basis and there's quite a bit more to it than you might expect but if done right it works good. Jim - - - Updated - - - Also, could I ask what theme you are using?
  2. I need descriptions for each product group. In products.tpl I thought this might work: {$LANG.group$gid} With these lang vars based on the group id: $_LANG['group1'], $_LANG['group2'], $_LANG['group2'] etc. Syntax wrong? However, this works: {$LANG.$gid} With these lang vars: $_LANG['1'], $_LANG['2'], $_LANG['1'] etc. Any any help would be greatly appreciated? I'm used to working with carts and having Category Descriptions, this is really lacking in WHMCS.
  3. Official word from WHMCS: "index.php can indeed be renamed."
  4. With Quantum storing the CC info, does the customer have to leave your site to pay? If so any templates/header footer? Thanks
  5. Or use .htaccess and don't rename index.php DirectoryIndex home.php.
  6. Haven't tested, I better ask Matt.
  7. Thanks for the info, Got v5 so I'll give it a try. Can't believe how ugly the 2checkout checkout is... wow. I hate for my customers to even see that mess. Makes my company look cheesy. And 5.5%... Might have to look into authorize.net CIM.
  8. I'm going to install in the root, rename index.php to something like clients.php and not use the WHMCS templating system at all except to make WHMCS look like my site, then I just mix in my site files making sure I don't have any pages the same name as any WHMCS files. No sub directories or subdomains and more control over the site's SEO.
  9. Will WHMCS do automatic recurring payments with 2Checkout? I don't want the customer to have to pay manually every month. Same question with Quantum Gateway (CDG)? I don't want to store CC info. Any comments or suggestions would be greatly appreciated. -J
  10. You are using the wrong doctype it should be: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> It's throwing IE into Quirks mode.
  11. Duh {include_php file="editor/editor.php"}
  12. Anyone know how I can add TinyMCE to the Product Description? Thanks
  13. This sounds like great work! I'm wondering something, and this was a problem with Kayako back with v3.11: If a user changes his email in WHMCS does it also change his email in his Kayako account? When I was using Kayako with loginshare it did not. This caused users that changed their emails to miss my ticket replies as my replies were going to their old email address.
×
×
  • 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