Page 1 of 1
Search found 16 matches
Re: moms funkar ej trots extension
*** Hitta ***
foreach ($order_total_query->rows as $result) {
if ($result['tax_value'] != 0) $tracked_ot_tax = true;
}
*** Ersätt med ***
$tracked_ot_tax = false;
foreach ($order_total_query->rows as $result) {
if ($result['tax_value'] != 0) $tracked_ot_tax = true;
}
- Tue Jul 31, 2012 2:41 pm
- Replies 4
- Views 1693
Re: SEO URLs partly working
Thanks a lot for sorting that out. I looked allover the web for an answer. It's unfortunate, since the functionality is already there. www.site.com/common/home decodes just fine with the default htacces code. It just needs to be output by the scripts.
Jump to post- Sat Jul 28, 2012 2:28 pm
- Replies 2
- Views 248
SEO URLs partly working
Shouldn't links such as /index.php?route=common/home be output as /common/home when using SEO URLs? It's working for categories though where /index.php?route=product/category&path=1 becomes /category-seo-keyword. * Using 1.5.3.1 * .htaccess is default and stating correct RewriteBase. * SEO URLs ...
Jump to post- Sat Jul 28, 2012 8:05 am
- Replies 2
- Views 248
Re: Weight units are missing spacing
Perhaps the Guide for the Use of the International System of Units (IS) would be of interest to this topic?
In short it says values and units should be space separated unless superscript symbols.
- Wed Jul 25, 2012 10:32 pm
- Replies 2
- Views 486
Security holes and vulnerabilities in 1.5
I have a customer who recently got her 1.5.3.1 hacked. It is uncertain how the spread got in. I found a list of vulnerabilities in 1.5.2.1 at http://www.waraxe.us/advisory-84.html. Is it legit, and have the vulnerabilities been plugged? Are there any known vulnerabilities in 1.5.3.1? Is there a page...
Jump to post- Tue Jul 24, 2012 8:46 pm
- Replies 1
- Views 1358
Re: [vQMod] How to display prices with tax at checkout confi
Here is my solution:
http://www.opencart.com/index.php?route ... on_id=2081
And don't miss out the box for toggle tax incl/excl:
http://www.opencart.com/index.php?route ... on_id=4274
- Tue Dec 20, 2011 2:06 pm
- Replies 23
- Views 12985
Re: Display both inc VAT and ex VAT on product pages
Here is a box solution to toggle prices incl/excl VAT. Not a vqmod though. http://www.opencart.com/index.php?route=extension/extension/info&extension_id=4274 And if you need checkout etc to display prices incl tax look here: http://www.opencart.com/index.php?route=extension/extension/info&ex...
Jump to post- Tue Dec 20, 2011 2:03 pm
- Replies 12
- Views 2078
Re: Show subtotal including tax!
http://www.opencart.com/index.php?route ... on_id=2081
Jump to post- Tue Dec 20, 2011 1:59 pm
- Replies 11
- Views 6370
Re: Dynamic footer based on what page is being displayed.
Qphoria, that is the same as: if (isset($_GET['route']) && $_GET['route'] == 'common/home') { /// do some magic } It would not apply to seo urls or root /. My previous post seems to do the trick, but in my picky opinion it's one condition too many ;b if ($_SERVER['REQUEST_URI'] == '/' || str...
Jump to post- Wed Jun 01, 2011 6:12 am
- Replies 5
- Views 772
Re: Dynamic footer based on what page is being displayed.
Is there no such variable like $this->config->get('route')?
I was hoping for if ($this->config->get('route') == 'common/home')
because I find this solution kind of a mcgyver:
if ($_SERVER['REQUEST_URI'] == '/' || strpos($_SERVER['REQUEST_URI'], 'route=common/home') !== false) {
- Sat May 28, 2011 2:05 am
- Replies 5
- Views 772
Re: Swedish special letters not working
Your language files must be UTF-8 w/o BOM
Jump to post- Sat May 28, 2011 2:00 am
- Replies 1
- Views 296
Dynamic footer based on what page is being displayed.
I've searched the web and cannot find a way or variable to determine what page OpenCart is displaying. My customer wants a different header and footer on the firstpage. So I need some sort of code that does the following in the tpl files: <?php if ($page == 'firstpage') { ?> ... <?php } ?> Any clues?
Jump to post- Fri May 27, 2011 12:25 am
- Replies 5
- Views 772
[OpenCart home page] Who purchased my extensions
I am missing a feature that shows a list of who purchased my extensions. This would be suitable if there is a serious bugfix or any other important information needed to reach the users. Right now I have to keep track of this my own manual way based on the purchase notification emails.
Jump to post- Thu May 26, 2011 3:53 am
- Replies 0
- Views 311
[OpenCart home page] Download statistics for extensions
I would very much like to know how many have downloaded any of my extensions. I can see Views, and Votes which are displayed publicly but I'm missing number of downloads wheither it's shown public or for the author only.
Jump to post- Thu May 26, 2011 3:28 am
- Replies 0
- Views 393
Weight units are missing spacing
Weight units are missing a spacing.
22.08kg should be 22.08 kg
This concerns everywhere weight is specified.
- Wed May 18, 2011 3:26 am
- Replies 2
- Views 486
nowrap="nowrap" needed for all prices
Even though the dollar character is merged with the price such as $10.00 there are many currencies that are separated. Swedish Kronor (SEK) can be displayed as 10.00 SEK or 10.00 kr or 10.00:-. But these prices are not pretty when they get line wrapped, which happens almost everywhere.
Jump to post- Wed May 18, 2011 3:22 am
- Replies 0
- Views 330
Search found 16 matches