Search found 1349 matches

Search found 1349 matches

Re: Fixed height to product boxes

Code: Select all

grid = $('.caption, .css-class2, .class-nth');

Jump to post
  • Sat Aug 26, 2017 1:20 pm
  • Replies 11
  • Views 5029
Re: Recurring payments question

In oc you can't have a zero price for products but in your case you can disable the trial and add $250 to the product price where the profile is attached to. This will be an instant payment while the profile payment follows shortly after (within 24 hours)
Use the sandbox to confirm your setup ;)

Jump to post
  • Sun Aug 20, 2017 6:45 pm
  • Replies 1
  • Views 738
Re: Group Downloads (listing) by ID

You're welcome wam, and thanks for the report back!
Cheers

Jump to post
  • Fri Aug 11, 2017 1:52 pm
  • Replies 10
  • Views 2058
Re: check out issues/errors

Hi, It looks like the POST is not reaching the server. I've seen this before and the culprit was mod_security in that case. You can try a htaccess entry to disable it, just to see if that is the cause: <IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off #try just adding this also </I...

Jump to post
  • Thu Aug 10, 2017 2:12 am
  • Replies 11
  • Views 2867
Re: OC 3.0.2.0 Email issues

Very true! I experienced something similar with the theme event; without it, it wouldn't take a custom theme. But I won't be using 3.+ any time soon, no time to debug ;D

Jump to post
  • Mon Aug 07, 2017 1:59 am
  • Replies 57
  • Views 35459
Re: OC 3.0.2.0 Email issues

Great job ;D
Good to keep in mind!

Jump to post
  • Sun Aug 06, 2017 5:03 pm
  • Replies 57
  • Views 35459
Re: Fixed height to product boxes

It already takes the highest height of a .caption element and applies it to others. You can also try other elements by looking at the html markup via browser developer tool (F12)

Jump to post
  • Sun Aug 06, 2017 3:20 pm
  • Replies 11
  • Views 5029
Re: https:// to https:www. not working

viewtopic.php?f=190&t=182662#p669374

You also need to redirect www along with https and the order of rewrite rules matters too. Hopefully above post helps you along

Jump to post
  • Sun Aug 06, 2017 4:19 am
  • Replies 8
  • Views 5910
Re: Fixed height to product boxes

Just above </body></html> is usually the spot. Don't forget to include the <script> tags.
Clear the ocmod cache; Do some googling if you don't know how to do this.
Your footer should be at catalog/view/theme/default/template/common/footer.tpl

Jump to post
  • Sun Aug 06, 2017 2:55 am
  • Replies 11
  • Views 5029
Re: Oc 2.3.0.2 causing max questions database error when adding products to cart

There's always (1.5+ at least when I first saw oc) been a cart table, or column in customer table and when adding to cart the options,specials,discounts,rewards,stock,recurring,min quantity,downloads,... are checked from the db - hence the, for example, redirect to product page if there's an require...

Jump to post
  • Sat Aug 05, 2017 4:44 pm
  • Replies 34
  • Views 9629
Re: Oc 2.3.0.2 causing max questions database error when adding products to cart

I got curious too, and added 50 Products, by help of the Auto ProductsGenerator Extension, and those 50 products generated a 2182 line Log by use of my Version 1.5.6.5, just to mention this! Ernie I'm curious. Where can I get a copy of your version? I'm seriously considering reverting back. Ernie i...

Jump to post
  • Sat Aug 05, 2017 2:43 pm
  • Replies 34
  • Views 9629
Re: Oc 2.3.0.2 causing max questions database error when adding products to cart

I just checked too. Opened home, added 2 products to cart from featured module. One had recurring profile so it went to product page, etc, added to cart. Total queries 789. It probably loops through everything to check for stock and others like specials, discounts and so on for every add to cart act...

Jump to post
  • Fri Aug 04, 2017 6:06 pm
  • Replies 34
  • Views 9629
Re: Special modul products random

OK I understand now what you mean. Add this to the special module controller $total_specials = (int)$this->model_catalog_product->getTotalProductSpecials(); Now you can use this as the max in the rand() function; $data['products'] = array(); $filter_data = array( 'sort' => 'pd.name', 'order' => 'ASC...

Jump to post
  • Thu Aug 03, 2017 5:29 pm
  • Replies 8
  • Views 2819
Re: Special modul products random

The first solution is still with the problem of everytime changing the number and I can´t do that. Does the second solution solve that? I don't know what you mean by this. The 'start' key is just telling the database to return results starting at that number from a total set. So you will get differ...

Jump to post
  • Thu Aug 03, 2017 3:41 pm
  • Replies 8
  • Views 2819
Re: Special modul products random

It only changes upon page load if that's what you meant. The bigger the product count, the more randomness you'd experience. I guess you can play with the randomizer for more randomness :) Say max products = 1000, limit 20 randomize min and max rand(rand(0,500),rand(501,980)) or create an array of s...

Jump to post
  • Wed Aug 02, 2017 10:14 pm
  • Replies 8
  • Views 2819
Re: Special modul products random

You could probably do this: Make sure the highest number is your total products enabled minus the limit. Always backup first and use a decent code editor like notepad++ or sublimeText (assuming you have no experience with this) $data['products'] = array(); $filter_data = array( 'sort' => 'pd.name', ...

Jump to post
  • Wed Aug 02, 2017 8:12 pm
  • Replies 8
  • Views 2819
Re: Oc 2.3.0.2 causing max questions database error when adding products to cart

It seems a ton of your db queries are called from a loop, maybe from your home page or category which has a huge! list of products. You should ask the developer of this to make it more optimized, iow don't query the db on each iteration. However, oc kinda does the same thing. Guess it would only be ...

Jump to post
  • Mon Jul 31, 2017 7:52 pm
  • Replies 34
  • Views 9629
Re: [SOLVED]Showing Products in Main Menu

You're welcome, and it looks sharp too ;D

Jump to post
  • Mon Jul 31, 2017 7:03 pm
  • Replies 17
  • Views 10009
Re: Showing Products in Main Menu

See below. $cat_products was just my name, you need to use the one you created. I added the products inside the category loop otherwise you will get all the same products for each category. This filters the products by cat id array('filter_category_id'=>$category['category_id']) This also limits res...

Jump to post
  • Mon Jul 31, 2017 6:05 pm
  • Replies 17
  • Views 10009

Search found 1349 matches