Search found 30 matches

Search found 30 matches

How to add Delivery Charges State wise and Country wise

Hi Friends, I want to add delivery charges as per different states, cities and countries too. For Example: I am operating in Mumbai and I will not take any delivery charges from the customers of Mumbai. But If I get orders from Delhi then I will charge some amount from the customers who will place o...

Jump to post
  • Thu Sep 24, 2015 10:05 pm
  • Replies 0
  • Views 327
Re: Cannot SignUp for Opencart Seller Account

You are possibly too NEW , around here, therefore, so far, you have not yet qualified to be appointed as SELLER. I cannot see anything stating this on the whole OPENCART, I didn't see anything like this that I have to be an old opencart member for signing up as a seller. By checking on your Posts, ...

Jump to post
  • Wed Sep 09, 2015 5:50 pm
  • Replies 2
  • Views 586
Re: checkout/cart/edit page not found

try disabling vqmod extensions you have installed one by one and then check it is working or not? Also go here - catalog/controller/checkout/cart.php and search for this line - public function edit() in the cart.php file. Make sure you find the line. But first of all try disabling any extension you ...

Jump to post
  • Tue Jul 28, 2015 4:05 pm
  • Replies 2
  • Views 663
Re: how to change the font size of menu without changing the

Hi Rohit, here is the code from Theme/defealut/stylesheet/stylesheet.css This is changing the font size in the enitre page (i was trying to modify only the menubar) body { font-family: 'Open Sans', sans-serif; font-weight: 600; color: #666; font-size: 15px; line-height: 22px; width: 100%; } setting...

Jump to post
  • Sat Jul 25, 2015 12:16 pm
  • Replies 6
  • Views 3065
Re: Limit Related Products

don_hart wrote:Thanks. I found the problem I had to remove an old vqmod that was supposed to limit related products but didn't work.
After removing the buggy mod, my code has resolved your problem or not?

Jump to post
  • Sat Jul 25, 2015 12:11 pm
  • Replies 6
  • Views 1565
Re: how to change the font size of menu without changing the

I am trying to change the font size of the Menu. However, it is changing the font size every where. Can some one help. Using Opencart 2.0.3.1 Are you using CSS to do that or some kind of 3rd party extension?? If you are using CSS code, then please share your code how you are trying to change the fo...

Jump to post
  • Fri Jul 24, 2015 9:03 pm
  • Replies 6
  • Views 3065
Re: How to remove Links on footer

Hello, I am needing some assistance with removing links from the Footer of the Open Cart Store Version 2.0.3.1 I am wanting to remove the Brand Link and add a Dealers Link there. So how do I go about removing it and adding a new link? I use the TMD Footer Menu which is free, it provides great contr...

Jump to post
  • Tue Jul 21, 2015 10:02 pm
  • Replies 3
  • Views 3480
Re: Limit Related Products

Well I made the change but it is not working here is the code <h3><?php echo $text_related; ?></h3> <div class="row"> <?php $i = 0; $lim = 0; ?> <?php foreach ($products as $product) { ?> <?php if($lim == 4) { break; } ?> <?php $lim++; ?> <?php if ($column_left && $column_right) {...

Jump to post
  • Tue Jul 21, 2015 9:53 pm
  • Replies 6
  • Views 1565
Re: weight based shipping slight alteration

midlifedesign wrote:which bit do I need to remove - dont want the brackets or the content of the brackets if possible.

Sorry but I dont want to mess it up so i would rather be sure than fiddle about - thanks for your help

You want there to be shown only UK Shipping ? And not the weight including the brackets?

Jump to post
  • Mon Jul 20, 2015 5:22 pm
  • Replies 9
  • Views 736
Re: HTML Module: Not working

You said : Notice: Error: Could not load template /home/xxxxxx/public_html/catalog/view/theme/module/html.tpl! in /home/xxxxx/public_html/system/modification/system/engine/loader.php on line 45 Are you sure, you are getting exactly this error, except that xxxxxx?? It should be showing - Notice: Erro...

Jump to post
  • Mon Jul 20, 2015 5:20 pm
  • Replies 5
  • Views 1451
Re: [TUTORIALS] Opencart's "cart" - a deeper look

This is good. But can you provide a small detail also? I'm making my custom add to cart function. I save the cart items in localstorage. I'm able to add items without any product options with them. But the products with options, I'm not able to add them to cart. I just want to know in which format I...

Jump to post
  • Sun Jul 19, 2015 3:48 am
  • Replies 16
  • Views 38220
Re: Add product weight in check out confirm order view

It's commercial Sir. Contact me if you want to pay for it - http://w3karigar.com/.
Thanks.

Jump to post
  • Sun Jul 19, 2015 3:43 am
  • Replies 2
  • Views 667
Re: Add "checkout" button to product pages

you can do this with JS, add the following to code to somewhere in the bottom of the checkout button -

Code: Select all

<script>
$('button#checkout').on('click', function() {
location = 'index.php?route=checkout/checkout';
});
</script>
Rohit
w3karigar.com

Jump to post
  • Sun Jul 19, 2015 3:19 am
  • Replies 3
  • Views 1515
Re: SideMenu is showing all Parent Categories

Yeah you can add a meaningful title to the category list. Open the same category.tpl file, and see the 3rd line - <?php if ($category['category_id'] == $category_id) { ?> just after this line, add the following code - <h3><?php echo $heading_title; ?></h3> Now check the category page, it will show a...

Jump to post
  • Fri Jul 17, 2015 4:02 pm
  • Replies 3
  • Views 628
Re: Not working id search-button

I was having the same problem while creating the sticky menu which your website also have. The problem arises due to the sticky menu. If you have created the sticky menu by cloning it with javascript or jquery, then there becomes two instances of an element with id attribute. And when in the common....

Jump to post
  • Thu Jul 16, 2015 12:23 am
  • Replies 12
  • Views 2268
Re: Pls help me how to fix site width

Add class='img-responsive' to the image tag which is going out of the boundary (visible area).

Thank you.

Jump to post
  • Thu Jul 16, 2015 12:08 am
  • Replies 1
  • Views 331
Re: Limit Related Products

Open the file - catalog/view/theme/default/template/product/product.tpl search for this code - <?php echo $text_related; ?> after the above code's line you will see a div with class 'row', after that div you will see the following line - <?php $i = 0; ?> change the above line to this - <?php $i = 0;...

Jump to post
  • Wed Jul 15, 2015 11:59 pm
  • Replies 6
  • Views 1565
Re: SideMenu is showing all Parent Categories

Open the file - catalog/view/theme/ %themename% OR default /template/module/category.tpl you will find the code below - <div class="list-group"> <?php foreach ($categories as $category) { ?> <?php if ($category['category_id'] == $category_id) { ?> <a href="<?php echo $category['href']...

Jump to post
  • Wed Jul 15, 2015 11:33 pm
  • Replies 3
  • Views 628
Re: Stuck on Installation Step 3 - No such file or director

Please be more descriptive about the problem you are facing. If possible include some screenshots also. And one thing, see if the permission is granted for you to read the directory of the opencart. Also, many control panels provide inbuilt installer for few top CMS. Try using the installer through ...

Jump to post
  • Wed Jul 15, 2015 11:15 pm
  • Replies 9
  • Views 2710
Re: Show all Categories that a product belongs to

So far I have catalog/model/catalog/category.php ---------------------------------------------------- public function getProductCategories($prodid) { $query = $this->db->query("SELECT category_id FROM " . DB_PREFIX . "oc_product_to_category WHERE product_id = '" . $prodid . &quo...

Jump to post
  • Wed Jul 15, 2015 11:02 pm
  • Replies 2
  • Views 7597

Search found 30 matches