My Stuff
Comments
-
This tag has worked for me: <%=getCurrentAttribute('item','relateditemsdescription')%> Maybe add your default to the end if it is empty: <%=getCurrentAttribute('item','relateditemsdescription',' ')%>
-
As Mat said, figure out where the image is, then add the html after...this will give you the dynamic url: <a href="<%=getCurrentAttribute('item','storeurl')%>">More Info...</a> -Kerrie
-
Vicki - what tags are you using for the price in each instance? -Kerrie
-
Hi Vicki - Since you're not using templates in the item list NetSuite is using the default price.....I believe "online price" will override "base price" and display. What are you using in the item drilldown template? Do you have the know-how to create a template for your item lists? Then you can display exactly the price…
-
There is a setting in your layout for the order of items....make sure you choose "sequence" rather than alphabetical.
-
There are a few older threads that get into this extensively.... https://usergroup.netsuite.com/users/showthread.php?t=11738 https://usergroup.netsuite.com/users/showthread.php?t=272 I'm sure there are more if you search.
-
If you have sitebuilder you can build your own custom template and CSS, and if your images are all the same size, you can scale them down proportionately with height and width attributes in the image tag: <img src="<%=getCurrentAttribute('item','storeDisplayImageHtml')%>" alt="image description" width="x" height="y">
-
You will be able to show prices only when logged in in v2008 without special scripting. As for registration, change your shopping registration settings in setup>website>setup website to "existing customers only" or I believe it is "disabled" in v2008. Then create a custom form/application for resellers to fill out, getting…
-
For multiple sites, it would be nice if we could limit login by role or group....or perhaps there could be options added to the customer record to select which sites the customer has access to. -Kerrie
-
Well, it really depends on the site and what permissions are set in the customer center role....you sometimes can get away with setting body margins, or you can set rules for these: #body_actions, #main_form, .scrollarea, table#div_bodytab, table#container If you give me a URL I'll take a look....
-
To be able to edit the themes and add CSS to the "My Account" pages you need to have the site builder module. If you don't see setup>website>themes then you either do not have this module or it is not enabled in your account... setup>company>enable features web presence tab, check "advanced site customization" If you find…
-
As Evan said, change the customer center role permissions. <NLCOLUMNCONTENTS> is generated from settings you have in lots of places....setup website, your theme, and role permissions.
-
You can also change the setting in your layout from "alphabetical" to "sequence". -Kerrie
-
Can anyone comment of the status of this? Does NetSuite support the certificate install? -Kerrie
-
You should be able to customize the different pieces of text in setup>website>customize text With alittle trial and error you can figure our which text maps into that tag. HTH Kerrie
-
For #3: You could use tag substutution and get attribute tags to add the desired information from the customer record - depending on where you want to add this info, you create a custom tag that has the default html. Then in the account tab record, substitute it with the html you want for the account page. Keep in mind…
-
The delay has improved.....it used to be a day, now it is a few hours. -Kerrie
-
If you have sitebuilder, there are setting in the web theme for the left nav - "show all tabs", "show current tab", "show categories", "show items", etc.
-
I have found one issue that I believe is a problem.....tag substitution is not working on the cart page of the second site. Has anyone else found this? It works properly on presentation tabs. I am testing the account tabs next. -Kerrie
-
Try putting your html pages in the Live Hosting Files folder....you must have site builder to access this folder.
-
Wow - you are right! I never noticed, or maybe I did(?) So, the functionality exists, they just need to expose it to us. I think I'll put in an enhancement request. Thanks.
-
OK, I see "Wiz" asked the same thing a couple of threads earlier (didn't come up in my search, sorry for the duplicate) If we can't have the detailed list of items, could someone share code/script that might have a list of some sort displayed on the page of what was added to the cart? I'm trying to build a page with a…
-
Setup>website>customize text You can edit your emails there if you have the sitebuilder module.
-
Enhancement 58927 - Web Store > Advanced Site Customization > Site/Item Templates > Provide a getCurrentAttribute and getAttribute tag for the quantity of an item currently in the cart Ad your name to the list!
-
Thanks - that is a possible solution. Here's another angle....is there a tag or code that could be put in the template that says something like "You have x number of this product in your cart"?
-
Use this tag for breadcrumbs: <NLCRUMBTRAIL> You can only use it in the logo and tabs template.
-
Because you don't have site builder, you can't add it to a template. I think you can still use the code in a description, however. You could test this in a description field: <p>Quantity Available: <%=getCurrentAttribute('item','quantityavailable')%></p> -Kerrie
-
I'm sure you are right. I wasn't sure about that. Was worth a try!
-
Hmmm...last shot, maybe a declare tag....see this thread: https://usergroup.netsuite.com/users/showthread.php?t=6563&highlight=declare
-
Did you try adding the code <%=getCurrentAttribute('item','quantityavailable')%>