Show Posts


Topics - Reggy

Pages: [1]
1
Installation and Configuration / domain.com/com after installation
« on: May 17, 2021, 03:37:48 PM »
Hi,

after installation abantecart, i have URLs like: domain.com/com/index.php?rt=product/special etc (twice com). How can I fix it?

I didn't find answer.

Thank you for your time and answer :)

2
Customization help / URL structure
« on: February 10, 2019, 04:34:26 AM »
Hi,

is there some possibility how to have only ONE URL to ONE page? Example i have url example.com/category/product_name and  work /category/product_name, /product_name, but also /categorysdadsagdassadas/product_name.

This is SEO problem with duplication, I need only url example.com/product_name - without category, on main paige are urls on product without category.

Thank you for answer

3
Customization help / Options - sale
« on: September 01, 2018, 01:27:09 PM »
Hi,

I know i can't make sale for some product option, only for product, so when I sale from e.g. -200 (1 349 to 1 149) when i pick cheapest option (1 149) old and new price is correct, but when I pick more expensive option (+150) it is show new price correct, but old price is not changing.

I know the code with new price in product/product.tpl is:
Quote
<span class="total-price"></span>

and javascript fot that is

Quote
function display_total_price() {

      $.ajax({
         type: 'POST',
         url: '<?php echo $calc_total_url;?>',
         dataType: 'json',
         data: $("#product").serialize(),

         success: function (data) {
            if (data.total) {
               $('.total-price-holder').show();
               $('.total-price-holder').css('visibility', 'visible');
               $('.total-price').html(data.total);
            }
         }
      });

   }

But I am amateur and javascript is not my friend, does somebody know hot to edit to changing old price of product option also?

Or is it some extension where I can edit sale of product option with % or something like that?

I am still learning and testing. - AbanteCart Version 1.2.13

Sorry for bad english :( here is example screen:
Thank you for answer


4
Customization help / Format of price number
« on: July 18, 2018, 11:50:44 AM »
Hi, can you tell me please how to change format of price number from example 33,333 to 33 333 or 33 000.00? Thank you

5
Customization help / Edit of EMAIL CONFIRM
« on: March 15, 2018, 05:52:39 AM »
Hi,

can you someone give me advice how to edit email confirm?

I want to change line 93, at: view\default\template\mail\order_confirm.tpl

<td class="align_left"><?php echo $product['model']; ?></td>

 - it shows product model number and i need change it for product option SKU number, but when i change $product['model'] for $option['sku'] it doesn't work. In invoice it works

Sorry for bad english and thank you for answers.

Pages: [1]

Powered by SMFPacks Social Login Mod