jpkelly
Member-
Posts
41 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by jpkelly
-
nat reflection? whuts dat?
-
Anyone know of or use services that provide support for StarDevelop LiveHelp? I am looking for a service that can provide technical support for WHMCS and Plesk users. Hopefully as a pay per incident service.
-
Dear WHMCS. What is the possibility of you creating a patching tool to automatically install patches and upgrades?
-
I applied the 5.2.13 patch to my 5.2.12 installation and now all my pages come up blank. HELP!
-
So I applied the patch and now all WHMCS pages are coming up blank. HELP!
-
I am running 5.2.12. I want to upgrade. This is a major pain because of the customization I have done and the 5.2.13 upgrade seems to modify 90% of the WHMCS files. Now I see there is a 5.2.14 patch as well. Should I wait for the dust to settle and do the 5.2.15 upgrade? 5.2.16? This is frustrating!
-
Didn't 5.2.13 just come out today?
-
I upgraded to 5.1.2 and now my admin area is really slow. The browser locks up completely when making changes to the home page layout. Initial login takes a very long time now.
-
eNom Reseller Balance Admin Page Addon for WHMCS 4.3+
jpkelly replied to bobbravo2's topic in Third Party Add-ons
Is there a way to have the Enom balance appear on the admin home page? -
eNom Reseller Balance Admin Page Addon for WHMCS 4.3+
jpkelly replied to bobbravo2's topic in Third Party Add-ons
Safari 5.1.2, OS X 10.6.8 -
eNom Reseller Balance Admin Page Addon for WHMCS 4.3+
jpkelly replied to bobbravo2's topic in Third Party Add-ons
I had to disable position: relative on line 22 of style.css to be able to use your form. -
eNom Reseller Balance Admin Page Addon for WHMCS 4.3+
jpkelly replied to bobbravo2's topic in Third Party Add-ons
I want to check this out but cant download it. The registration detail fields are grayed out/disabled and I really don't like the idea of having to give my credit card info for a free download. -
If I understand correctly when a user pays an invoice after the due date via PayPal he is not presented with a create subscription button but only a Pay Now button. If this is true what is the logic for preventing subscription creation after the due date? How can a user create a subscription after the due date?
-
The option to display the clients website is there in this version (as well as email address).
-
Here is the latest version with the fix for the database problem. client_reviews_1.1.zip
-
coming....
-
The database create code was not inserting the field I added for the show website option. To fix, drop the table "mod_comments" from your whmcs database. Open the file client_reviews.php file in modules/admin/client_reviews. search for: `emailvisible` tinyint(1) NOT NULL default '0', add after that line of code the following line: `websitevisible` tinyint(1) NOT NULL DEFAULT '0', So that section of code should look like this: if(isset($_GET['createdb'])) { mysql_query("CREATE TABLE IF NOT EXISTS `mod_comments` ( `id` int(10) NOT NULL auto_increment, `userid` int(10) NOT NULL, `comment` longtext NOT NULL, `approved` tinyint(1) NOT NULL default '0', `surnamevisible` tinyint(1) NOT NULL default '0', `emailvisible` tinyint(1) NOT NULL default '0', `websitevisible` tinyint(1) NOT NULL DEFAULT '0', `date` longtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM;"); header("Location: addonmodules.php?module=client_reviews"); exit(); } Go to your WHMCS Admin>Addons>Client Reviews and click the create database link. This should fix it. I will post an updated zip file with the fix.
-
Oh yeah, and it also includes a show website option.
-
Here is a modified version of the module. I have translated the variables and db table to English as best I can. The code included the pagination mod and the line break to <br> tag mod. Enjoy! client_reviews.zip
-
What is the logic for this behavior? Why cant users create a subscription after the due date? Is there a way to allow them to create a subscription after the due date?
-
some of your images are gigantic. you might want to optimize them to speed your page loading.
-
ajaxcart does not display properly in Chrome or Safari
jpkelly replied to michael_s's topic in Using WHMCS
I found that this function in main.js controls the properties of fixedFloatWrapper and changing absolute to inherit in two places fixed it for me. $(document).ready(function(){ recalcsummary(); (function ($) { $.fn.basketFloat = function () { $me = this; var position = this.position(); var yPos; $me.wrap('<div id="fixedFloatWrapper" style="position:inherit;left:' + position.left + 'px;" />'); $(window).scroll(function () { yPos = $(window).scrollTop(); if (yPos >= position.top) { $me.css('position', 'fixed').css('top', '5px'); } else { $me.removeAttr("style"); } }); $(window).resize(function () { $('#fixedFloatWrapper').css('position', 'static'); $me.removeAttr("style"); position = $me.position(); $('#fixedFloatWrapper').css({ 'position': 'inherit', 'left': position.left + 'px' }); if (yPos >= position.top) { $me.css('position', 'fixed').css('top', '0'); } else { $me.removeAttr("style"); } }); }; })(jQuery); jQuery('#cartsummary').basketFloat(); }); -
ajaxcart does not display properly in Chrome or Safari
jpkelly replied to michael_s's topic in Using WHMCS
Same here... Well actually it vanishes when it gets to the top. -
oops wrong forum!
-
Yes this solved the blank (no http) page issue. Thanks!
