Search found 133 matches

Search found 133 matches

Re: price is displayed $101decimal_point00

in your "catalog/language/language_name/language_name.php
make sure that you have below code. if not add them

Code: Select all

$_['decimal_point']         = '.';
and

Code: Select all

$_['button_cart']           = 'Add to Cart';

Jump to post
  • Fri Apr 01, 2016 7:24 pm
  • Replies 3
  • Views 1478
Re: Orders status missing OC 2.0.3.1

by default there are no "order_status_id" with 0, it must start with 1 and end with 16 by default

Jump to post
  • Thu Mar 31, 2016 7:47 pm
  • Replies 1
  • Views 699
Re: Hide module from Extensions > Module List

i've update my previous post. please check it out

Jump to post
  • Sat Mar 26, 2016 3:19 pm
  • Replies 4
  • Views 1300
Re: Hide module from Extensions > Module List

admin/controller/extension/module.php search for $files = glob(DIR_APPLICATION . 'controller/module/*.php'); replace with $files = preg_grep("/(?=.*affiliate).*/", glob(DIR_APPLICATION . 'controller/module/*.php'), PREG_GREP_INVERT); it is better to use vqmod for this so you don't have to ...

Jump to post
  • Sat Mar 26, 2016 11:51 am
  • Replies 4
  • Views 1300
Re: First day of the week

in catalog header.tpl, you can add before "<?php foreach ($analytics as $analytic) { ?>", it isn't showing directly but you still can see them by viewing page source. just make sure that you pointing to the pl.js correctly

Jump to post
  • Mon Mar 21, 2016 2:18 am
  • Replies 9
  • Views 3080
Re: First day of the week

ok, i've found the solution for this after reading their docs file. all you need is pick your locale from https://github.com/moment/moment/tree/develop/locale and save the (.js) file into your "admin/view/javascript/jquery/datetimepicker/" directory. as example my locale file name is "...

Jump to post
  • Mon Mar 21, 2016 12:36 am
  • Replies 9
  • Views 3080
Re: First day of the week

well im not sure if this will cause any error, but this do the trick for me. if you want to take the risk simply follow this steps. admin/view/javascript/jquery/datetimepicker/bootstrap-datetimepicker.min.js search for if (moment().localeData()._week.dow === 0) { change to if (moment().localeData()....

Jump to post
  • Sun Mar 20, 2016 11:55 pm
  • Replies 9
  • Views 3080
Re: Custom external link in Category Menu

have you click a refresh button from Admin->Extensions->Modifications->Refresh ?

Jump to post
  • Sun Mar 20, 2016 2:20 pm
  • Replies 4
  • Views 1007
Re: Taking the old stuff with me (orders etc)

Hello all, I have a question about the orders in OC. I want to open a new shop but want to take the orders with me. Is there a possible way i can export/import the orders and than upload them to the new domain.. Because i want the current domain is be redirected(migrating) to a different domain(new...

Jump to post
  • Sun Mar 20, 2016 11:14 am
  • Replies 2
  • Views 701
Re: Opencart Images Location

If you're looking for product image string(pointing to) on the database table(ex additional image), it was on oc_product if i remember correctly

Jump to post
  • Sun Mar 20, 2016 1:29 am
  • Replies 3
  • Views 4773
Re: Get super user admin id

first of all that code need to be placed inside a getForm(), and second i was misunderstanding at first, i thought you want to show on front end and get the admin id. however..inside your controller just after "protected function getForm() {" put below code $data['admin_id'] = isset($this-...

Jump to post
  • Sat Mar 19, 2016 6:55 pm
  • Replies 9
  • Views 3201
Re: Get super user admin id

code snippet for oc2.2
controller:

Code: Select all

$this->user = new Cart\User($this->registry);
$data['admin_id'] = $this->user->getId();
tpl:

Code: Select all

if ($admin_id == 1) {
// admin_id is 1
} else {
// admin_id is NOT 1
}

Jump to post
  • Fri Mar 18, 2016 10:46 pm
  • Replies 9
  • Views 3201
Re: How to make 5 products in one row under home page?

you only can do this if you planning to set a fix width manually, but that will destroy the responsive for smaller device such as phones. have a lil read here http://getbootstrap.com/css/#grid-example-basic

Jump to post
  • Thu Mar 17, 2016 11:27 am
  • Replies 4
  • Views 1159
Re: How to modify "Order ID"?

you can run this simple query from your phpmyadmin. change "oc_" to your database table prefix.

Code: Select all

ALTER TABLE oc_order AUTO_INCREMENT = 2001;
please noted that running a queries directly to the db is pretty dangerous, please consider make a backup

Jump to post
  • Tue Mar 15, 2016 7:14 pm
  • Replies 1
  • Views 503
Re: HTML module removes any custom html or CSS

mine was 2.1.0.2..btw for v2.2 that will consider as a bug if not cause by custom mods, lets hope they fixed that soon

Jump to post
  • Mon Mar 14, 2016 8:58 pm
  • Replies 4
  • Views 1785
Re: HTML module removes any custom html or CSS

i would think you'll need to edit this way

Clipboard02.jpg

Clipboard02.jpg (19.62 KiB) Viewed 1783 times

Jump to post
  • Mon Mar 14, 2016 8:41 pm
  • Replies 4
  • Views 1785
Re: How to expand the width of the "Description" in product

Please have a look the topic "General support", am I came to the wrong place? If I want to learn, I can go to "Tutorial" forum, ok? currently you're not on the wrong forum. i hate to say this but if you expect someone to feed on your mouth with FREE support and fully functionali...

Jump to post
  • Mon Mar 14, 2016 7:43 pm
  • Replies 11
  • Views 2533
Re: Resize html content module

if you cannot find you can add them on your stylesheet. here's some example div > p { color: blue; } html <div> <p>some content</p> </div> Selects all <p> elements where the parent is a <div> element or .parent > .child { color: blue; } html <div class="parent"> <div class="child"...

Jump to post
  • Sat Mar 12, 2016 11:23 am
  • Replies 3
  • Views 1522
Re: SEO URL not working

your server must have a mod_rewrite enable for SEO to work, contact your hosting provider

Jump to post
  • Sat Mar 12, 2016 1:37 am
  • Replies 3
  • Views 982

Search found 133 matches