My Stuff
Comments
-
Thanks for that, will give it a try when beta is live :) Things are looking up for NetSuite.
-
From what i can tell, you can only change the label there, not the actual code. I basically need to add something into the onClick section. I believe this could be done with Javascript but havent had a go yet. Something like document.getElementById('checkout').onclick = (Something i dont know what to put) :) I would need…
-
I know where your coming from, started back in September with NetSuite and there is no decent customization like other carts. Ive managed to make do and have done some workarounds using CSS. I have several enhancement requests and so do alot of other users on here. Some of them are in the pipeline which is good, but theres…
-
Not possible from what i have read in other threads. I wanted to do this, but had to make do with what the system provides. Sorry.
-
Bump, anyone have any luck with this?
-
I would be interested to know if php or similar scripting can be done as well. I dont like using javascript to do every little bit of dynamic content outside of the usable tags in NetSuite, some customers have javascript disabled on their browsers and ends up making our site look very messy and unusable.
-
Thanks for that, i had a quick look around at the currency selector wasnt in the body text. I took a different approach to this though. Instead of trying to remove it i disabled it under the web site settings. I then called it somewhere else on the page using <NLCURRENCYSELECTHTML> and it no works perfect. Thanks for your…
-
:) Yes i am using advanced site customisation. Would appreciate any help you could provide.
-
Hi Mat, thanks for that, am new to NetSuite. I've managed to change the text which is good. Do you know how i would go about removing the list from the sidebar but still have it appear somewhere else? Thanks.
-
I tried doing this but had to adjust the code slightly. I used the following http://www.yourdomain.com/app/site/backend/additemtocart.nl?c=YourAccountNumber&qtyadd=1&buyid=multi&multi=InternalId,Qty This works great, but if your using Matrix items you will come across a glitch whereby the item gets added to the shopping…
-
Hi Jim, as far as im aware you can only have the one. We use the multi-site feature and have 3 sites each with a different language. Each website has translated descriptions etc, however the one tag we cant change is the url which stays the same across all the sites.
-
I do not believe so Steph, have been using it for a few years and havent come across this info. I use GA for all our web reporting, at least you know its accurate.
-
Just to touch on images, how have you implemented yours and is there a major SEO benefit to doing so?
-
Thanks Tom, we havent really done any work on image SEO, mainly meta etc. We have a few thousand images on our site, if i know there would be a decent amount of traffic from them i would consider investing time changing them over. How have you named your images?
-
I totally forgot about GSiteCrawler. For those using Vista or Win7 you will need to run this as administrator (Right click program) otherwise the crawlers wont start. I must admit this program is far better than NS sitemap generator, the results are alot more accurate and easier to configure. Only problem is you cant…
-
Wouldnt that just put the icing on the cake :)
-
We had an issue with this last year where google was picking up on jSessions but after raising a case with NetSuite they got it fixed and it doesnt show up anymore in Google or other search engines. It should only show up when actually browsing the site.
-
Hi Oliver, its a custom item field with type Multiple Select. It pulls data from a Custom List. In this example, the list contains colours, then on the Multiple Select field it may have say 5 colours selected, Blue, Black, Green, Red, White. This would output as comma delimited. I want to be able to use a formula to…
-
Nice one Oliver, top points as usual ;)
-
Nice one Oliver, worked perfectly!!! :) nlapiAddDays() takes a date object as param, not a string. So you have to cast it back and forth. var due_date = nlapiAddDays(nlapiStringToDate(nlapiGetFieldValue('custentity_membership_paid_date')), 365); nlapiSetFieldValue('custentity_membership_due_date',…
-
When is it going to be available, wasnt it meant to be available in 2010.1, then moved to 2010.2. So now we are looking at 2011.1? Seriously, whats going on?
-
Thanks Oliver, this works perfect now. :)
-
Perfect :D Works great, but i think i found another problem. If you start a cash sale and put the customer name in the script runs, but if you go into the customer first and use the cash sale link within their account, the script does not run :(
-
Hi Oliver, thanks for that, here is the code i was using. Im new to all this and would appreciate the help :) function postSourcing(){ var internalPassword = document.custom6_form.custbody29.value; if(internalPassword != ''){alert("This customer has a password. Please confirm the password before placing the order. The…
-
Hi Tim, no, its now allowing a save at all, no matter whats on the order, discontinued item or not, the alert comes up with every item on the order in it.
-
Hi Tim, the script is running, but its adding all the items on the order even if they are not discontinued. I dont suppose you can see why? I also had to change "if (message)" to "if (items)". Thanks Chris
-
Ok, ill get a request put in for that. The last idea sounds good though, do you have any example code to maybe get this working? This way i could create an alert which contains all the items that are discontinued to show the sales rep which items to remove.
-
Also, i have just some quick amendments to the code which have made some improvement: function validateOnSave() { var items = ""; for ( var i = 1; i <= nlapiGetLineItemCount('item'); i++ ) { if(nlapiGetLineItemValue('item','custcol_discontinued',i) == 'T' && nlapiGetLineItemValue('item', 'quantityavailable',i) == '0'){…
-
Hi Tim, thanks for that, i went with the second option of adding it to a column. This does populate correctly but the script i wrote doesnt appear to stop the item being entered. I basicaly called the column and if it brings back T then to return false, but even after this the item is added. This is what i have so far…
-
Hi Tim, just tried it out and it works perfect now, thanks so much for your help on this :) Might be a good idea to put this through as an enhancement for all users.