Search found 241 matches

by nadeem
Thu Aug 04, 2016 9:56 pm
Forum: AbleCommerce GOLD
Topic: Increase size of display box in feature product grid??
Replies: 3
Views: 6568

Re: Increase size of display box in feature product grid??

You can increase the height of the item container. To overwrite the height of the container, add the following style to your theme's custom.css file:

Code: Select all

.itemContainer {
    height: 320px !important; /* update the height value to the best fit */
}
by nadeem
Thu Aug 04, 2016 6:13 am
Forum: AbleCommerce GOLD
Topic: Product POage Tabs
Replies: 2
Views: 3219

Re: Product POage Tabs

By the way, second part is optional. If you are using review panel somewhere else like under product description, then you have to do only first part update, that is; to hide the reviewsTab.
by nadeem
Thu Aug 04, 2016 5:35 am
Forum: AbleCommerce GOLD
Topic: Product POage Tabs
Replies: 2
Views: 3219

Re: Product POage Tabs

You can simply hide the "Reviews" tab form product page. To do so open ConLib/ProductPage.ascx Locate <li id="reviewsTab" runat="server" clientidmode="Static"><a href="#reviewsPane" class="tab">Reviews</a></li> and replace with <li id="reviewsTab" runat="server" clientidmode="Static"><a href="#revie...
by nadeem
Mon Aug 01, 2016 2:27 am
Forum: AbleCommerce GOLD
Topic: Canonical rel ="next"?
Replies: 9
Views: 10615

Re: Canonical rel ="next"?

To remove the canonical link from category pages, open Website/App_Code/PageHelper.cs Locate the following code string canonicalFormat = "<link rel=\"canonical\" href=\"{0}\" />"; string objectUrl = storeUri.Scheme + "://" + storeUri.Authority + page.ResolveUrl(catalogObject.NavigateUrl); objectUrl ...
by nadeem
Tue Jul 19, 2016 2:48 am
Forum: AbleCommerce GOLD
Topic: CSS Help for Bootstrap
Replies: 4
Views: 6337

Re: CSS Help for Bootstrap

To change the top link color, add the following style to your theme's custom.css file: #storeHeader .shortcuts a, #headerNavigation .navigation a { color:#0026ff; } If you want to apply color separately on top and bottom links use the following styles individually: #storeHeader .shortcuts a { color:...
by nadeem
Wed Jun 01, 2016 1:38 am
Forum: AbleCommerce GOLD
Topic: best place to put javascript in conlib controls
Replies: 1
Views: 2820

Re: best place to put javascript in conlib controls

JavaScript code can be placed in markup if it isn't using dynamic code. Also it helps to make changes effective without compiling the code. For example, in case of WAP, you have to recompile your website every time you make a change to javascript using code behind.
by nadeem
Mon May 23, 2016 12:56 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Color option thumbnails to another page
Replies: 13
Views: 23718

Re: Color option thumbnails to another page

It was working for me inside Page_Load method as well. Any ways, good to know that you are able to make it work.
by nadeem
Thu May 19, 2016 12:25 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Color option thumbnails to another page
Replies: 13
Views: 23718

Re: Color option thumbnails to another page

First of all remove one set of the following using statements from code (these are repeated): using System.Collections; using System.Collections.Generic; I made those changes and it made some space for the color options below the product now, but the thumbnails still aren't showing. This should work...
by nadeem
Wed May 18, 2016 4:54 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Color option thumbnails to another page
Replies: 13
Views: 23718

Re: Color option thumbnails to another page

For Gold here is the code that you can use on ProductItemDisplay control. Open Website/ConLib/Utility/ProductItemDisplay.ascx Locate the following line <asp:Panel ID="ActionsPanel" runat="server" CssClass="actionsArea"> and replace with <asp:Repeater ID="OptionsList" runat="server"> <ItemTemplate> <...
by nadeem
Wed May 18, 2016 12:50 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Color option thumbnails to another page
Replies: 13
Views: 23718

Re: Color option thumbnails to another page

I am sorry, I forgot to ask about which version you using? Is this ablecommerce version 7.0.x or ablecommerce Gold R.x? I was assisting you for able Gold, if you are using 7.0.x, I can help you for that specific version as well.
by nadeem
Mon May 16, 2016 12:51 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Color option thumbnails to another page
Replies: 13
Views: 23718

Re: Color option thumbnails to another page

Seems you are missing the required using directives. To add these references, right click on the code with error, you will see an expandable icon. Click on the icon and you will see the available using statements that you can add. For example, if you are seeing this error for ScriptManager, you can ...
by nadeem
Fri May 13, 2016 5:17 am
Forum: AbleCommerce GOLD
Topic: Gold R11 paypal_base reference in web.config
Replies: 2
Views: 3471

Re: Gold R11 paypal_base reference in web.config

This had been added in Gold R3 because express checkout wasn't working in sandbox mode. It is handled by an external file (App_Data/paypal.config) that contains endpoints for the API. You can see the following line just below the </configSections> <paypal configSource="App_Data\paypal.config"/> It s...
by nadeem
Fri May 13, 2016 2:41 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Color option thumbnails to another page
Replies: 13
Views: 23718

Re: Color option thumbnails to another page

You can move all the option related code to ProductItemDisplay control. If you are talking about accessing the OptionChoiceItem in BuyProductDialog class, you can create same class inside ProductItemDisplay control or change the class access modifier from protected to public. You need to move Option...
by nadeem
Wed Apr 27, 2016 4:13 am
Forum: AbleCommerce GOLD
Topic: Canonical Question: / VS. /default.aspx
Replies: 3
Views: 3665

Re: Canonical Question: / VS. /default.aspx

This can be achieved by using bit of a code. Open Website/App_Code/PageHelper.cs, locate the following code inside BindMetaTags function: objectUrl = objectUrl.Replace("/mobile/", "/"); and replace with: objectUrl = objectUrl.Replace("/mobile/", "/"); string defaultPage = string.Format("{0}default.a...
by nadeem
Tue Apr 19, 2016 9:53 pm
Forum: AbleCommerce GOLD
Topic: Subscription ReOrder Problem
Replies: 6
Views: 5434

Re: Subscription ReOrder Problem

Here is the fix to this issue. Open Website/Code/ReorderHandler.cs Locate the following line of code basketItem.IsSubscription = item.IsSubscription; and replace with basketItem.IsSubscription = item.IsSubscription; if (!item.IsSubscription && item.Product != null) basketItem.IsSubscription = item.P...
by nadeem
Fri Apr 15, 2016 3:40 am
Forum: AbleCommerce GOLD
Topic: Where is the microdata for availability
Replies: 3
Views: 3528

Re: Where is the microdata for availability

Here is the code at BuyProductDialog page that is responsible to load the availability information:

Code: Select all

<meta itemprop="availability" content="<%=ProductAvailabilityStatus%>" />
This was added in Gold R11.
by nadeem
Tue Apr 12, 2016 5:35 am
Forum: AbleCommerce GOLD
Topic: Error building SRC Gold 11
Replies: 2
Views: 3127

Re: Error building SRC Gold 11

Here is the thread that can help you to bypass StyleCop rules viewtopic.php?f=65&t=17288&p=74068 for the project.
by nadeem
Wed Apr 06, 2016 2:22 am
Forum: AbleCommerce GOLD
Topic: Programmatically getting all products from all categories
Replies: 1
Views: 2464

Re: Programmatically getting all products from all categories

Try something like this Function GetProducts() As ArrayList Dim dataSource As ProductDataSource = New ProductDataSource() Dim productCollection As IList(Of Product) = dataSource.LoadForStore(AbleContext.Current.Store.Id) Dim pArray As ArrayList = New ArrayList() For Each product As Product In produc...
by nadeem
Fri Apr 01, 2016 4:06 am
Forum: AbleCommerce GOLD
Topic: Adding text to the product page
Replies: 2
Views: 3031

Re: Adding text to the product page

Locate the following closing panel at the end of the BuyProductDialog.ascx file </asp:Panel> and replace with <div style="font-weight:bold; margin-top:10px;">Call us if you can't find what you need - we make custom parts.</div> </asp:Panel> Now you can add any style of your choice (e.g. font-size, f...
by nadeem
Fri Mar 11, 2016 6:15 am
Forum: AbleCommerce GOLD
Topic: Missing report : Product breakdown
Replies: 14
Views: 11933

Re: Missing report : Product breakdown

Just noticed you have figured that out in another thread. That's great.
by nadeem
Fri Mar 11, 2016 2:10 am
Forum: AbleCommerce GOLD
Topic: Missing report : Product breakdown
Replies: 14
Views: 11933

Re: Missing report : Product breakdown

The exception above can be thrown if you select some invalid from/to date. For example, if you have mistakenly entered 3/3/20151 or 3/3/201 in the from text box manually (without using the built-in calendar control), then you will ended up with an exception. I am sure this might not be in your case ...
by nadeem
Thu Feb 25, 2016 2:03 am
Forum: AbleCommerce GOLD
Topic: Integrating Google Search API to AC Gold
Replies: 4
Views: 4164

Re: Integrating Google Search API to AC Gold

From google control panel, edit your search engine and update 'Sites to search' field value to *.ntwonline.com. You can now confirm if you have set everything up correctly by providing your cx value here www.google.com/search?cx={YOUR-CX-VALUE} If this return results, you have setup correctly and it...
by nadeem
Wed Feb 17, 2016 5:34 am
Forum: AbleCommerce GOLD
Topic: Subscription Update Email Error
Replies: 3
Views: 2957

Re: Subscription Update Email Error

Sorry about that, you might want to considered not generating an error message when someone tells the system to not send an email.
No problem. BTW, this has already been fixed in latest R11 service release patch.
by nadeem
Wed Feb 17, 2016 1:09 am
Forum: AbleCommerce GOLD
Topic: Subscription Update Email Error
Replies: 3
Views: 2957

Re: Subscription Update Email Error

Are you using latest AbleCommerce Gold R11 Service release patch? Can you confirm you are using the correct email template from Administration > Configure > Store > Subscriptions page? The selected email template should be 'Subscription Updated' for 'Select Subscription Updated Email' setting.
by nadeem
Tue Feb 16, 2016 12:53 am
Forum: AbleCommerce GOLD
Topic: Show in stock/out of stock at category level
Replies: 9
Views: 6707

Re: Show in stock/out of stock at category level

You can simply update the following check to not show the stock messages for kit items:

Code: Select all

if (Item.InventoryMode == InventoryMode.Product)
To

Code: Select all

if (Item.InventoryMode == InventoryMode.Product && !Item.IsKit && Item.KitStatus != KitStatus.Master)