My Stuff
Comments
-
Can you elaborate...where would you put the script and how would you code it? Thanks.
-
The Verisign logo can be displayed on any of the pages protected by an Versign certificate. In most cases, this means that you can display the image on any of the https://checkout.netsuite.com/... pages. As part of our PCI compliance efforts, NetSuite is audited and scanned regularly by a PCI-certified auditor (Trustwave).…
-
Is this part of the next release?
-
Yang - How would the URL work for a published form?I would like to pass an email from a small one field input to a page with a published form. Thanks. Kerrie
-
If you are using multiple currencies, make sure you have a default currency selected in setup>sitebuilder> setup website
-
Check the permissions of the customer center role - this is where you add/remove tasks.
-
I would think you could add <NLITEMLIST> twice in the list templates with different ids or classes and then style differently: <table border="0" cellpadding="0" cellspacing="0" class="itemlist1" > <tr> <NLITEMLIST> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" class="itemlist2" > <tr> <NLITEMLIST> </tr>…
-
Hard to believe in this day and age that the doctype is the offender - but I've seen this many times. My workaround is to try to style the account area without the doctype - if there is functionality that requires the doctype then you have to be creative, i.e create a separate version of certain templates just for the…
-
"And Is there anyway I can list items horizontally in the first list and Vertically in the second?" No (unless I supposed you wrote some sort of complicated script) - you can only choose one or the other in the layout. "And Another question please, can we display list of subcategories beside the list of items (i.e. 2…
-
and I should add....add the doctype as a custom tag and then substitute it as emtpy in the account area to remove it.
-
Can you post a url? Questions - where are you adding the CSS for the class .descript? Also, <%=getCurrentAttribute('sitecategory','description')%> may have some inline styling. CSS will not override styles applied directly to an element.
-
Do you have the site builder module? If so, you can do it with a different layout/template for that category.
-
Looks like you may have found your own workaround, but basically the home page left nav works differently than the other pages...you can choose whether you want a tab and its subcategories to show up in the left or right column of the home page (you set this on the tab...its called something like home page portlet…
-
I filed an enhancement request sometime ago that would allow us to display the individual items in the cart, not just the total items and total $....I'll see if I can dig the number up for votes.
-
You can't make these "on the fly"as far as I know, but you can drop in attributes for specific items, NetSuite tags for shopping cart funcxtionality, as well as custom tags that pull information from your web theme. If you want dynamic items, the use custom templates for your lists and item drilldown pages. You can add all…
-
Tony - would you be willing to share that method? TIA
-
Yes - use something like this for tab template: <td id="tab<NLTABID>"><a href="<NLTABLINKURL>"><NLTABLABEL></a></td> then use #tabx { display: none; } *replace x with the tabid #
-
Not a dumb question - usually what I do is create a tab or tabs to group the information - i.e. "Information" or "Customer Service". I turn off the tab from the navigation using CSS, this the attached categories are not in the navigation either.....does that make sense?
-
You'll find that you can do quite a bit of customization within the NetSuite framework. You can put your div structure within NetSuite's overall table and div structure. Some of the code you want to deleter may be what NS needs to work properly.
-
You can't pull apart <NLCOLUMNCONTENTS> for the left navigation....CSS and javascript methods are the way, or use a totally custom solution. You would lose the dynamic functionality however.
-
That was it!!!!! (sigh of relief!)
-
so if you use a javascript function, you loose the dynamic functionality? I am not a javascript expert, but there are probably some things you could do with it to affect the default left nav. What I meant to say is that hardcoding loses the dynamic functionality.
-
"NetSuite has changed the behavior of storedisplaythumbnailhtml to create the entire URL" Is this tag now inserting a complete link... <a href="url"><img src="image.jpg"></a> Before it inserted: <img src="image.jpg"> That could be why I'm having a different problem with a script!
-
Maybe write a script that determines if a custom item field is checked (i.e. "check to remove from search"), then use CSS to turn off the item cell in the list....or something like that.
-
You can't attach categories or items to hosted html pages as far as I know.
-
You need to make your CSS rules contextual for the elements you only want to affect....i.e....for this html: <!-- left sidebar template--> <td valign="top" id="left"> <table border="0" cellpadding="0" cellspacing="0"> <NLCOLUMNCONTENTS> </table> </td> <!-- end left sidebar template --> in your CSS add: #left…
-
That is generated by NS and you cannot edit that. If you are adding your presentation tabs to the left side, then you need to adjust how you create your active an inactive tab templates, also in the web theme. To change the color of the text, you can either add the markup to your html, or attach a stylesheet in the…
-
Add custom html/graphics to you web theme - left side navigation. You must have sitebuilder module. -Kerrie
-
Or, you could add rules to your CSS, i.e.: #div__header .pic {display: none;}
-
Add your background image to body in you CSS. You can also style outerwrapper and innerwrapper. As for the right hand column....add it as part of your content template.