My Stuff
Comments
-
It sounds great but when I use trunc(months_between(current_timestamp,{custitembirthdate})/12) I get an error: Invalid Expression
-
Is the search that you're using customized? What you describe is just like our default search, but I'd like to make it simpler and add a default filter to it.
-
Well, I started over and the second time around the buttons showed up. I'm not sure what I did wrong the first time, but at least it's working now. :)
-
FYI round(ABS ({today}-{custitem_birthdate})/365.25) worked for me.
-
I've run into an issue where some of the ages are wrong. Would the date format be an issue? We use mm/dd/yyyy. All fixed. If this is a person's age, we need to use floor instead of round. Round will round up the age. IE: if someone is 30 years and 7 months old, we would say that he is 30 years old. Round makes it 31 years…
-
I'm a little confused as to what the problem is. Is it the fact that some people can see the search and add themselves to it? If that's the case, you can share the alert with selected employees (under audience or roles). That should limit who sees (and can add themselves to) the search. jmcadams: There are two kinds of…
-
That is something we explored with support but this is what they came back with. "I tried checking the services called on both registration and shipping address pages to check if we could call the values declared on the former but unfortunately we were unable to pass on the values since it's calling 2 different service…
-
Too rich for our blood. :) We're using Suitecommerce with the reference checkout bundle. We're having great success making the old suitecommerce responsive but the checkout is proving tougher to manhandle.
-
Never mind. We have a few too many custom fields and I mistook the fullname field for the company name. Looks like that's the issue.
-
aplack, I sent you a pm.
-
We're using 2.02.0. Sorry, I didn't realize that the SiteBuilder reference bundles also had the code names.
-
It looks like that file already has provisions for hiding the company field built into it. <% if (show_company_field) { %> Where would show_company_field be in NetSuite. It doesn't seem to be the checkbox in Web Site Setup. I suppose I can comment out that section and see what happens. I'm just trying to understand what's…
-
According to NetSuite support this behavior is by design. It seems like rather poor design to me, to ask a customer to enter the same information twice. Am I alone in thinking that the First and Last Name fields should at least auto-fill the Full Name field and allow the customer to change it if necessary?
-
As I look more at the register_form_fiel d_macro.txt file I see that it just controls the first page. The Company field is appearing on the address form. Where does that get edited?
-
I was wrong. We're on 2.05. I forgot to switch to our sandbox account.
-
Oops. Duplicate post. :)
-
We got it all fixed. We just needed to add the <%=getCurrentAttribute('item','addtocartsubmitscri pt')%> and <form> tags.
-
Can you either post the code for your current drill down template or pm it to me?
-
mimib, Will the button change based on the item or based on the page that it's on? What I mean is, will you have a "specials" page that has all the items listed with "special" on the button or will the items be all over the site, mixed in with items that have regular buttons? Edit: PS: Do you have an example page you can…
-
It's only on the drill-down template? Doesn't it need to be on the item list cell template as well? I'm asking because I think changing the text on the drill down template is pretty easy. My button issues are more complex so I'm pretty sure we can make yours work. I'm re-doing my templates right now so I'll post the new…
-
You have another option as well. If you want to leave image resizing on for most of your templates and just want this template to be a specific size, use this tag: <img src='<%=getCurrentAttribute('category','storeDisplayImage')%>' border='0' width='250' height='150'> It removes the netsuite html and just inserts the image…
-
Go into Help and type in 'Web Site Tags'. Choose the first result in the search.
-
You can also just stick your blog into a Netsuite page using the iframe tag. I did that for our blogger site here: http://www.cfhi.ca/Media-Centre/Blog
-
Google is your friend :) http://www.w3schools.com/tags/tag_iframe.asp You use iframe to insert one web page into another. So ... you can put your blogger page into a Netsuite page.
-
That's a very interesting idea. I'm surprised no-one has done this yet. A Netsuite store that sells building blocks to build your own Netsuite store.
-
This is also something Netsuite could offer its customers. They could keep the current themes free and then have a library of other themes that are available for purchase. I wonder if that would actually pay for itself.
-
Is there any way I could get you to share how you integrated product reviews with your netsuite-hosted site? I've always wanted to add this functionality. It looks like they use iframes and this.
-
iframe takes a web page and sticks it inside another web page. So ... you can put your online form inside an area of a web page. There may be a slight performance hit using it. I use it to put a google map on a different page on our web site. Here's how my code looks: <iframe frameborder="0" src="put the external reference…
-
That'd work well I think. One question. We have a custom field called 'Newsletter' that is checked for all customers that should get the email newsletter. How can I check the field on submission instead of requiring the user to check the box?
-
Thanks. It seems like there are a number of ways to do this. I created a form like yours. How do I insert it into my site?