rmccny Posted February 22, 2010 Share Posted February 22, 2010 Our newest add-on for WHMCS is MyProducts which replaces the standard WHMCS "My Products & Services" area with an enhanced, easy-to-navigate list of clients products and services organized by product group . It allows clients to sort their products list by any field and removes hyperlinks from non-hosting type items such as licenses and downloads. It also offers clients a convenient one-click access to the product sales description for each item they've purchased. MyProducts Key Features Organizes products together by product group. The products & services list can be sorted by any column. Options are grouped into a "command bar" and offer access to product details and product sales description. Ajax product sales description lookup from within the products & services list. Removes hyperlinks from non-hosting items such as software licenses and downloads. MyProducts retains the same, familiar layout that clients are used to. Full use of the original WHMCS color-coding for product status. Uses identically-named URI parameters for compatibility with other 3rd party WHMCS modifications. Login-redirection feature allows clients who are not logged and are shown a login box by WHMCS to be redirected back to their products and services list after successful authentication. Full source code; MyProducts only comes in a developer license! No annual maintanance or support renewals; support is including until WHMCS v5 is released! A complete list of all included features and a client-side product tour with screenshots can be found here. MyProducts can be seen in action at our site here. Pricing & Ordering: MyProducts Developer 1.0 (w/ full source) $15.99 This offering differs from our other products in that support and updates are included for the life of WHMCS v4 (until v5 is released); the purchase price is all you'll ever pay! 0 Quote Link to comment Share on other sites More sharing options...
hightekhosting Posted February 22, 2010 Share Posted February 22, 2010 Do you have any screenshots available of the client side view? 0 Quote Link to comment Share on other sites More sharing options...
BAJI26 Posted February 22, 2010 Share Posted February 22, 2010 Do you have any screenshots available of the client side view? SCREENSHOTS 0 Quote Link to comment Share on other sites More sharing options...
EasyWHMCS Posted February 27, 2010 Share Posted February 27, 2010 Does it show the Terminated/Suspended/Active services of a product randomly ? or is it sorted to show active services then suspended then terminated services? More info here: http://forum.whmcs.com/showthread.php?t=20428 0 Quote Link to comment Share on other sites More sharing options...
rmccny Posted March 1, 2010 Author Share Posted March 1, 2010 Liam, it does not do any sorting with respect to account status. The primary sorting is done by whatever field the client chooses but defaults to group. If you wanted to add a second sort condition it could be done very easily, without using the smarty plugin referenced in the link.. All you would need to do is add a second sort condition to the main database query, and since the code is provided it's possible. You would change the order clause from: ORDER BY $sort_by_sql $sort_order to ORDER BY $sort_by_sql,th.domainstatus $sort_order I may include that as a suggestion for the next release. 0 Quote Link to comment Share on other sites More sharing options...
PauGasol Posted March 6, 2010 Share Posted March 6, 2010 Can you implement the same in this module : http://forum.whmcs.com/showthread.php?t=27238 ? Or make now this, im not sure. Thanks. 0 Quote Link to comment Share on other sites More sharing options...
EasyWHMCS Posted March 11, 2010 Share Posted March 11, 2010 Can you implement the same in this module : http://forum.whmcs.com/showthread.php?t=27238 ? Or make now this, im not sure. Thanks. Would be good if that was implemented 0 Quote Link to comment Share on other sites More sharing options...
rmccny Posted March 12, 2010 Author Share Posted March 12, 2010 That's a great idea actually. Probably should go a little further and be able to filter by status, account type (shared, dedicated, etc),. I've noted this down and will add it to the list for the next release! 0 Quote Link to comment Share on other sites More sharing options...
Gazza Posted March 13, 2010 Share Posted March 13, 2010 May be someone can help me here who has brought this addon and mydomain addon brought both mydomain and myproduct and both have the same results. installed addons but when using secure connection/https i get "do you want to view only the web content that was delivered securely notice" click yes and i loose all my images and click no works but clicking product service description sends me back to client portal. if i make sure the whole site runs non secure, every thing runs ok. Any idea were to look to cure this problem. link update just a link needs updating by the looks of things. if you click on product details and it sends you to the product details page, click on My Products & Services link under client area, Portal Home > Client Area > My Products & Services > Product Details The link sends you to the old whmcs setup, This is on boardoo.com client account setup also. were do i find that link to update it to go to the new setup ?. thank you 0 Quote Link to comment Share on other sites More sharing options...
Gazza Posted March 13, 2010 Share Posted March 13, 2010 problems sorted, <base href in header boardoo.com support have come up with a solution for link update. Thanks guys 0 Quote Link to comment Share on other sites More sharing options...
Snowman Posted April 11, 2010 Share Posted April 11, 2010 (edited) great simple but effective mod... i had to make some code changes to the template file becuase for some reason it wasnt reading {$system_url} i also made some enhancements by adding a link to our bandwidth billing a link to add package addons and a cancel link to it heres the code if anyone find it handy: <tr class="clientareatable{$service.class}"> <td colspan="3" style="padding:5px 5px 5px 20px;border-bottom:1px solid #cccccc;"> <a href="clientarea.php?action=productdetails&id={$service.id}"><img src="templates/{$template}/images/viewdetails.gif" alt="{$LANG.clientareaviewdetails}" style="border:0px;" /> {$LANG.clientareaproductdetails} </a> <a href="#" class="getinf" id="getinf{$service.id}"><img src="templates/{$template}/images/products.gif" alt="{$LANG.clientareaviewdetails}" style="border:0px;" /> {$LANG.orderproduct} {$LANG.downloaddescription}</a> <a href="clientarea.php?action=productdetails&id={$service.id}#bandwidth"><img src="templates/{$template}/images/products.gif" alt="View Bandwidth Usage" style="border:0px;" /> View Bandwidth</a> <a href="cart.php?gid=addons&id={$service.id}"><img src="templates/{$template}/images/icons/order.gif" alt="Order Product Addons" style="border:0px;" /> Order Addons</a> </td> <td colspan="1" style="padding:5px 5px 5px 20px;border-bottom:1px solid #cccccc;" align="right"> <a href="clientarea.php?action=cancel&id={$service.id}"><img src="templates/{$template}/images/icons/delete.png" alt="Cancel Package" style="border:0px;" /> Cancel</a> </td> <div style="display:none;border:1px inset black;padding:10px;margin-top:8px;background-color:#eeeeee;width:97%" id="inf{$service.id}">Loading...</div> </td> </tr> {/foreach} {foreachelse} <tr> <td colspan="4">{$LANG.norecordsfound}</td> </tr> {/foreach} Edited April 11, 2010 by Snowman 0 Quote Link to comment Share on other sites More sharing options...
Stream101 Posted April 11, 2010 Share Posted April 11, 2010 {$system_url} doesnt work, but {$systemurl} does. Try that Worked for me! 0 Quote Link to comment Share on other sites More sharing options...
Snowman Posted April 11, 2010 Share Posted April 11, 2010 ahh that might explain that ... one issue i did notice is that the breadcrumb doesnt pick up the change to the myproducts.php file in all situations so sometimes clients are taken back to the default page 0 Quote Link to comment Share on other sites More sharing options...
EasyWHMCS Posted April 11, 2010 Share Posted April 11, 2010 Would it be possible to show a bit of text if the service is active? eg its not terminated ect, If so whats the code? Cheers 0 Quote Link to comment Share on other sites More sharing options...
sleepybaby Posted October 3, 2010 Share Posted October 3, 2010 your site is down. 0 Quote Link to comment Share on other sites More sharing options...
wsa Posted October 4, 2010 Share Posted October 4, 2010 It be down long time ago 0 Quote Link to comment Share on other sites More sharing options...
sleepybaby Posted October 6, 2010 Share Posted October 6, 2010 what a pity:( 0 Quote Link to comment Share on other sites More sharing options...
Snowman Posted October 6, 2010 Share Posted October 6, 2010 the site isnt actually down, its just not loading via https i found... but he has several errors and a message that the site is being moved to a new server 0 Quote Link to comment Share on other sites More sharing options...
HostT Posted December 15, 2010 Share Posted December 15, 2010 haha yeah guess i'm not going to purchase hosting through him 0 Quote Link to comment Share on other sites More sharing options...
Gatsu Posted February 8, 2011 Share Posted February 8, 2011 Can you easily upgrade / downgrade products from the mod area? 0 Quote Link to comment Share on other sites More sharing options...
allmyhoney Posted November 15, 2012 Share Posted November 15, 2012 Any screenshots of this as the link seems to break eariler? thanks in advance 0 Quote Link to comment Share on other sites More sharing options...
ipn Posted July 24, 2013 Share Posted July 24, 2013 Down and the contact page has errors... 1st thoughts on purchasing here.... 0 Quote Link to comment Share on other sites More sharing options...
yasweb Posted May 7, 2019 Share Posted May 7, 2019 To display 5 products ? ORDER BY date DESC LIMIT 0,5"; 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.