Show Posts


Messages - Reggy

Pages: [1]
2
Hi, i have a similar problem, the script imports the products into the DB. Products are updated in storefront if I turn off and then turn on the main category in admin.

But if I change the status column from 1 to 0 and back, it doesn't work (in DB)

I didn't open a new topic unnecessarily.

Thank you for answer

3
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 :)

4
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

5
Customization help / Re: Options - sale
« on: September 12, 2018, 09:41:41 AM »
Thank you for answer i need something like total Price + sale price, but it Is in JS. And the solution can be total price + sale price. It must be easy for somebody who understand of this code. Or $calc_total_url + 200 can some work?

6
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


7
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

8
Customization help / Re: HOW TO CHANGE ADD TO CART BUTTON
« on: April 18, 2018, 05:29:18 AM »
style.css - >.productpagecart a

9
Customization help / Re: Edit of EMAIL CONFIRM
« on: April 18, 2018, 05:22:49 AM »
Hi,

AbanteCart Version 1.2.12 + folder storefront and admin is about 2 months old

10
Customization help / Re: Edit of EMAIL CONFIRM
« on: April 17, 2018, 04:59:07 AM »
Hi,

I have this error in Error Log:

database error: AbanteCart core v.1.2.12 SQL Error: Unknown column 'po.sku' in 'field list'
Error No: 1054
SQL: SELECT oo.*, po.element_type, COALESCE(po.sku, p.sku) as sku, p.product_id
FROM abc_order_options oo
.
.
.

11
Customization help / Re: Edit of EMAIL CONFIRM
« on: March 15, 2018, 03:35:31 PM »
Thank you for anwer,

unfortunately $product_info['sku'] and $product_option['sku'] doesn't work. It may be necessary to change it something in some controller. :(

12
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