endmd adlı üyeden alıntı: mesajı görüntüle
@EmreCapan; konu sahibi arkadaştan rica ederek sormak istiyorum sorumu size hocam.

Xml ile ürün yüklerken saçma sapan kategoriler oluşuyor ve stok seçeneklerdeki değerler tam doğruyu göstermiyor?
Sorun ne olabilir?
Eğer Universal xml import export kullanıyorsanız, ekstra fields kısmına bakın orda categories alanı var oradaki ayarı kontrol ediniz.



mesut16 adlı üyeden alıntı: mesajı görüntüle
HTTP_SERVER.'index.php?route=product/product&product_id=' . $product['product_id']

Href karşısına bunu yapıştırın eskisini silin.

$data['products'][] = array(
                      'order_product_id' => $product['order_product_id'],
                      'product_id' => $product['product_id'],
                      'name'              => $product['name'],
                      'model'             => $product['model'],
                      'option'            => $option_data,
                      'quantity'         => $product['quantity'],
                      'price'             => $this->currency->format($product['price'] + ($this->config->get('config_tax') ? $product['tax'] : 0), $order_info['currency_code'], $order_info['currency_value']),
                      'total'             => $this->currency->format($product['total'] + ($this->config->get('config_tax') ? ($product['tax'] * $product['quantity']) : 0), $order_info['currency_code'], $order_info['currency_value']),
                      'href'              => HTTP_SERVER.'index.php?route=product/product&product_id=' . $product['product_id']
                  );


Bu şekilde yaptım ama siteadi.com/admin/index.php?route=product/product&product_id=65 şeklinde çıktı
HTTP_SERVER kısmını HTTP_CATALOG olarak değiştirir misiniz?

admin klasöründeki config.php de define olarak tanımlanan admin siz bir url adresi bulunan değişken adını olması lazım kontrol edin lütfen.