My Stuff
Comments
-
Which web platform is this, Sitebuilder or Suitecommerce Advanced? You may need to investigate further to confirm how your system is sending emails, as it could be using standard functionality, from a saved search, or via a user event script.
-
Thanks Andrea. I've joined a company running Netsuite in the last 18 months, having come from a background in PHP, MySQL, Magento, etc. I'm constantly coming up against issues which could easily be solved in seconds with PHP, but which are a nightmare with Sitebuilder and Suitescript. The current issue I'm trying to…
-
If you hit any insurmountable issues with the standard WSDK code, try looking at the Commerce API. It's reasonable simple to create a custom SSP and to pass shopping cart data back and forth cross-domain using jquery. If you need any pointers with this, just let me know.
-
If you're running on an external server with PHP 5.3 or later support, you can use the Netsuite PHP Toolkit to do this. If you search Suite Answers for toolkit, the first result has a load of useful info and a download link. In my experience though, it's slow and not especially user friendly to work with. It's much slicker…
-
Thanks for that Dew. Out of interest, is there a delimiter that can be used before the underscore, to make Netsuite treat it as text? I thought it might be something like this, so had previously tried searching for "\_", but still got the same result.
-
Not 100% sure this is what you're asking, but we just use the following in the header of product templates: <meta property="og:image" content="<%=getCurrentAttribute('item','storedisplayimage')%>" />
-
INSTR({urlcomponent}, '_') IS NOT 0 or INSTR({itemurl}, '_') IS NOT 0 both work as Mark suggests, depending on whether you're just concerned with the final URL element, or the full URL including any directory URLs. I was curious and messed around trying to get the named field search to work. Like you, I just seem to get…
-
I think so, yes. Searching by item internal ID I can pass in an array of 200 "anyof" IDs in the console and it works fine - and fast. The only way I could get a search by item code to work is using [["name","is","12345"],"OR",["name","is","12346"],etc]. This seems far slower than the item ID search, so I'm going to see if…
-
Thanks Kirk. The code sample was actually copied from Suiteanswers just to make the scenario clearer!
-
Yes, .ss files have a primary service(request,response){} function called by default.
-
We had it arise when our EU2 account was updated to 2018.2 on that date. You should however still be able to view individual logs in the script or deployment record execution logs.
-
Have you tried replacing with <br/>?
-
All sorted now. In the end, I had to pull the category list, loop through the results, discard the records which didn't match my criteria, then use nlapiLoadRecord to get the missing website field. Just annoying that I've had to do things that way, as it increases script execution time tenfold.
-
Thanks Bob. Do you know if it's possible to filter the results with the website value? Or am I going to have to search category internalIds separately to get the site name/ID they belong to?
-
If you wrap the lines in 3 x fixed width DIVs around 350px wide with the alignment property float:left, they should display horizontally in the centre screen area, or vertically when on a sidebar.
-
It looks like Netsuite is redirecting from the forms domain to your own domain, causing a CORS issue. The only sensible solution with CORS issues is to use ajax jsonp (https://learn.jquery.com/ajax/working-with-jsonp/). If you're using jquery, you can just add dataType: "jsonp" to the ajax request. You'll probably then…
-
Remove the form submit button. Replace with a button which triggers a jquery function which picks up the data from the form fields, posts it to the Netsuite form handler using ajax, then updates the page as desired.
-
Hi Paul, Are you referring to the setting in Setup > Company > General Preferences? If so, ours is blank, which seems to work fine for us, displaying numbers unformatted, ie. 01234567890
-
No problem. Feel free to tag me or send me a pm if you need to know anything else. We've been on Netsuite since around 2013, so have plenty of experience with UK related issues!
-
To hide the email button, add this in Setup > Sitebuilder > Theme > Addition to Head (assuming Sitebuilder, rather than SCA). <script> var pathname = window.location.pathname; if (pathname == '/app/accounting/transactions/salesord.nl'){ $('#email').toggle(); } </script>
-
Unticking email signup boxes on a Sitebuilder site can be achieved easily using jquery. If you struggle for any reason, feel free to send me a pm anytime. I'd recommend looking into the matter thoroughly before ditching your existing marketing lists. There's a lot of scaremongering and misinformation being spread by…
-
Does it capture the campaign code if you use ?ccode=ABC123&leadsource=XXX? We use this method, but our system has some fairly extensive offer related customisation, so I'm not sure whether it'll work on a standard system.
-
One of our users has managed to do the same thing here. I've not managed to reach any conclusion, other than switching themes fixes the issue.
-
I'm assuming from your profile that you're http://www.aecageco.com/ ? If so, your product page template is loading full size images scaled inline down to thumbnails, ie. your product SZ18 is displaying a 1458x1458 pixel image at 200x200 pixels. You need to edit your item drilldown template so that is displays a thumbnail…
-
As I understand it, Suitepromotions doesn't work with Sitebuilder out of the box. If it gives you what you want, you could probably get it to work with the assistance of a decent developer. I suspect it should be reasonably easy to get Reference Checkout to work with it. If not, you could either replace the Sitebuilder…
-
Does anyone know for certain whether Suitepromotions works with kits?
-
Unfortunately, I don't know of anyone offering anything commercially, but it can be done. I did it on one of our sites, which has a bespoke one-page checkout and my account area. I had intended to integrate Suitepromotions at the same time but we were unable to do so, as there was a bug with UK VAT calculation - so we…
-
Exporting data from presentation categories (ie. Sitebuilder) is a long ongoing issue, which I suspect will never get addressed now all the developmental focus is on SCA. URL component should be available in a standard presentation category search though. I've been through this battle in the past and found it extremely…
-
I think your assumption is probably correct, ie. customer creation events respond immediately to the customer without waiting for the event script to complete - but I'd definitely be testing in sandbox!
-
V68 is out there now. I'm not sure how much notice people will take of the warnings - it's a bit of a case of crying wolf. It even warns on our local intranet. The simplest option is adding HTTPs using Cloudflare.It's relatively simple for an experienced developer to implement. If it's not something you're happy tackling…