Jump to content

Inetbiz

Retired Forum Member
  • Posts

    277
  • Joined

  • Last visited

Everything posted by Inetbiz

  1. So no press release. Do you have direct mail contact? I filled out their contact form asking if they would release it to github since they are now abandoning it.
  2. I have posted the code to https://github.com/StrikeHawk-ecommerce/whmcs-facebook-pixel-tracking - whmcs facebook tracking pixel and hoping members of the community will help expand this to cover the 9 different tracking options found at https://www.facebook.com/business/help/952192354843755
  3. So, I have been working on a responsive email theme. Feel free to use it at https://github.com/StrikeHawk-ecommerce/whmcs-responsive-email-templates I would really appreciate pull request to make it even better! The next stage is to add schema markup to orders and invoices. I"ve already added schema to tickets. We are already seeing special buttons in gmail to view ticket. You just have get whitelisted, first. Support my feature request to break up invoice tags into currency and raw number which is necessary in schema markup. https://requests.whmcs.com/responses/invoice-raw-number-and-add-currency-symbol-tag-suffix-or-prefix
  4. ok it's the flag field linked to tbladmins => id - - - Updated - - - 0=none, then auto_increment ID with first admin ID
  5. Didn't exactly want the last admin replier. Just the assigned admin to ticket. I think that's in tbletickets?
  6. 1. Support Ticket Reply. Merge Field to express WHO is the assigned admin on ticket 2. Support Ticket Opened by Admin - Merge Field to express WHO is the assigned admin on ticket 3. Support Ticket Feedback Request - Same 4. Support Ticket Auto Close - Same So that our email templates can have Assigned Staff Member: {$admin}
  7. Can anyone help improve this so it works? if (!defined("WHMCS")) die("This file cannot be accessed directly"); function add_admin_name_email($merge_fields) { $table = "tbltickets"; $fields = "id,admin"; $where = array("id"=>$userid); $result = select_query($table,$fields,$where); $data = mysql_fetch_array($result); $id = $data['id']; $name = $data['admin']; $messagename = 'Support Ticket Reply'; $relid = '9'; $merge_fields = array(); $merge_fields['admin_name'] = $name; return $merge_fields; } add_hook("EmailPreSend",$relid,"add_admin_name_email");
  8. Thank you, John. My sales query still had gone unanswered. They are not responding to twitter, either. I would not even give them money in fear that I'd never receive the software product. I don't know how they are listed with your company in the plugins section or other areas.
  9. When is this module going to be updated to match whmcs API changes?
  10. John, whmsonic hasn't been active on social media since 2013. My sales enquiry has gone unanswered for 90 days. When are you going to remove them and their solution? I would be leary to give a company in Hong Kong any money that hasn't been active, anywhere, in two years.
  11. Product or service emails... I'm wondering what would be the best way to garner a request for the user to +1 subscribe to the G+ business page?
  12. I've checked the demo site. The email templates don't use the stock CSS classes and ID's already defined. It would be nice if they updated all their stock HTML emails to use divs with those IDs and classes layout?
  13. Can you just attach your code or use bbcode. The ticket is no longer available.
  14. I want more teeth in the client report. I'd like to add domain, server. I tried doing this: http://pastebin.com/BvNbZKon or about line 72. No results when I add that line from stock. Can someone help with that and ideas to query and report the hosted server name?
  15. Can anyone possibly post an update to this module now that whmcs 5.2.3 has a subscribe/unsubscribe sql field?
  16. Yes, just click the square icon and edit the time entry. You can type it in or use the slider. Save and the time entry is adjusted.
  17. Before you make your decision to purchase the ownership of the livehelp add-on module, ask yourself if you want to be forced to advertise links backs to livehelp.stardevelop.com I'm going round about right now with sales@stardevelop.com where they want me to pay extra. I've already paid to own the add-on and stop paying to lease it. I CAN understand not removing it from leased licenses.
  18. <?php function init_ClientAreaPage($vars) { global $smarty; $sql_product_rating = mysql_query("SELECT * FROM mod_products_reviews WHERE active= 1 AND productid = ".$vars['product']['id']); while ($productrating = mysql_fetch_array($sql_product_rating)) { $votes = 0; $rating = 0; $votes ++; $rating = $rating + $productrating["reviewrating"]; } $avgrating = $rating / $votes; $smarty->assign('revavg', $avgrating); $smarty->assign('revrate', $rating); $smarty->assign('votes', $votes); } add_hook("ClientAreaPage",1,"init_ClientAreaPage",""); ?> but now vote value is 1 and not the sum total or rows which is 6 for that product id.
  19. Data Sample: INSERT INTO `mod_products_reviews` (`id`, `productid`, `userid`, `username`, `reviewtitle`, `reviewtext`, `reviewrating`, `reviewdate`, `active`, `adminreply`) VALUES (1, 8, 106, 'John Doe', 'blah blah blah title', 'blah blah reviewtext', 5, 1313276172, 1, '');
  20. <?php function init_ClientAreaPage($vars) { global $smarty; $sql_product_rating = mysql_query("SELECT * FROM mod_products_reviews WHERE active= 1 AND productid=".$vars['productid']); $votes = 0; $rating = 0; while ($productrating = mysql_fetch_array($sql_product_rating)) { $votes ++; $rating = $rating + $productrating["reviewrating"]; $avgrating = $rating / $votes; } $smarty->assign('revavg', $avgrating); $smarty->assign('revrate', $rating); add_hook("ClientAreaPage",1,"init_ClientAreaPage","");} ?>
  21. Couple of questions: 1. Is there on on-going requirement to pay you every 12 months for the module and if we do not, does it stop working? 2. How much for the source + module? 3. What specification is the feed produced in? 4. Did you employ object oriented programming? 5. Which version of PHP/MySQL was the code written to work with?
  22. webcart40 stock template did not post the ecommerce data and your GA script according to my devs is not optimized entirely. See https://developers.google.com/analytics/devguides/collection/gajs/ under splitting the snippet. This may speed up page load times.
  23. I've already created a ticket. But, I did want others to know what I found about the google analytics module. First, it's not an async call to GA. Second, cart.php?a=complete does not post ecommerce data. I checked the source after completing a test checkout. GA data is essential in business decisions. I'm praying Matt's team will show it some love and get this corrected soon? Ticket ID 388763
×
×
  • 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