Search found 51 matches

by MegaFemaTron2
Thu Jan 12, 2012 11:47 pm
Forum: Shopping Cart 6.x
Topic: How To: Create An All Top-Level Cats W/Images Panel
Replies: 7
Views: 21531

How To: Create An All Top-Level Cats W/Images Panel

I wanted a category listing just like the one found in the middle of the front page at http://www.bhphotovideo.com. It's awesome and should be a basic feature for this expensive cart. But it isn't. Sooooo after much pain and suffering (*smile*) I figured out a way to get a "best-I-can-do" ...
by MegaFemaTron2
Wed Jan 11, 2012 8:41 pm
Forum: [SC] Custom Code
Topic: Difficult Customization for Interspire
Replies: 3
Views: 9310

Re: Difficult Customization for Interspire

You've probably figured this out already but I'll throw in my 2 cents. Creating a new home page is actually pretty easy with that addition you are running. It's the same one I have. I have custom pages for my home page, web series and radio show. You create a new page like _pageCustomName.html. Then...
by MegaFemaTron2
Mon Jan 02, 2012 8:57 pm
Forum: Shopping Cart 6.x
Topic: How To: Add Random Star Ratings w/o Reviews
Replies: 2
Views: 11470

How To: Add Random Star Ratings w/o Reviews

If you'd like to play around with adding random star ratings for your products without the need to create reviews as well, I've come up with the following script. I really only wanted to add star ratings (like how many carts will allow customers to just rate the product without forcing a review), bu...
by MegaFemaTron2
Wed Dec 28, 2011 10:17 pm
Forum: Shopping Cart 6.x
Topic: How To: Create An Automated Sales System - Day-Week-Month
Replies: 2
Views: 12613

Re: How To: Create An Automated Sales System - Day-Week-Mont

Brilliant idea! I can't wait to see if I can adapt your concept and your PHP code to work with ISC 4.07. ~ Thanks for sharing it!! Fantastic! Let me know how it goes. I think this should work with any version that allows discount rules by category. If not, I think you could add a little math into t...
by MegaFemaTron2
Tue Dec 27, 2011 10:51 pm
Forum: Shopping Cart 6.x
Topic: How To: Create An Automated Sales System - Day-Week-Month
Replies: 2
Views: 12613

How To: Create An Automated Sales System - Day-Week-Month

If you are looking for a way to automate creating sale items for your shop, I just worked out a system for my site that I'll share. Perhaps someone might tweak it or have a better way but this is what I came up with. This system really just moves random products in and out of sale categories that ha...
by MegaFemaTron2
Tue Dec 06, 2011 3:37 pm
Forum: [SC] Custom Code
Topic: How To: Show Stock Levels On Category Product listing Pages
Replies: 1
Views: 7301

Re: How To: Show Stock Levels On Category Product listing Pa

Or you could use the following instead in /includes/display/CategoryContent.php: if ($display_mode == "List") { if ($row['prodcurrentinv'] < 1) { $stockout = "Out of stock"; $GLOBALS['ProductStockCat'] = ''; $GLOBALS['ProductStockOutMessage'] = $stockout; } else { $inv = $row['pr...
by MegaFemaTron2
Fri Dec 02, 2011 9:48 pm
Forum: [SC] Custom Code
Topic: How To: Show Stock Levels On Category Product listing Pages
Replies: 1
Views: 7301

How To: Show Stock Levels On Category Product listing Pages

Cart Version: 6.1.1 Ultimate Edition ** This is for LIST view only ** - You could probably adapt it to grid view by adding the changes to: if ($display_mode == "Grid") instead of: if ($display_mode == "List"). And I think it uses a different snippet file as well. But I don't use ...
by MegaFemaTron2
Fri Dec 02, 2011 7:55 pm
Forum: [SC] Custom Code
Topic: How To: Show Stock Level For Each Item In Cart at Check Out
Replies: 0
Views: 6094

How To: Show Stock Level For Each Item In Cart at Check Out

Cart Version: 6.1.1 Ultimate Edition This is how to add inventory levels for each product in your customer's cart. I don't know PHP so I'm slowly learning by trial and error because I need implement some wholesaler code and have been unable to find a reliable programmer. So I am learning while I con...
by MegaFemaTron2
Wed Nov 23, 2011 4:00 pm
Forum: [SC] Custom Code
Topic: Active SideCategoryList
Replies: 34
Views: 63038

Re: Active SideCategoryList

If you want this to work with 6.1.1 in class.category.php you have to substitute $row in the instructions with $category. $row isn't used in 6.1.1 So the code for step one should look like this: $GLOBALS['ActiveCategory'] = $category['categoryid']; // Add this category to the breadcrumb/trail $this-...
by MegaFemaTron2
Thu Oct 27, 2011 8:35 pm
Forum: [SC] Custom Code
Topic: How to embed php form in pages (generated by phpform.org)
Replies: 3
Views: 8484

Re: How to embed php form in pages (generated by phpform.org

Oh, I use a hosted version (MachForm) of this and love it! I use iframe code to embed all of my forms in ISC. I create all kinds of forms for my site because I have a radio station and what not integrated into it too (also added to a page via iframe). So, if you upload your whole form folder to your...