Jump to content

nextinspire

Retired Forum Member
  • Posts

    14
  • Joined

  • Last visited

Everything posted by nextinspire

  1. In fact, those mentioned files are not come from any frameworks. I wrote them actually. Meanwhile, theme.js is total different than whmcs.js (from whmcs default template originally). In theme.js, there is many functions are used for WordPress actually. I'm just wondering are you sure what you're selling and how it works. A friendly remind, you're not allowed to bundle the plugin 'Slider Revolution' or any other items from the marketplaces of envato if your themes are not selling on themeforest.net, even you've the extended license. You may have to feel free to read their licenses very carefully.
  2. Mike, is that means all those similar codes are just coincidence? http://cloudhost.cmsbased.net/wp-content/themes/cloudhost/library/js/theme.js VS http://demo.nextinspire.com/wordpress/isaac/wp-content/themes/isaac/library/js/theme.js -> Comparison Report : http://demo.nextinspire.com/compare/theme.js.html =============== http://cloudhost.cmsbased.net/wp-content/themes/cloudhost/library/css/core.css VS http://demo.nextinspire.com/wordpress/isaac/wp-content/themes/isaac/library/css/core-ui-responsive.css -> Comparison Report : http://demo.nextinspire.com/compare/core.css.html =============== http://cloudhost.cmsbased.net/wp-content/themes/cloudhost/theme.css VS http://demo.nextinspire.com/wordpress/isaac/wp-content/themes/isaac/theme-responsive.css -> Comparison Report : http://demo.nextinspire.com/compare/theme.css.html
  3. Mike, seriously? You're selling something stolen from my previous released theme 'Isaac' even don't rename the files and css class names? https://cmsbased.net/panel/responsio/
  4. Incorrect syntax. Should be like this: <li><a href=\"/clients/clientarea.php?action=details\" title=\"Welcome back!\">Welcome back".($row['firstname'])."</a></li> Ronnie
  5. You can quote the user information by the session id require("whmcs/dbconnect.php"); if ($_SESSION['uid']) { $query="SELECT * FROM tblclients WHERE id='" .$_SESSION['uid'] . "'"; $result = mysql_query($query) or die(mysql_error()); if($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $clientsdetails['firstname']=$row['firstname']; $clientsdetails['lastname']=$row['lastname']; $clientsdetails['email']=$row['email']; } echo ($row['firstname'].' '.$row['lastname'].' | '.$row['email']); } else { echo "Please Login"; } Ronnie
  6. This should be the simplest way to check session outside of whmcs. <?php require("whmcs/dbconnect.php"); // You may have to change the path here if ($_SESSION['uid']) { echo "whmcs user logged in"; } else { echo "whmcs user not yet login"; } ?> Ronnie
  7. Fortunately I'm still alive. I'm a Chinese from Hong Kong by the way. Ronnie
  8. That because the SSL is signed for egcsolutions.com, not http://www.egcsolutions.com.This is two different hostname!
  9. I would say the best way is backup your database before test.
  10. I found only one element is revised from the css file between version 4.02 and 4.11. .successbox {border: 1px solid #66CC00;font-weight: bold;background-color: #DDFFC6;text-align: center;padding: 10px;color: #009933;}
  11. You have to assign permissions to your administrator role for this new feature. Login to admin panel > Setup > Administrator Rules > check the item that named as 'Manage Clients Files'
×
×
  • 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