Search found 149 matches

by m_plugables
Thu Jul 10, 2008 8:37 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: favicon
Replies: 13
Views: 10374

Re: favicon

Just for information if any one wants to create the animated favicon

Code: Select all

Animated favcons are easy to create.  You just need to create an animated gif and rename it to favicon.ico. There are many tutorials available for creating the Animated favicons.
by m_plugables
Thu Jul 10, 2008 8:04 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: favicon
Replies: 13
Views: 10374

Re: favicon

I love our newest animated version.
That's great
by m_plugables
Wed Jul 09, 2008 3:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Getting popular products by category
Replies: 6
Views: 4291

Re: Getting popular products by category

Thanks for sharing your experience dave
by m_plugables
Wed Jul 09, 2008 1:27 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Showing a price range in AC7 category grid
Replies: 6
Views: 3432

Re: Showing a price range in AC7 category grid

Check the variable price feature. For this go to catalog on Admin side and Edit the product and check the variable price option
by m_plugables
Tue Jul 08, 2008 8:13 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Changing text color in Featured Products grid
Replies: 17
Views: 11169

Re: Changing text color in Featured Products grid

Yes you are right in order to match your requirements you may have to change a little bit HTML. for example to put some of your own classes on the text which you want to change
by m_plugables
Tue Jul 08, 2008 5:04 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Changing text color in Featured Products grid
Replies: 17
Views: 11169

Re: Changing text color in Featured Products grid

Add following code to CSS

Code: Select all

.tableNode {color:Red;}
.tableNode a.highlight{color:Red;}
by m_plugables
Tue Jul 08, 2008 4:15 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Fit Logo in Store Theme Background
Replies: 3
Views: 3241

Re: Fit Logo in Store Theme Background

Try the PNG format with transparent background hopefully it will work.
You can create either a PNG 8 or PNG 24 image. The PNG 24 may be problematic with IE6 but will work fine for others
by m_plugables
Tue Jul 08, 2008 4:10 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Migrating content to AbleCommerce Platform
Replies: 2
Views: 2627

Re: Migrating content to AbleCommerce Platform

For the styles you need to work with ASP.NET 2.0 Themes. Read the following post http://forums.ablecommerce.com/viewtopic.php?f=47&t=6917&hilit=skin Secondly for the layout some static or dynamic contents you have to work with AbleCommerce scriptlets. You will find these scriptlets in Website/App_Da...
by m_plugables
Tue Jul 08, 2008 3:15 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Pulling the Thumbnail Image into "Send To Friend"
Replies: 18
Views: 21172

Re: Pulling the Thumbnail Image into "Send To Friend"

thanks judy ... can this be used within the email template ? Use the following code in Email template #if ($Product.ThumbnailUrl.Substring(0,2) == "~/") $Store.StoreUrl+$Product.ThumbnailUrl.Substring(2); <img src='${Store.StoreUrl}${Product.ThumbnailUrl.Substring(2)}' border="0" /> #else <img src=...
by m_plugables
Tue Jul 08, 2008 1:47 am
Forum: Feature Requests
Topic: Store Credit Cards
Replies: 3
Views: 4511

Re: Store Credit Cards

This may help you
viewtopic.php?f=44&t=7480
by m_plugables
Tue Jul 08, 2008 1:39 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Getting popular products by category
Replies: 6
Views: 4291

Re: Getting popular products by category

In fact ProductDataSource class have no functions that finds the popular products for some specific category. Yes you can use the current Featured Products grid control because it has most of the things like the layout etc. You just need to write some custom function in the control which returns the...
by m_plugables
Mon Jul 07, 2008 5:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Best practices question
Replies: 1
Views: 1962

Re: Best practices question

This may be helpful reference when writing custom code
http://wiki.ablecommerce.com/index.php/ ... uilder_API
by m_plugables
Mon Jul 07, 2008 5:21 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Getting popular products by category
Replies: 6
Views: 4291

Re: Getting popular products by category

You may have to write some custom database related code for this purpose. You can use this
http://wiki.ablecommerce.com/index.php/ ... uilder_API as refarnce that how to write your database related custom code
by m_plugables
Mon Jul 07, 2008 4:18 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Multi Lingual Support
Replies: 2
Views: 2528

Re: Multi Lingual Support

As AbleCommerce 7 is developed in ASP.NET 2.0. You should better first have a look that how to create Multi Lingual applications in ASP.NET 2.0.
by m_plugables
Mon Jul 07, 2008 3:48 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Changing text color in Featured Products grid
Replies: 17
Views: 11169

Re: Changing text color in Featured Products grid

Modify the style.css of your current store theme and change the color values for following styles. Only change the value of color attribute to some of your custom value leave other attributes as it is. For example i changed the color of product name and price to red. a.highlight{color:RED; } p.highl...
by m_plugables
Mon Jul 07, 2008 3:32 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: No Email Form in Contact us.
Replies: 4
Views: 3147

Re: No Email Form in Contact us.

You can use the following as a refferance

Code: Select all

Admin/Store/EmailTemplates/SmtpSettingsDialog.ascx
This control contains some test email code.
i have posted a control for test purpose in the following post
viewtopic.php?f=45&t=7414
you can use it for reference as well
by m_plugables
Mon Jul 07, 2008 3:25 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Pulling the Thumbnail Image into "Send To Friend"
Replies: 18
Views: 21172

Re: Pulling the Thumbnail Image into "Send To Friend"

you can try the following code by putting it in the Email template where you want to show the Thumbnail.

Code: Select all

<img src='${product.ThumbnailUrl}' border="0" />
by m_plugables
Fri Jul 04, 2008 4:11 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: favicon
Replies: 13
Views: 10374

Re: favicon

Well guys, IE6 only displays favicons in your bookmarks, which they call "Favorites" In fact, the name favicon was coined to mean "Favorites icon". As time goes on, other browsers have begun making more widespread use of favicons: in the address bar, on tabs and so on. But so far, IE only displays t...
by m_plugables
Thu Jul 03, 2008 10:12 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Adding fields to invoices
Replies: 17
Views: 10090

Re: Adding fields to invoices

jmestep wrote:You might want to check with mazhar. I paid him for a snippet of code that puts the CC number on the invoice since I didn't have time to figure it all out. His price was reasonable and his code gives me a pattern for other things.
Judy you own that code. You can post it if you like.
by m_plugables
Wed Jul 02, 2008 3:21 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Products assigned to 'Taxable' - empty!
Replies: 2
Views: 2248

Re: Products assigned to 'Taxable' - empty!

It will be quite helpful if you provide some screen shot with some explanations of scenario over it.