Jump to content

5 Star Plugins

Members
  • Posts

    5
  • Joined

  • Last visited

  • Days Won

    1

5 Star Plugins last won the day on July 21 2022

5 Star Plugins had the most liked content!

5 Star Plugins's Achievements

  1. I wanted to share that we've released our "Help Scout for Blesta" plugin for anyone using Help Scout for support, and Blesta for billing. View Blesta Customers in Help Scout Empower your team with account knowledge to deliver superior service. This plugin helps customer-centric businesses provide fast, personalized service. Help Scout For Blesta by 5 Star Plugins connects customer data to your support mailbox. - Customer name - Services - Plan - Price - Customer since date Focus on customers, not systems. Blesta For Help Scout plugin puts customer data where you need it most, where support happens. Solve problems in less time without the headache of switching windows and logins to straddle two systems. No Coding Required Connect Help Scout and Blesta. After setting up the plugin your support team will gain instant visibility to customers in Help Scout. Trusted Technology, We Use It Too We use Help Scout For Blesta plugin for our hosting company. In fact we built it for ourselves! Now we are offering our solution other businesses that could benefit too. Quality coding developed in the United States with the highest level of security standards. View on the Blesta Marketplace Buy Now
  2. For anyone needing instant provisioning, I found this plugin, check it out: https://code-cats.com/blesta/instant/ Very helpful for digital download purchases, or other things that have no real processing needs, like SEO or Site Speed Audits, just take the money and send the order notification emails.
  3. I am using some Javascript to add the affiliate ID to every link on my main site, so it passes the affiliate ID when they click an order button that links to Blesta. I've tried creating a cookie named affiliate_code, but it seems to have issues across domains or with subdomains, so I'm not sure it's working well yet. I also added a fetch so that the visit counts towards the affiliate's visit count in their stats. Code I add in the header, if anyone wants to try and use it: <script> function getParameterByName(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, '\\$&'); var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, ' ')); } window.addEventListener('load', function() { var anchors = document.getElementsByTagName("a"); let affiliate_id = getParameterByName('a'); if (affiliate_id !== null ) { let blestadomain = '.yourdomain.com'; let daystoexpire = 60; const d = new Date(); d.setTime(d.getTime() + (daystoexpire*24*60*60*1000)); document.cookie = "affiliate_code=" + affiliate_id + "; expires=" + d.toUTCString() + "; ;domain=" + blestadomain + ";path=/"; console.log('Set cookie - affiliate ID: ' + affiliate_id + '; expires: ' + d.toUTCString() + '; domain: ' + blestadomain); for (var i = 0; i < anchors.length; i++) { anchors[i].href = anchors[i].href.indexOf('#') != -1 ? anchors[i].href : anchors[i].href += anchors[i].href.indexOf('?') != -1 ? "&a=" + affiliate_id : "?a=" + affiliate_id; } fetch('https://billing.yourdomain.com/order/forms/a/' + affiliate_id, { mode: "no-cors" }); } }); </script> EDIT: Changed window.load to window.addEventListener because window.load was unreliable on some sites for some reason.
  4. Please add this to the Blesta documentation here: https://docs.blesta.com/display/user/PayPal+Payments+Standard The PayPal API Username, API Password, and API Secret can be found in PayPal, go to Account Settings > API Access > VP/SOAP API integration (Classic). The direct URL is here: https://www.paypal.com/businessprofile/mytools/apiaccess/firstparty/signature Hope this helps others trying to find it as I was, since there are a ton of API options in PayPal now. I realize it's optional but very helpful when trying to manage PayPal payments and want tighter integration so that it handles refunds as needed, without a lot of manual work.
  5. Please add this page link to the Release Notes: 5.1.0 - Support - Confluence (blesta.com) I had to go on Discord to learn about this issue.
×
×
  • Create New...