ELITE Опубліковано: 21 січня 2012 Share Опубліковано: 21 січня 2012 Уважаемые люди помогить решить одну задачу. Надо в корзину где: Убрать - Фото - Наименование - товара - Модель - Кол-во - Цена - Итого. --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Заменить (Кол-во) на Теги товара: (TAG) которая находица в Админ панеле-Каталог-товары-добавления-- и ниже описания товара в самом незу Теги товара: А поевляется он на саите в продукте самом незу-ниже ОПИСАНИЯ. Screen: Админка - Scree: Саит Знаю на форуме есть люди - профессионалы своего дела которые очень надеюсь мне помогут решить ету проблему. Надіслати Поділитися на інших сайтах More sharing options...
ELITE Опубліковано: 22 січня 2012 Автор Share Опубліковано: 22 січня 2012 Эта тема очень нуждается в помоши. знаю на форуме очен многие могут мигом решить эту проблему помогите пожалуста Надіслати Поділитися на інших сайтах More sharing options...
Yesvik Опубліковано: 22 січня 2012 Share Опубліковано: 22 січня 2012 Можно узнать зачем? Надіслати Поділитися на інших сайтах More sharing options... freelancer Опубліковано: 22 січня 2012 Share Опубліковано: 22 січня 2012 Можно узнать зачем?думаю он имеет ввиду не заменить, а убрать кол-во за ненадобностью, но добавить теги, которые у него используются для другого. но я могу ошибаться Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 22 січня 2012 Автор Share Опубліковано: 22 січня 2012 Потому что у меня на саите должно быть так: Производитель Модель Метка<< ее я переделал на код товара А1-А2 и т.г. Помогить пожалуста ((( Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 25 січня 2012 Автор Share Опубліковано: 25 січня 2012 Незнаю я этот php не как не смог ничего изменить плз ПОМОГИТЕ ( Вот коды Cart.php - Cart.tpl Хоть подскажите где что поменять <?php class ControllerCheckoutCart extends Controller { public function index() { $this->language->load('checkout/cart'); if ($this->request->server['REQUEST_METHOD'] == 'POST') { if (isset($this->request->post['quantity'])) { if (!is_array($this->request->post['quantity'])) { if (isset($this->request->post['option'])) { $option = $this->request->post['option']; } else { $option = array(); } $this->cart->add($this->request->post['product_id'], $this->request->post['quantity'], $option); } else { foreach ($this->request->post['quantity'] as $key => $value) { $this->cart->update($key, $value); } } } if (isset($this->request->post['remove'])) { foreach ($this->request->post['remove'] as $key) { $this->cart->remove($key); } } if (isset($this->request->post['voucher']) && $this->request->post['voucher']) { foreach ($this->request->post['voucher'] as $key) { if (isset($this->session->data['vouchers'][$key])) { unset($this->session->data['vouchers'][$key]); } } } if (isset($this->request->post['redirect'])) { $this->session->data['redirect'] = $this->request->post['redirect']; } if (isset($this->request->post['quantity']) || isset($this->request->post['remove']) || isset($this->request->post['voucher'])) { unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); unset($this->session->data['reward']); $this->redirect($this->url->link('checkout/cart')); } } $this->document->setTitle($this->language->get('heading_title')); $this->data['breadcrumbs'] = array(); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('common/home'), 'text' => $this->language->get('text_home'), 'separator' => false ); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('checkout/cart'), 'text' => $this->language->get('heading_title'), 'separator' => $this->language->get('text_separator') ); if ($this->cart->hasProducts() || (isset($this->session->data['vouchers']) && $this->session->data['vouchers'])) { $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_select'] = $this->language->get('text_select'); $this->data['text_weight'] = $this->language->get('text_weight'); $this->data['column_remove'] = $this->language->get('column_remove'); $this->data['column_image'] = $this->language->get('column_image'); $this->data['column_name'] = $this->language->get('column_name'); $this->data['column_model'] = $this->language->get('column_model'); $this->data['column_quantity'] = $this->language->get('column_quantity'); $this->data['column_price'] = $this->language->get('column_price'); $this->data['column_total'] = $this->language->get('column_total'); $this->data['button_update'] = $this->language->get('button_update'); $this->data['button_shopping'] = $this->language->get('button_shopping'); $this->data['button_checkout'] = $this->language->get('button_checkout'); if ($this->config->get('config_customer_price') && !$this->customer->isLogged()) { $this->data['attention'] = sprintf($this->language->get('text_login'), $this->url->link('account/login'), $this->url->link('account/register')); } else { $this->data['attention'] = ''; } if (!$this->cart->hasStock() && (!$this->config->get('config_stock_checkout') || $this->config->get('config_stock_warning'))) { $this->data['error_warning'] = $this->language->get('error_stock'); } elseif (isset($this->session->data['error'])) { $this->data['error_warning'] = $this->session->data['error']; unset($this->session->data['error']); } else { $this->data['error_warning'] = ''; } if (isset($this->session->data['success'])) { $this->data['success'] = $this->session->data['success']; unset($this->session->data['success']); } else { $this->data['success'] = ''; } $this->data['action'] = $this->url->link('checkout/cart'); if ($this->config->get('config_cart_weight')) { $this->data['weight'] = $this->weight->format($this->cart->getWeight(), $this->config->get('config_weight_class_id'), $this->language->get('decimal_point'), $this->language->get('thousand_point')); } else { $this->data['weight'] = false; } $this->load->model('tool/image'); $this->data['products'] = array(); $products = $this->cart->getProducts(); foreach ($products as $product) { $product_total = 0; foreach ($products as $product_2) { if ($product_2['product_id'] == $product['product_id']) { $product_total += $product_2['quantity']; } } if ($product['minimum'] > $product_total) { $this->data['error_warning'] = sprintf($this->language->get('error_minimum'), $product['name'], $product['minimum']); } if ($product['image']) { $image = $this->model_tool_image->resize($product['image'], $this->config->get('config_image_cart_width'), $this->config->get('config_image_cart_height')); } else { $image = ''; } $option_data = array(); foreach ($product['option'] as $option) { if ($option['type'] != 'file') { $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($option['option_value']) > 20 ? substr($option['option_value'], 0, 20) . '..' : $option['option_value']) ); } else { $this->load->library('encryption'); $encryption = new Encryption($this->config->get('config_encryption')); $file = substr($encryption->decrypt($option['option_value']), 0, strrpos($encryption->decrypt($option['option_value']), '.')); $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($file) > 20 ? substr($file, 0, 20) . '..' : $file) ); } } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $price = $this->currency->format($this->tax->calculate($product['price'], $product['tax_class_id'], $this->config->get('config_tax'))); } else { $price = false; } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $total = $this->currency->format($this->tax->calculate($product['total'], $product['tax_class_id'], $this->config->get('config_tax'))); } else { $total = false; } $this->data['products'][] = array( 'key' => $product['key'], 'thumb' => $image, 'name' => $product['name'], 'model' => $product['model'], 'option' => $option_data, 'quantity' => $product['quantity'], 'stock' => $product['stock'], 'reward' => ($product['reward'] ? sprintf($this->language->get('text_reward'), $product['reward']) : ''), 'price' => $price, 'total' => $total, 'href' => $this->url->link('product/product', 'product_id=' . $product['product_id']) ); } // Gift Voucher $this->data['vouchers'] = array(); if (isset($this->session->data['vouchers']) && $this->session->data['vouchers']) { foreach ($this->session->data['vouchers'] as $key => $voucher) { $this->data['vouchers'][] = array( 'key' => $key, 'description' => $voucher['description'], 'amount' => $this->currency->format($voucher['amount']) ); } } $total_data = array(); $total = 0; $taxes = $this->cart->getTaxes(); if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $this->load->model('setting/extension'); $sort_order = array(); $results = $this->model_setting_extension->getExtensions('total'); foreach ($results as $key => $value) { $sort_order[$key] = $this->config->get($value['code'] . '_sort_order'); } array_multisort($sort_order, SORT_ASC, $results); foreach ($results as $result) { if ($this->config->get($result['code'] . '_status')) { $this->load->model('total/' . $result['code']); $this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes); } } $sort_order = array(); foreach ($total_data as $key => $value) { $sort_order[$key] = $value['sort_order']; } array_multisort($sort_order, SORT_ASC, $total_data); } $this->data['totals'] = $total_data; // Modules $this->data['modules'] = array(); if (isset($results)) { foreach ($results as $result) { if ($this->config->get($result['code'] . '_status') && file_exists(DIR_APPLICATION . 'controller/total/' . $result['code'] . '.php')) { $this->data['modules'][] = $this->getChild('total/' . $result['code']); } } } if (isset($this->session->data['redirect'])) { $this->data['continue'] = $this->session->data['redirect']; unset($this->session->data['redirect']); } else { $this->data['continue'] = $this->url->link('common/home'); } $this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/checkout/cart.tpl')) { $this->template = $this->config->get('config_template') . '/template/checkout/cart.tpl'; } else { $this->template = 'default/template/checkout/cart.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } else { $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_error'] = $this->language->get('text_empty'); $this->data['button_continue'] = $this->language->get('button_continue'); $this->data['continue'] = $this->url->link('common/home'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/error/not_found.tpl')) { $this->template = $this->config->get('config_template') . '/template/error/not_found.tpl'; } else { $this->template = 'default/template/error/not_found.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } } public function update() { $this->language->load('checkout/cart'); $json = array(); if (isset($this->request->post['product_id'])) { $this->load->model('catalog/product'); $product_info = $this->model_catalog_product->getProduct($this->request->post['product_id']); if ($product_info) { if (isset($this->request->post['quantity'])) { $quantity = $this->request->post['quantity']; } else { $quantity = 1; } $product_total = 0; $products = $this->cart->getProducts(); foreach ($products as $product_2) { if ($product_2['product_id'] == $this->request->post['product_id']) { $product_total += $product_2['quantity']; } } if ($product_info['minimum'] > ($product_total + $quantity)) { $json['error']['warning'] = sprintf($this->language->get('error_minimum'), $product_info['name'], $product_info['minimum']); } if (isset($this->request->post['option'])) { $option = array_filter($this->request->post['option']); } else { $option = array(); } $product_options = $this->model_catalog_product->getProductOptions($this->request->post['product_id']); foreach ($product_options as $product_option) { if ($product_option['required'] && (!isset($this->request->post['option'][$product_option['product_option_id']]) || !$this->request->post['option'][$product_option['product_option_id']])) { $json['error'][$product_option['product_option_id']] = sprintf($this->language->get('error_required'), $product_option['name']); } } } if (!isset($json['error'])) { $this->cart->add($this->request->post['product_id'], $quantity, $option); $json['success'] = sprintf($this->language->get('text_success'), $this->url->link('product/product', 'product_id=' . $this->request->post['product_id']), $product_info['name'], $this->url->link('checkout/cart')); unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); } else { $json['redirect'] = str_replace('&', '&', $this->url->link('product/product', 'product_id=' . $this->request->post['product_id'])); } } if (isset($this->request->post['remove'])) { $this->cart->remove($this->request->post['remove']); unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); } if (isset($this->request->post['voucher'])) { if ($this->session->data['vouchers'][$this->request->post['voucher']]) { unset($this->session->data['vouchers'][$this->request->post['voucher']]); } } $this->load->model('tool/image'); $this->data['text_empty'] = $this->language->get('text_empty'); $this->data['button_checkout'] = $this->language->get('button_checkout'); $this->data['button_remove'] = $this->language->get('button_remove'); $this->data['products'] = array(); foreach ($this->cart->getProducts() as $result) { if ($result['image']) { $image = $this->model_tool_image->resize($result['image'], 40, 40); } else { $image = ''; } $option_data = array(); foreach ($result['option'] as $option) { if ($option['type'] != 'file') { $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($option['option_value']) > 20 ? substr($option['option_value'], 0, 20) . '..' : $option['option_value']) ); } else { $this->load->library('encryption'); $encryption = new Encryption($this->config->get('config_encryption')); $file = substr($encryption->decrypt($option['option_value']), 0, strrpos($encryption->decrypt($option['option_value']), '.')); $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($file) > 20 ? substr($file, 0, 20) . '..' : $file) ); } } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax'))); } else { $price = false; } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $total = $this->currency->format($this->tax->calculate($result['total'], $result['tax_class_id'], $this->config->get('config_tax'))); } else { $total = false; } $this->data['products'][] = array( 'key' => $result['key'], 'product_id' => $result['product_id'], 'thumb' => $image, 'name' => $result['name'], 'model' => $result['model'], 'option' => $option_data, 'quantity' => $result['quantity'], 'stock' => $result['stock'], 'price' => $price, 'total' => $total, 'href' => $this->url->link('product/product', 'product_id=' . $result['product_id']) ); } // Gift Voucher $this->data['vouchers'] = array(); if (isset($this->session->data['vouchers']) && $this->session->data['vouchers']) { foreach ($this->session->data['vouchers'] as $key => $voucher) { $this->data['vouchers'][] = array( 'key' => $key, 'description' => $voucher['description'], 'amount' => $this->currency->format($voucher['amount']) ); } } // Calculate Totals $total_data = array(); $total = 0; $taxes = $this->cart->getTaxes(); if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $this->load->model('setting/extension'); $sort_order = array(); $results = $this->model_setting_extension->getExtensions('total'); foreach ($results as $key => $value) { $sort_order[$key] = $this->config->get($value['code'] . '_sort_order'); } array_multisort($sort_order, SORT_ASC, $results); foreach ($results as $result) { if ($this->config->get($result['code'] . '_status')) { $this->load->model('total/' . $result['code']); $this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes); } } $sort_order = array(); foreach ($total_data as $key => $value) { $sort_order[$key] = $value['sort_order']; } array_multisort($sort_order, SORT_ASC, $total_data); } $json['total'] = sprintf($this->language->get('text_items'), $this->cart->countProducts() + (isset($this->session->data['vouchers']) ? count($this->session->data['vouchers']) : 0), $this->currency->format($total)); $this->data['totals'] = $total_data; $this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/cart.tpl')) { $this->template = $this->config->get('config_template') . '/template/common/cart.tpl'; } else { $this->template = 'default/template/common/cart.tpl'; } $json['output'] = $this->render(); $this->response->setOutput(json_encode($json)); } } ?> <?php echo $header; ?> <div class="container"><?php echo $column_left; ?><?php echo $column_right; ?> <div id="content"><?php echo $content_top; ?> <div class="breadcrumb"> <?php foreach ($breadcrumbs as $breadcrumb) { ?> <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a> <?php } ?> </div> <h1><?php echo $heading_title; ?> <?php if ($weight) { ?> (<?php echo $weight; ?>) <?php } ?> </h1> <?php if ($attention) { ?> <div class="attention"><?php echo $attention; ?></div> <?php } ?> <?php if ($success) { ?> <div class="success"><?php echo $success; ?></div> <?php } ?> <?php if ($error_warning) { ?> <div class="warning"><?php echo $error_warning; ?></div> <?php } ?> <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="basket"> <div class="cart-info"> <table> <thead> <tr> <td class="remove"><?php echo $column_remove; ?></td> <td class="image"><?php echo $column_image; ?></td> <td class="name"><?php echo $column_name; ?></td> <td class="model"><?php echo $column_model; ?></td> <td class="quantity"><?php echo $column_quantity; ?></td> <td class="price"><?php echo $column_price; ?></td> <td class="total"><?php echo $column_total; ?></td> </thead> <tbody> <?php foreach ($products as $product) { ?> <tr> <td class="remove"><input type="checkbox" name="remove[]" value="<?php echo $product['key']; ?>" /></td> <td class="image"><?php if ($product['thumb']) { ?> <a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" /></a> <?php } ?></td> <td class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a> <?php if (!$product['stock']) { ?> <span class="stock">***</span> <?php } ?> <div> <?php foreach ($product['option'] as $option) { ?> - <small><?php echo $option['name']; ?>: <?php echo $option['value']; ?></small><br /> <?php } ?> </div> <?php if ($product['reward']) { ?> <small><?php echo $product['reward']; ?></small> <?php } ?></td> <td class="model"><?php echo $product['model']; ?></td> <td class="quantity"><input type="text" name="quantity[<?php echo $product['key']; ?>]" value="<?php echo $product['quantity']; ?>" size="3" /></td> <td class="price"><?php echo $product['price']; ?></td> <td class="total"><?php echo $product['total']; ?></td> </tr> <?php } ?> <?php foreach ($vouchers as $voucher) { ?> <tr> <td class="remove"><input type="checkbox" name="voucher[]" value="<?php echo $voucher['key']; ?>" /></td> <td class="image"></td> <td class="name"><?php echo $voucher['description']; ?></td> <td class="model"></td> <td class="quantity">1</td> <td class="price"><?php echo $voucher['amount']; ?></td> <td class="total"><?php echo $voucher['amount']; ?></td> </tr> <?php } ?> </tbody> </table> </div> </form> <div class="cart-module"> <?php foreach ($modules as $module) { ?> <?php echo $module; ?> <?php } ?> </div> <div class="cart-total"> <table> <?php foreach ($totals as $total) { ?> <tr> <td colspan="5"></td> <td class="right"><b><?php echo $total['title']; ?>:</b></td> <td class="right"><?php echo $total['text']; ?></td> </tr> <?php } ?> </table> </div> <div class="buttons"> <div class="left"><a onclick="$('#basket').submit();" class="button"><span><?php echo $button_update; ?></span></a></div> <div class="right"><a href="<?php echo $checkout; ?>" class="button"><span><?php echo $button_checkout; ?></span></a></div> <div class="center"><a href="<?php echo $continue; ?>" class="button"><span><?php echo $button_shopping; ?></span></a></div> </div> <?php echo $content_bottom; ?></div> </div> <script type="text/javascript"><!-- $('.cart-module .cart-heading').bind('click', function() { if ($(this).hasClass('active')) { $(this).removeClass('active'); } else { $(this).addClass('active'); } $(this).parent().find('.cart-content').slideToggle('slow'); }); //--></script> <?php echo $footer; ?> Надіслати Поділитися на інших сайтах More sharing options... freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 Незнаю я этот php не как не смог ничего изменить плз ПОМОГИТЕ ( Вот коды Cart.php - Cart.tpl Хоть подскажите где что поменять не надо целиком классы вставлять, приложи как аттач. к тому же можно просто указать версию. Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 Лансер я не понемаю, можно пример буду очень блогодарен ( Надіслати Поділитися на інших сайтах More sharing options... tim21701 Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. ок я незнал Надіслати Поділитися на інших сайтах More sharing options... freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 (змінено) catalog/controller/module/cart.php catalog/controller/module/cart.tpl сейчас не могу проверить насколько это работает. посмотри у себя tags.zip Змінено 27 січня 2012 користувачем freelancer Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Добавил эти фаилы в Template/Checkout & Controler/Checkout когда корзина пуста то обычно заходит,а вот когда добавляю товар викидывает эту ошибку: Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Знаю никаму не интересна эта тема но мне очень важна понемаите люди( тут столько профиссионалов которые блин аш опенкарт заного напишут... удилите моеи проблеме хоть 5 минут вашего времени пожалусто( Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 В первую очередь ОГРОМНОЕ СПАСИБО (freelancer)'у за помошь и добавления. Уверен очень многим понадобится это дополнения в корзине,новые поля всегда радуют особено кога очень нужны))) Начнем: скачиваем фаилы выше и заливаем в: Cart.php в >> \catalog\controller\checkout Cart.tpl в >> \catalog\view\theme\ваша тема\template\checkout Идем в >> \catalog\language\russian\checkout >> открываем и встовляем код: $_['text_tags'] = 'МЕТКА'; должно выгледить так: // Column $_['column_remove'] = '<span title="Убрать товар из корзины">Убрать</span>'; $_['column_image'] = 'Фото'; $_['column_name'] = 'Наименование товара'; $_['column_model'] = 'Модель'; $_['text_tags'] = 'МЕТКА'; $_['column_price'] = 'Цена'; $_['column_total'] = 'Итого'; Блин есть же гуд люди и это freelancer -)) Надіслати Поділитися на інших сайтах More sharing options... Створіть аккаунт або увійдіть для коментування Ви повинні бути користувачем, щоб залишити коментар Створити обліковий запис Зареєструйтеся для отримання облікового запису. Це просто! Зареєструвати аккаунт Вхід Уже зареєстровані? Увійдіть тут. Вхід зараз Share More sharing options... Передплатники 0 Перейти до списку тем Зараз на сторінці 0 користувачів Ні користувачів, які переглядиють цю сторінку Последние темы Последние дополнения Последние новости Вся активність Головна Підтримка та відповіді на запитання. Шаблони, дизайн та оформлення магазину Добовляем в корзину Теги товара: (TAG) Покупцям Оплата розширень фізичними особами Оплата розширень юридичними особами Політика повернень Розробникам Регламент розміщення розширень Регламент продажу та підтримки розширень Віртуальний обліковий запис автора Політика просування оголошень API каталогу розширень Вирішення спорів щодо авторських прав Корисна інформація Публічна оферта Політика повернень Політика конфіденційності Платіжна політика Політика передачі особистих даних Політика прозорості Останні розширення Повний пакет SEO Автор: GeekoDev SameSite Session Fix Opencart 3 Автор: web_bond SP Telegram повідомлення FREE Автор: spectre Відключити порожні категорії Автор: spectre SEO Автор тексту категорії / фільтра / блогу з датою оновлення контенту + мікророзмітка Автор: radaevich × Уже зареєстровані? Ввійти Реєстрація Ваші замовлення Назад Придбані модулі та шаблони Ваші рахунки Лист очікувань Альтернативні контакти Форум Новини ocStore Назад Офіційний сайт Демо ocStore 3.0.3.2 Демо ocStore 2.3.0.2.4 Завантажити ocStore Документація Історія версій ocStore Блоги Модулі Шаблони Назад Безкоштовні шаблони Платні шаблони Де купувати модулі? Послуги FAQ OpenCart.Pro Назад Демо Купити Порівняння × Створити... Important Information На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність. Я даю згоду
freelancer Опубліковано: 22 січня 2012 Share Опубліковано: 22 січня 2012 Можно узнать зачем?думаю он имеет ввиду не заменить, а убрать кол-во за ненадобностью, но добавить теги, которые у него используются для другого. но я могу ошибаться Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 22 січня 2012 Автор Share Опубліковано: 22 січня 2012 Потому что у меня на саите должно быть так: Производитель Модель Метка<< ее я переделал на код товара А1-А2 и т.г. Помогить пожалуста ((( Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 25 січня 2012 Автор Share Опубліковано: 25 січня 2012 Незнаю я этот php не как не смог ничего изменить плз ПОМОГИТЕ ( Вот коды Cart.php - Cart.tpl Хоть подскажите где что поменять <?php class ControllerCheckoutCart extends Controller { public function index() { $this->language->load('checkout/cart'); if ($this->request->server['REQUEST_METHOD'] == 'POST') { if (isset($this->request->post['quantity'])) { if (!is_array($this->request->post['quantity'])) { if (isset($this->request->post['option'])) { $option = $this->request->post['option']; } else { $option = array(); } $this->cart->add($this->request->post['product_id'], $this->request->post['quantity'], $option); } else { foreach ($this->request->post['quantity'] as $key => $value) { $this->cart->update($key, $value); } } } if (isset($this->request->post['remove'])) { foreach ($this->request->post['remove'] as $key) { $this->cart->remove($key); } } if (isset($this->request->post['voucher']) && $this->request->post['voucher']) { foreach ($this->request->post['voucher'] as $key) { if (isset($this->session->data['vouchers'][$key])) { unset($this->session->data['vouchers'][$key]); } } } if (isset($this->request->post['redirect'])) { $this->session->data['redirect'] = $this->request->post['redirect']; } if (isset($this->request->post['quantity']) || isset($this->request->post['remove']) || isset($this->request->post['voucher'])) { unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); unset($this->session->data['reward']); $this->redirect($this->url->link('checkout/cart')); } } $this->document->setTitle($this->language->get('heading_title')); $this->data['breadcrumbs'] = array(); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('common/home'), 'text' => $this->language->get('text_home'), 'separator' => false ); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('checkout/cart'), 'text' => $this->language->get('heading_title'), 'separator' => $this->language->get('text_separator') ); if ($this->cart->hasProducts() || (isset($this->session->data['vouchers']) && $this->session->data['vouchers'])) { $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_select'] = $this->language->get('text_select'); $this->data['text_weight'] = $this->language->get('text_weight'); $this->data['column_remove'] = $this->language->get('column_remove'); $this->data['column_image'] = $this->language->get('column_image'); $this->data['column_name'] = $this->language->get('column_name'); $this->data['column_model'] = $this->language->get('column_model'); $this->data['column_quantity'] = $this->language->get('column_quantity'); $this->data['column_price'] = $this->language->get('column_price'); $this->data['column_total'] = $this->language->get('column_total'); $this->data['button_update'] = $this->language->get('button_update'); $this->data['button_shopping'] = $this->language->get('button_shopping'); $this->data['button_checkout'] = $this->language->get('button_checkout'); if ($this->config->get('config_customer_price') && !$this->customer->isLogged()) { $this->data['attention'] = sprintf($this->language->get('text_login'), $this->url->link('account/login'), $this->url->link('account/register')); } else { $this->data['attention'] = ''; } if (!$this->cart->hasStock() && (!$this->config->get('config_stock_checkout') || $this->config->get('config_stock_warning'))) { $this->data['error_warning'] = $this->language->get('error_stock'); } elseif (isset($this->session->data['error'])) { $this->data['error_warning'] = $this->session->data['error']; unset($this->session->data['error']); } else { $this->data['error_warning'] = ''; } if (isset($this->session->data['success'])) { $this->data['success'] = $this->session->data['success']; unset($this->session->data['success']); } else { $this->data['success'] = ''; } $this->data['action'] = $this->url->link('checkout/cart'); if ($this->config->get('config_cart_weight')) { $this->data['weight'] = $this->weight->format($this->cart->getWeight(), $this->config->get('config_weight_class_id'), $this->language->get('decimal_point'), $this->language->get('thousand_point')); } else { $this->data['weight'] = false; } $this->load->model('tool/image'); $this->data['products'] = array(); $products = $this->cart->getProducts(); foreach ($products as $product) { $product_total = 0; foreach ($products as $product_2) { if ($product_2['product_id'] == $product['product_id']) { $product_total += $product_2['quantity']; } } if ($product['minimum'] > $product_total) { $this->data['error_warning'] = sprintf($this->language->get('error_minimum'), $product['name'], $product['minimum']); } if ($product['image']) { $image = $this->model_tool_image->resize($product['image'], $this->config->get('config_image_cart_width'), $this->config->get('config_image_cart_height')); } else { $image = ''; } $option_data = array(); foreach ($product['option'] as $option) { if ($option['type'] != 'file') { $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($option['option_value']) > 20 ? substr($option['option_value'], 0, 20) . '..' : $option['option_value']) ); } else { $this->load->library('encryption'); $encryption = new Encryption($this->config->get('config_encryption')); $file = substr($encryption->decrypt($option['option_value']), 0, strrpos($encryption->decrypt($option['option_value']), '.')); $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($file) > 20 ? substr($file, 0, 20) . '..' : $file) ); } } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $price = $this->currency->format($this->tax->calculate($product['price'], $product['tax_class_id'], $this->config->get('config_tax'))); } else { $price = false; } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $total = $this->currency->format($this->tax->calculate($product['total'], $product['tax_class_id'], $this->config->get('config_tax'))); } else { $total = false; } $this->data['products'][] = array( 'key' => $product['key'], 'thumb' => $image, 'name' => $product['name'], 'model' => $product['model'], 'option' => $option_data, 'quantity' => $product['quantity'], 'stock' => $product['stock'], 'reward' => ($product['reward'] ? sprintf($this->language->get('text_reward'), $product['reward']) : ''), 'price' => $price, 'total' => $total, 'href' => $this->url->link('product/product', 'product_id=' . $product['product_id']) ); } // Gift Voucher $this->data['vouchers'] = array(); if (isset($this->session->data['vouchers']) && $this->session->data['vouchers']) { foreach ($this->session->data['vouchers'] as $key => $voucher) { $this->data['vouchers'][] = array( 'key' => $key, 'description' => $voucher['description'], 'amount' => $this->currency->format($voucher['amount']) ); } } $total_data = array(); $total = 0; $taxes = $this->cart->getTaxes(); if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $this->load->model('setting/extension'); $sort_order = array(); $results = $this->model_setting_extension->getExtensions('total'); foreach ($results as $key => $value) { $sort_order[$key] = $this->config->get($value['code'] . '_sort_order'); } array_multisort($sort_order, SORT_ASC, $results); foreach ($results as $result) { if ($this->config->get($result['code'] . '_status')) { $this->load->model('total/' . $result['code']); $this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes); } } $sort_order = array(); foreach ($total_data as $key => $value) { $sort_order[$key] = $value['sort_order']; } array_multisort($sort_order, SORT_ASC, $total_data); } $this->data['totals'] = $total_data; // Modules $this->data['modules'] = array(); if (isset($results)) { foreach ($results as $result) { if ($this->config->get($result['code'] . '_status') && file_exists(DIR_APPLICATION . 'controller/total/' . $result['code'] . '.php')) { $this->data['modules'][] = $this->getChild('total/' . $result['code']); } } } if (isset($this->session->data['redirect'])) { $this->data['continue'] = $this->session->data['redirect']; unset($this->session->data['redirect']); } else { $this->data['continue'] = $this->url->link('common/home'); } $this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/checkout/cart.tpl')) { $this->template = $this->config->get('config_template') . '/template/checkout/cart.tpl'; } else { $this->template = 'default/template/checkout/cart.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } else { $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_error'] = $this->language->get('text_empty'); $this->data['button_continue'] = $this->language->get('button_continue'); $this->data['continue'] = $this->url->link('common/home'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/error/not_found.tpl')) { $this->template = $this->config->get('config_template') . '/template/error/not_found.tpl'; } else { $this->template = 'default/template/error/not_found.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } } public function update() { $this->language->load('checkout/cart'); $json = array(); if (isset($this->request->post['product_id'])) { $this->load->model('catalog/product'); $product_info = $this->model_catalog_product->getProduct($this->request->post['product_id']); if ($product_info) { if (isset($this->request->post['quantity'])) { $quantity = $this->request->post['quantity']; } else { $quantity = 1; } $product_total = 0; $products = $this->cart->getProducts(); foreach ($products as $product_2) { if ($product_2['product_id'] == $this->request->post['product_id']) { $product_total += $product_2['quantity']; } } if ($product_info['minimum'] > ($product_total + $quantity)) { $json['error']['warning'] = sprintf($this->language->get('error_minimum'), $product_info['name'], $product_info['minimum']); } if (isset($this->request->post['option'])) { $option = array_filter($this->request->post['option']); } else { $option = array(); } $product_options = $this->model_catalog_product->getProductOptions($this->request->post['product_id']); foreach ($product_options as $product_option) { if ($product_option['required'] && (!isset($this->request->post['option'][$product_option['product_option_id']]) || !$this->request->post['option'][$product_option['product_option_id']])) { $json['error'][$product_option['product_option_id']] = sprintf($this->language->get('error_required'), $product_option['name']); } } } if (!isset($json['error'])) { $this->cart->add($this->request->post['product_id'], $quantity, $option); $json['success'] = sprintf($this->language->get('text_success'), $this->url->link('product/product', 'product_id=' . $this->request->post['product_id']), $product_info['name'], $this->url->link('checkout/cart')); unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); } else { $json['redirect'] = str_replace('&', '&', $this->url->link('product/product', 'product_id=' . $this->request->post['product_id'])); } } if (isset($this->request->post['remove'])) { $this->cart->remove($this->request->post['remove']); unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); } if (isset($this->request->post['voucher'])) { if ($this->session->data['vouchers'][$this->request->post['voucher']]) { unset($this->session->data['vouchers'][$this->request->post['voucher']]); } } $this->load->model('tool/image'); $this->data['text_empty'] = $this->language->get('text_empty'); $this->data['button_checkout'] = $this->language->get('button_checkout'); $this->data['button_remove'] = $this->language->get('button_remove'); $this->data['products'] = array(); foreach ($this->cart->getProducts() as $result) { if ($result['image']) { $image = $this->model_tool_image->resize($result['image'], 40, 40); } else { $image = ''; } $option_data = array(); foreach ($result['option'] as $option) { if ($option['type'] != 'file') { $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($option['option_value']) > 20 ? substr($option['option_value'], 0, 20) . '..' : $option['option_value']) ); } else { $this->load->library('encryption'); $encryption = new Encryption($this->config->get('config_encryption')); $file = substr($encryption->decrypt($option['option_value']), 0, strrpos($encryption->decrypt($option['option_value']), '.')); $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($file) > 20 ? substr($file, 0, 20) . '..' : $file) ); } } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax'))); } else { $price = false; } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $total = $this->currency->format($this->tax->calculate($result['total'], $result['tax_class_id'], $this->config->get('config_tax'))); } else { $total = false; } $this->data['products'][] = array( 'key' => $result['key'], 'product_id' => $result['product_id'], 'thumb' => $image, 'name' => $result['name'], 'model' => $result['model'], 'option' => $option_data, 'quantity' => $result['quantity'], 'stock' => $result['stock'], 'price' => $price, 'total' => $total, 'href' => $this->url->link('product/product', 'product_id=' . $result['product_id']) ); } // Gift Voucher $this->data['vouchers'] = array(); if (isset($this->session->data['vouchers']) && $this->session->data['vouchers']) { foreach ($this->session->data['vouchers'] as $key => $voucher) { $this->data['vouchers'][] = array( 'key' => $key, 'description' => $voucher['description'], 'amount' => $this->currency->format($voucher['amount']) ); } } // Calculate Totals $total_data = array(); $total = 0; $taxes = $this->cart->getTaxes(); if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $this->load->model('setting/extension'); $sort_order = array(); $results = $this->model_setting_extension->getExtensions('total'); foreach ($results as $key => $value) { $sort_order[$key] = $this->config->get($value['code'] . '_sort_order'); } array_multisort($sort_order, SORT_ASC, $results); foreach ($results as $result) { if ($this->config->get($result['code'] . '_status')) { $this->load->model('total/' . $result['code']); $this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes); } } $sort_order = array(); foreach ($total_data as $key => $value) { $sort_order[$key] = $value['sort_order']; } array_multisort($sort_order, SORT_ASC, $total_data); } $json['total'] = sprintf($this->language->get('text_items'), $this->cart->countProducts() + (isset($this->session->data['vouchers']) ? count($this->session->data['vouchers']) : 0), $this->currency->format($total)); $this->data['totals'] = $total_data; $this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/cart.tpl')) { $this->template = $this->config->get('config_template') . '/template/common/cart.tpl'; } else { $this->template = 'default/template/common/cart.tpl'; } $json['output'] = $this->render(); $this->response->setOutput(json_encode($json)); } } ?> <?php echo $header; ?> <div class="container"><?php echo $column_left; ?><?php echo $column_right; ?> <div id="content"><?php echo $content_top; ?> <div class="breadcrumb"> <?php foreach ($breadcrumbs as $breadcrumb) { ?> <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a> <?php } ?> </div> <h1><?php echo $heading_title; ?> <?php if ($weight) { ?> (<?php echo $weight; ?>) <?php } ?> </h1> <?php if ($attention) { ?> <div class="attention"><?php echo $attention; ?></div> <?php } ?> <?php if ($success) { ?> <div class="success"><?php echo $success; ?></div> <?php } ?> <?php if ($error_warning) { ?> <div class="warning"><?php echo $error_warning; ?></div> <?php } ?> <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="basket"> <div class="cart-info"> <table> <thead> <tr> <td class="remove"><?php echo $column_remove; ?></td> <td class="image"><?php echo $column_image; ?></td> <td class="name"><?php echo $column_name; ?></td> <td class="model"><?php echo $column_model; ?></td> <td class="quantity"><?php echo $column_quantity; ?></td> <td class="price"><?php echo $column_price; ?></td> <td class="total"><?php echo $column_total; ?></td> </thead> <tbody> <?php foreach ($products as $product) { ?> <tr> <td class="remove"><input type="checkbox" name="remove[]" value="<?php echo $product['key']; ?>" /></td> <td class="image"><?php if ($product['thumb']) { ?> <a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" /></a> <?php } ?></td> <td class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a> <?php if (!$product['stock']) { ?> <span class="stock">***</span> <?php } ?> <div> <?php foreach ($product['option'] as $option) { ?> - <small><?php echo $option['name']; ?>: <?php echo $option['value']; ?></small><br /> <?php } ?> </div> <?php if ($product['reward']) { ?> <small><?php echo $product['reward']; ?></small> <?php } ?></td> <td class="model"><?php echo $product['model']; ?></td> <td class="quantity"><input type="text" name="quantity[<?php echo $product['key']; ?>]" value="<?php echo $product['quantity']; ?>" size="3" /></td> <td class="price"><?php echo $product['price']; ?></td> <td class="total"><?php echo $product['total']; ?></td> </tr> <?php } ?> <?php foreach ($vouchers as $voucher) { ?> <tr> <td class="remove"><input type="checkbox" name="voucher[]" value="<?php echo $voucher['key']; ?>" /></td> <td class="image"></td> <td class="name"><?php echo $voucher['description']; ?></td> <td class="model"></td> <td class="quantity">1</td> <td class="price"><?php echo $voucher['amount']; ?></td> <td class="total"><?php echo $voucher['amount']; ?></td> </tr> <?php } ?> </tbody> </table> </div> </form> <div class="cart-module"> <?php foreach ($modules as $module) { ?> <?php echo $module; ?> <?php } ?> </div> <div class="cart-total"> <table> <?php foreach ($totals as $total) { ?> <tr> <td colspan="5"></td> <td class="right"><b><?php echo $total['title']; ?>:</b></td> <td class="right"><?php echo $total['text']; ?></td> </tr> <?php } ?> </table> </div> <div class="buttons"> <div class="left"><a onclick="$('#basket').submit();" class="button"><span><?php echo $button_update; ?></span></a></div> <div class="right"><a href="<?php echo $checkout; ?>" class="button"><span><?php echo $button_checkout; ?></span></a></div> <div class="center"><a href="<?php echo $continue; ?>" class="button"><span><?php echo $button_shopping; ?></span></a></div> </div> <?php echo $content_bottom; ?></div> </div> <script type="text/javascript"><!-- $('.cart-module .cart-heading').bind('click', function() { if ($(this).hasClass('active')) { $(this).removeClass('active'); } else { $(this).addClass('active'); } $(this).parent().find('.cart-content').slideToggle('slow'); }); //--></script> <?php echo $footer; ?> Надіслати Поділитися на інших сайтах More sharing options... freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 Незнаю я этот php не как не смог ничего изменить плз ПОМОГИТЕ ( Вот коды Cart.php - Cart.tpl Хоть подскажите где что поменять не надо целиком классы вставлять, приложи как аттач. к тому же можно просто указать версию. Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 Лансер я не понемаю, можно пример буду очень блогодарен ( Надіслати Поділитися на інших сайтах More sharing options... tim21701 Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. ок я незнал Надіслати Поділитися на інших сайтах More sharing options... freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 (змінено) catalog/controller/module/cart.php catalog/controller/module/cart.tpl сейчас не могу проверить насколько это работает. посмотри у себя tags.zip Змінено 27 січня 2012 користувачем freelancer Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Добавил эти фаилы в Template/Checkout & Controler/Checkout когда корзина пуста то обычно заходит,а вот когда добавляю товар викидывает эту ошибку: Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Знаю никаму не интересна эта тема но мне очень важна понемаите люди( тут столько профиссионалов которые блин аш опенкарт заного напишут... удилите моеи проблеме хоть 5 минут вашего времени пожалусто( Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 В первую очередь ОГРОМНОЕ СПАСИБО (freelancer)'у за помошь и добавления. Уверен очень многим понадобится это дополнения в корзине,новые поля всегда радуют особено кога очень нужны))) Начнем: скачиваем фаилы выше и заливаем в: Cart.php в >> \catalog\controller\checkout Cart.tpl в >> \catalog\view\theme\ваша тема\template\checkout Идем в >> \catalog\language\russian\checkout >> открываем и встовляем код: $_['text_tags'] = 'МЕТКА'; должно выгледить так: // Column $_['column_remove'] = '<span title="Убрать товар из корзины">Убрать</span>'; $_['column_image'] = 'Фото'; $_['column_name'] = 'Наименование товара'; $_['column_model'] = 'Модель'; $_['text_tags'] = 'МЕТКА'; $_['column_price'] = 'Цена'; $_['column_total'] = 'Итого'; Блин есть же гуд люди и это freelancer -)) Надіслати Поділитися на інших сайтах More sharing options... Створіть аккаунт або увійдіть для коментування Ви повинні бути користувачем, щоб залишити коментар Створити обліковий запис Зареєструйтеся для отримання облікового запису. Це просто! Зареєструвати аккаунт Вхід Уже зареєстровані? Увійдіть тут. Вхід зараз Share More sharing options... Передплатники 0 Перейти до списку тем Зараз на сторінці 0 користувачів Ні користувачів, які переглядиють цю сторінку Последние темы Последние дополнения Последние новости Вся активність Головна Підтримка та відповіді на запитання. Шаблони, дизайн та оформлення магазину Добовляем в корзину Теги товара: (TAG) Покупцям Оплата розширень фізичними особами Оплата розширень юридичними особами Політика повернень Розробникам Регламент розміщення розширень Регламент продажу та підтримки розширень Віртуальний обліковий запис автора Політика просування оголошень API каталогу розширень Вирішення спорів щодо авторських прав Корисна інформація Публічна оферта Політика повернень Політика конфіденційності Платіжна політика Політика передачі особистих даних Політика прозорості Останні розширення Повний пакет SEO Автор: GeekoDev SameSite Session Fix Opencart 3 Автор: web_bond SP Telegram повідомлення FREE Автор: spectre Відключити порожні категорії Автор: spectre SEO Автор тексту категорії / фільтра / блогу з датою оновлення контенту + мікророзмітка Автор: radaevich
ELITE Опубліковано: 22 січня 2012 Автор Share Опубліковано: 22 січня 2012 Потому что у меня на саите должно быть так: Производитель Модель Метка<< ее я переделал на код товара А1-А2 и т.г. Помогить пожалуста ((( Надіслати Поділитися на інших сайтах More sharing options...
ELITE Опубліковано: 25 січня 2012 Автор Share Опубліковано: 25 січня 2012 Незнаю я этот php не как не смог ничего изменить плз ПОМОГИТЕ ( Вот коды Cart.php - Cart.tpl Хоть подскажите где что поменять <?php class ControllerCheckoutCart extends Controller { public function index() { $this->language->load('checkout/cart'); if ($this->request->server['REQUEST_METHOD'] == 'POST') { if (isset($this->request->post['quantity'])) { if (!is_array($this->request->post['quantity'])) { if (isset($this->request->post['option'])) { $option = $this->request->post['option']; } else { $option = array(); } $this->cart->add($this->request->post['product_id'], $this->request->post['quantity'], $option); } else { foreach ($this->request->post['quantity'] as $key => $value) { $this->cart->update($key, $value); } } } if (isset($this->request->post['remove'])) { foreach ($this->request->post['remove'] as $key) { $this->cart->remove($key); } } if (isset($this->request->post['voucher']) && $this->request->post['voucher']) { foreach ($this->request->post['voucher'] as $key) { if (isset($this->session->data['vouchers'][$key])) { unset($this->session->data['vouchers'][$key]); } } } if (isset($this->request->post['redirect'])) { $this->session->data['redirect'] = $this->request->post['redirect']; } if (isset($this->request->post['quantity']) || isset($this->request->post['remove']) || isset($this->request->post['voucher'])) { unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); unset($this->session->data['reward']); $this->redirect($this->url->link('checkout/cart')); } } $this->document->setTitle($this->language->get('heading_title')); $this->data['breadcrumbs'] = array(); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('common/home'), 'text' => $this->language->get('text_home'), 'separator' => false ); $this->data['breadcrumbs'][] = array( 'href' => $this->url->link('checkout/cart'), 'text' => $this->language->get('heading_title'), 'separator' => $this->language->get('text_separator') ); if ($this->cart->hasProducts() || (isset($this->session->data['vouchers']) && $this->session->data['vouchers'])) { $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_select'] = $this->language->get('text_select'); $this->data['text_weight'] = $this->language->get('text_weight'); $this->data['column_remove'] = $this->language->get('column_remove'); $this->data['column_image'] = $this->language->get('column_image'); $this->data['column_name'] = $this->language->get('column_name'); $this->data['column_model'] = $this->language->get('column_model'); $this->data['column_quantity'] = $this->language->get('column_quantity'); $this->data['column_price'] = $this->language->get('column_price'); $this->data['column_total'] = $this->language->get('column_total'); $this->data['button_update'] = $this->language->get('button_update'); $this->data['button_shopping'] = $this->language->get('button_shopping'); $this->data['button_checkout'] = $this->language->get('button_checkout'); if ($this->config->get('config_customer_price') && !$this->customer->isLogged()) { $this->data['attention'] = sprintf($this->language->get('text_login'), $this->url->link('account/login'), $this->url->link('account/register')); } else { $this->data['attention'] = ''; } if (!$this->cart->hasStock() && (!$this->config->get('config_stock_checkout') || $this->config->get('config_stock_warning'))) { $this->data['error_warning'] = $this->language->get('error_stock'); } elseif (isset($this->session->data['error'])) { $this->data['error_warning'] = $this->session->data['error']; unset($this->session->data['error']); } else { $this->data['error_warning'] = ''; } if (isset($this->session->data['success'])) { $this->data['success'] = $this->session->data['success']; unset($this->session->data['success']); } else { $this->data['success'] = ''; } $this->data['action'] = $this->url->link('checkout/cart'); if ($this->config->get('config_cart_weight')) { $this->data['weight'] = $this->weight->format($this->cart->getWeight(), $this->config->get('config_weight_class_id'), $this->language->get('decimal_point'), $this->language->get('thousand_point')); } else { $this->data['weight'] = false; } $this->load->model('tool/image'); $this->data['products'] = array(); $products = $this->cart->getProducts(); foreach ($products as $product) { $product_total = 0; foreach ($products as $product_2) { if ($product_2['product_id'] == $product['product_id']) { $product_total += $product_2['quantity']; } } if ($product['minimum'] > $product_total) { $this->data['error_warning'] = sprintf($this->language->get('error_minimum'), $product['name'], $product['minimum']); } if ($product['image']) { $image = $this->model_tool_image->resize($product['image'], $this->config->get('config_image_cart_width'), $this->config->get('config_image_cart_height')); } else { $image = ''; } $option_data = array(); foreach ($product['option'] as $option) { if ($option['type'] != 'file') { $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($option['option_value']) > 20 ? substr($option['option_value'], 0, 20) . '..' : $option['option_value']) ); } else { $this->load->library('encryption'); $encryption = new Encryption($this->config->get('config_encryption')); $file = substr($encryption->decrypt($option['option_value']), 0, strrpos($encryption->decrypt($option['option_value']), '.')); $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($file) > 20 ? substr($file, 0, 20) . '..' : $file) ); } } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $price = $this->currency->format($this->tax->calculate($product['price'], $product['tax_class_id'], $this->config->get('config_tax'))); } else { $price = false; } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $total = $this->currency->format($this->tax->calculate($product['total'], $product['tax_class_id'], $this->config->get('config_tax'))); } else { $total = false; } $this->data['products'][] = array( 'key' => $product['key'], 'thumb' => $image, 'name' => $product['name'], 'model' => $product['model'], 'option' => $option_data, 'quantity' => $product['quantity'], 'stock' => $product['stock'], 'reward' => ($product['reward'] ? sprintf($this->language->get('text_reward'), $product['reward']) : ''), 'price' => $price, 'total' => $total, 'href' => $this->url->link('product/product', 'product_id=' . $product['product_id']) ); } // Gift Voucher $this->data['vouchers'] = array(); if (isset($this->session->data['vouchers']) && $this->session->data['vouchers']) { foreach ($this->session->data['vouchers'] as $key => $voucher) { $this->data['vouchers'][] = array( 'key' => $key, 'description' => $voucher['description'], 'amount' => $this->currency->format($voucher['amount']) ); } } $total_data = array(); $total = 0; $taxes = $this->cart->getTaxes(); if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $this->load->model('setting/extension'); $sort_order = array(); $results = $this->model_setting_extension->getExtensions('total'); foreach ($results as $key => $value) { $sort_order[$key] = $this->config->get($value['code'] . '_sort_order'); } array_multisort($sort_order, SORT_ASC, $results); foreach ($results as $result) { if ($this->config->get($result['code'] . '_status')) { $this->load->model('total/' . $result['code']); $this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes); } } $sort_order = array(); foreach ($total_data as $key => $value) { $sort_order[$key] = $value['sort_order']; } array_multisort($sort_order, SORT_ASC, $total_data); } $this->data['totals'] = $total_data; // Modules $this->data['modules'] = array(); if (isset($results)) { foreach ($results as $result) { if ($this->config->get($result['code'] . '_status') && file_exists(DIR_APPLICATION . 'controller/total/' . $result['code'] . '.php')) { $this->data['modules'][] = $this->getChild('total/' . $result['code']); } } } if (isset($this->session->data['redirect'])) { $this->data['continue'] = $this->session->data['redirect']; unset($this->session->data['redirect']); } else { $this->data['continue'] = $this->url->link('common/home'); } $this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/checkout/cart.tpl')) { $this->template = $this->config->get('config_template') . '/template/checkout/cart.tpl'; } else { $this->template = 'default/template/checkout/cart.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } else { $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_error'] = $this->language->get('text_empty'); $this->data['button_continue'] = $this->language->get('button_continue'); $this->data['continue'] = $this->url->link('common/home'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/error/not_found.tpl')) { $this->template = $this->config->get('config_template') . '/template/error/not_found.tpl'; } else { $this->template = 'default/template/error/not_found.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } } public function update() { $this->language->load('checkout/cart'); $json = array(); if (isset($this->request->post['product_id'])) { $this->load->model('catalog/product'); $product_info = $this->model_catalog_product->getProduct($this->request->post['product_id']); if ($product_info) { if (isset($this->request->post['quantity'])) { $quantity = $this->request->post['quantity']; } else { $quantity = 1; } $product_total = 0; $products = $this->cart->getProducts(); foreach ($products as $product_2) { if ($product_2['product_id'] == $this->request->post['product_id']) { $product_total += $product_2['quantity']; } } if ($product_info['minimum'] > ($product_total + $quantity)) { $json['error']['warning'] = sprintf($this->language->get('error_minimum'), $product_info['name'], $product_info['minimum']); } if (isset($this->request->post['option'])) { $option = array_filter($this->request->post['option']); } else { $option = array(); } $product_options = $this->model_catalog_product->getProductOptions($this->request->post['product_id']); foreach ($product_options as $product_option) { if ($product_option['required'] && (!isset($this->request->post['option'][$product_option['product_option_id']]) || !$this->request->post['option'][$product_option['product_option_id']])) { $json['error'][$product_option['product_option_id']] = sprintf($this->language->get('error_required'), $product_option['name']); } } } if (!isset($json['error'])) { $this->cart->add($this->request->post['product_id'], $quantity, $option); $json['success'] = sprintf($this->language->get('text_success'), $this->url->link('product/product', 'product_id=' . $this->request->post['product_id']), $product_info['name'], $this->url->link('checkout/cart')); unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); } else { $json['redirect'] = str_replace('&', '&', $this->url->link('product/product', 'product_id=' . $this->request->post['product_id'])); } } if (isset($this->request->post['remove'])) { $this->cart->remove($this->request->post['remove']); unset($this->session->data['shipping_methods']); unset($this->session->data['shipping_method']); unset($this->session->data['payment_methods']); unset($this->session->data['payment_method']); } if (isset($this->request->post['voucher'])) { if ($this->session->data['vouchers'][$this->request->post['voucher']]) { unset($this->session->data['vouchers'][$this->request->post['voucher']]); } } $this->load->model('tool/image'); $this->data['text_empty'] = $this->language->get('text_empty'); $this->data['button_checkout'] = $this->language->get('button_checkout'); $this->data['button_remove'] = $this->language->get('button_remove'); $this->data['products'] = array(); foreach ($this->cart->getProducts() as $result) { if ($result['image']) { $image = $this->model_tool_image->resize($result['image'], 40, 40); } else { $image = ''; } $option_data = array(); foreach ($result['option'] as $option) { if ($option['type'] != 'file') { $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($option['option_value']) > 20 ? substr($option['option_value'], 0, 20) . '..' : $option['option_value']) ); } else { $this->load->library('encryption'); $encryption = new Encryption($this->config->get('config_encryption')); $file = substr($encryption->decrypt($option['option_value']), 0, strrpos($encryption->decrypt($option['option_value']), '.')); $option_data[] = array( 'name' => $option['name'], 'value' => (strlen($file) > 20 ? substr($file, 0, 20) . '..' : $file) ); } } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax'))); } else { $price = false; } if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $total = $this->currency->format($this->tax->calculate($result['total'], $result['tax_class_id'], $this->config->get('config_tax'))); } else { $total = false; } $this->data['products'][] = array( 'key' => $result['key'], 'product_id' => $result['product_id'], 'thumb' => $image, 'name' => $result['name'], 'model' => $result['model'], 'option' => $option_data, 'quantity' => $result['quantity'], 'stock' => $result['stock'], 'price' => $price, 'total' => $total, 'href' => $this->url->link('product/product', 'product_id=' . $result['product_id']) ); } // Gift Voucher $this->data['vouchers'] = array(); if (isset($this->session->data['vouchers']) && $this->session->data['vouchers']) { foreach ($this->session->data['vouchers'] as $key => $voucher) { $this->data['vouchers'][] = array( 'key' => $key, 'description' => $voucher['description'], 'amount' => $this->currency->format($voucher['amount']) ); } } // Calculate Totals $total_data = array(); $total = 0; $taxes = $this->cart->getTaxes(); if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) { $this->load->model('setting/extension'); $sort_order = array(); $results = $this->model_setting_extension->getExtensions('total'); foreach ($results as $key => $value) { $sort_order[$key] = $this->config->get($value['code'] . '_sort_order'); } array_multisort($sort_order, SORT_ASC, $results); foreach ($results as $result) { if ($this->config->get($result['code'] . '_status')) { $this->load->model('total/' . $result['code']); $this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes); } } $sort_order = array(); foreach ($total_data as $key => $value) { $sort_order[$key] = $value['sort_order']; } array_multisort($sort_order, SORT_ASC, $total_data); } $json['total'] = sprintf($this->language->get('text_items'), $this->cart->countProducts() + (isset($this->session->data['vouchers']) ? count($this->session->data['vouchers']) : 0), $this->currency->format($total)); $this->data['totals'] = $total_data; $this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/cart.tpl')) { $this->template = $this->config->get('config_template') . '/template/common/cart.tpl'; } else { $this->template = 'default/template/common/cart.tpl'; } $json['output'] = $this->render(); $this->response->setOutput(json_encode($json)); } } ?> <?php echo $header; ?> <div class="container"><?php echo $column_left; ?><?php echo $column_right; ?> <div id="content"><?php echo $content_top; ?> <div class="breadcrumb"> <?php foreach ($breadcrumbs as $breadcrumb) { ?> <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a> <?php } ?> </div> <h1><?php echo $heading_title; ?> <?php if ($weight) { ?> (<?php echo $weight; ?>) <?php } ?> </h1> <?php if ($attention) { ?> <div class="attention"><?php echo $attention; ?></div> <?php } ?> <?php if ($success) { ?> <div class="success"><?php echo $success; ?></div> <?php } ?> <?php if ($error_warning) { ?> <div class="warning"><?php echo $error_warning; ?></div> <?php } ?> <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="basket"> <div class="cart-info"> <table> <thead> <tr> <td class="remove"><?php echo $column_remove; ?></td> <td class="image"><?php echo $column_image; ?></td> <td class="name"><?php echo $column_name; ?></td> <td class="model"><?php echo $column_model; ?></td> <td class="quantity"><?php echo $column_quantity; ?></td> <td class="price"><?php echo $column_price; ?></td> <td class="total"><?php echo $column_total; ?></td> </thead> <tbody> <?php foreach ($products as $product) { ?> <tr> <td class="remove"><input type="checkbox" name="remove[]" value="<?php echo $product['key']; ?>" /></td> <td class="image"><?php if ($product['thumb']) { ?> <a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" /></a> <?php } ?></td> <td class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a> <?php if (!$product['stock']) { ?> <span class="stock">***</span> <?php } ?> <div> <?php foreach ($product['option'] as $option) { ?> - <small><?php echo $option['name']; ?>: <?php echo $option['value']; ?></small><br /> <?php } ?> </div> <?php if ($product['reward']) { ?> <small><?php echo $product['reward']; ?></small> <?php } ?></td> <td class="model"><?php echo $product['model']; ?></td> <td class="quantity"><input type="text" name="quantity[<?php echo $product['key']; ?>]" value="<?php echo $product['quantity']; ?>" size="3" /></td> <td class="price"><?php echo $product['price']; ?></td> <td class="total"><?php echo $product['total']; ?></td> </tr> <?php } ?> <?php foreach ($vouchers as $voucher) { ?> <tr> <td class="remove"><input type="checkbox" name="voucher[]" value="<?php echo $voucher['key']; ?>" /></td> <td class="image"></td> <td class="name"><?php echo $voucher['description']; ?></td> <td class="model"></td> <td class="quantity">1</td> <td class="price"><?php echo $voucher['amount']; ?></td> <td class="total"><?php echo $voucher['amount']; ?></td> </tr> <?php } ?> </tbody> </table> </div> </form> <div class="cart-module"> <?php foreach ($modules as $module) { ?> <?php echo $module; ?> <?php } ?> </div> <div class="cart-total"> <table> <?php foreach ($totals as $total) { ?> <tr> <td colspan="5"></td> <td class="right"><b><?php echo $total['title']; ?>:</b></td> <td class="right"><?php echo $total['text']; ?></td> </tr> <?php } ?> </table> </div> <div class="buttons"> <div class="left"><a onclick="$('#basket').submit();" class="button"><span><?php echo $button_update; ?></span></a></div> <div class="right"><a href="<?php echo $checkout; ?>" class="button"><span><?php echo $button_checkout; ?></span></a></div> <div class="center"><a href="<?php echo $continue; ?>" class="button"><span><?php echo $button_shopping; ?></span></a></div> </div> <?php echo $content_bottom; ?></div> </div> <script type="text/javascript"><!-- $('.cart-module .cart-heading').bind('click', function() { if ($(this).hasClass('active')) { $(this).removeClass('active'); } else { $(this).addClass('active'); } $(this).parent().find('.cart-content').slideToggle('slow'); }); //--></script> <?php echo $footer; ?> Надіслати Поділитися на інших сайтах More sharing options...
freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 Незнаю я этот php не как не смог ничего изменить плз ПОМОГИТЕ ( Вот коды Cart.php - Cart.tpl Хоть подскажите где что поменять не надо целиком классы вставлять, приложи как аттач. к тому же можно просто указать версию. Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 Лансер я не понемаю, можно пример буду очень блогодарен ( Надіслати Поділитися на інших сайтах More sharing options... tim21701 Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. ок я незнал Надіслати Поділитися на інших сайтах More sharing options... freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 (змінено) catalog/controller/module/cart.php catalog/controller/module/cart.tpl сейчас не могу проверить насколько это работает. посмотри у себя tags.zip Змінено 27 січня 2012 користувачем freelancer Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Добавил эти фаилы в Template/Checkout & Controler/Checkout когда корзина пуста то обычно заходит,а вот когда добавляю товар викидывает эту ошибку: Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Знаю никаму не интересна эта тема но мне очень важна понемаите люди( тут столько профиссионалов которые блин аш опенкарт заного напишут... удилите моеи проблеме хоть 5 минут вашего времени пожалусто( Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 В первую очередь ОГРОМНОЕ СПАСИБО (freelancer)'у за помошь и добавления. Уверен очень многим понадобится это дополнения в корзине,новые поля всегда радуют особено кога очень нужны))) Начнем: скачиваем фаилы выше и заливаем в: Cart.php в >> \catalog\controller\checkout Cart.tpl в >> \catalog\view\theme\ваша тема\template\checkout Идем в >> \catalog\language\russian\checkout >> открываем и встовляем код: $_['text_tags'] = 'МЕТКА'; должно выгледить так: // Column $_['column_remove'] = '<span title="Убрать товар из корзины">Убрать</span>'; $_['column_image'] = 'Фото'; $_['column_name'] = 'Наименование товара'; $_['column_model'] = 'Модель'; $_['text_tags'] = 'МЕТКА'; $_['column_price'] = 'Цена'; $_['column_total'] = 'Итого'; Блин есть же гуд люди и это freelancer -)) Надіслати Поділитися на інших сайтах More sharing options... Створіть аккаунт або увійдіть для коментування Ви повинні бути користувачем, щоб залишити коментар Створити обліковий запис Зареєструйтеся для отримання облікового запису. Це просто! Зареєструвати аккаунт Вхід Уже зареєстровані? Увійдіть тут. Вхід зараз Share More sharing options... Передплатники 0 Перейти до списку тем Зараз на сторінці 0 користувачів Ні користувачів, які переглядиють цю сторінку Последние темы Последние дополнения Последние новости Вся активність Головна Підтримка та відповіді на запитання. Шаблони, дизайн та оформлення магазину Добовляем в корзину Теги товара: (TAG)
ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 Лансер я не понемаю, можно пример буду очень блогодарен ( Надіслати Поділитися на інших сайтах More sharing options...
tim21701 Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. ок я незнал Надіслати Поділитися на інших сайтах More sharing options... freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 (змінено) catalog/controller/module/cart.php catalog/controller/module/cart.tpl сейчас не могу проверить насколько это работает. посмотри у себя tags.zip Змінено 27 січня 2012 користувачем freelancer Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Добавил эти фаилы в Template/Checkout & Controler/Checkout когда корзина пуста то обычно заходит,а вот когда добавляю товар викидывает эту ошибку: Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Знаю никаму не интересна эта тема но мне очень важна понемаите люди( тут столько профиссионалов которые блин аш опенкарт заного напишут... удилите моеи проблеме хоть 5 минут вашего времени пожалусто( Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 В первую очередь ОГРОМНОЕ СПАСИБО (freelancer)'у за помошь и добавления. Уверен очень многим понадобится это дополнения в корзине,новые поля всегда радуют особено кога очень нужны))) Начнем: скачиваем фаилы выше и заливаем в: Cart.php в >> \catalog\controller\checkout Cart.tpl в >> \catalog\view\theme\ваша тема\template\checkout Идем в >> \catalog\language\russian\checkout >> открываем и встовляем код: $_['text_tags'] = 'МЕТКА'; должно выгледить так: // Column $_['column_remove'] = '<span title="Убрать товар из корзины">Убрать</span>'; $_['column_image'] = 'Фото'; $_['column_name'] = 'Наименование товара'; $_['column_model'] = 'Модель'; $_['text_tags'] = 'МЕТКА'; $_['column_price'] = 'Цена'; $_['column_total'] = 'Итого'; Блин есть же гуд люди и это freelancer -)) Надіслати Поділитися на інших сайтах More sharing options... Створіть аккаунт або увійдіть для коментування Ви повинні бути користувачем, щоб залишити коментар Створити обліковий запис Зареєструйтеся для отримання облікового запису. Це просто! Зареєструвати аккаунт Вхід Уже зареєстровані? Увійдіть тут. Вхід зараз Share More sharing options... Передплатники 0 Перейти до списку тем Зараз на сторінці 0 користувачів Ні користувачів, які переглядиють цю сторінку
ELITE Опубліковано: 26 січня 2012 Автор Share Опубліковано: 26 січня 2012 ELITE лучше прилагать к сообщению сам файл (если он большой), благо, эти файлы весят "копейки". Если, по каким то соображениям или причинам Вы не хотите этого делать, то, включайте код в SPOILER: [ spoiler ] ...Ваш код...[ /spoiler ] (без пробелов) Ваше сообщение исправил. ок я незнал Надіслати Поділитися на інших сайтах More sharing options...
freelancer Опубліковано: 26 січня 2012 Share Опубліковано: 26 січня 2012 (змінено) catalog/controller/module/cart.php catalog/controller/module/cart.tpl сейчас не могу проверить насколько это работает. посмотри у себя tags.zip Змінено 27 січня 2012 користувачем freelancer Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Добавил эти фаилы в Template/Checkout & Controler/Checkout когда корзина пуста то обычно заходит,а вот когда добавляю товар викидывает эту ошибку: Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Знаю никаму не интересна эта тема но мне очень важна понемаите люди( тут столько профиссионалов которые блин аш опенкарт заного напишут... удилите моеи проблеме хоть 5 минут вашего времени пожалусто( Надіслати Поділитися на інших сайтах More sharing options... ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 В первую очередь ОГРОМНОЕ СПАСИБО (freelancer)'у за помошь и добавления. Уверен очень многим понадобится это дополнения в корзине,новые поля всегда радуют особено кога очень нужны))) Начнем: скачиваем фаилы выше и заливаем в: Cart.php в >> \catalog\controller\checkout Cart.tpl в >> \catalog\view\theme\ваша тема\template\checkout Идем в >> \catalog\language\russian\checkout >> открываем и встовляем код: $_['text_tags'] = 'МЕТКА'; должно выгледить так: // Column $_['column_remove'] = '<span title="Убрать товар из корзины">Убрать</span>'; $_['column_image'] = 'Фото'; $_['column_name'] = 'Наименование товара'; $_['column_model'] = 'Модель'; $_['text_tags'] = 'МЕТКА'; $_['column_price'] = 'Цена'; $_['column_total'] = 'Итого'; Блин есть же гуд люди и это freelancer -)) Надіслати Поділитися на інших сайтах More sharing options... Створіть аккаунт або увійдіть для коментування Ви повинні бути користувачем, щоб залишити коментар Створити обліковий запис Зареєструйтеся для отримання облікового запису. Це просто! Зареєструвати аккаунт Вхід Уже зареєстровані? Увійдіть тут. Вхід зараз Share More sharing options... Передплатники 0
ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Добавил эти фаилы в Template/Checkout & Controler/Checkout когда корзина пуста то обычно заходит,а вот когда добавляю товар викидывает эту ошибку: Надіслати Поділитися на інших сайтах More sharing options...
ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 Знаю никаму не интересна эта тема но мне очень важна понемаите люди( тут столько профиссионалов которые блин аш опенкарт заного напишут... удилите моеи проблеме хоть 5 минут вашего времени пожалусто( Надіслати Поділитися на інших сайтах More sharing options...
ELITE Опубліковано: 27 січня 2012 Автор Share Опубліковано: 27 січня 2012 В первую очередь ОГРОМНОЕ СПАСИБО (freelancer)'у за помошь и добавления. Уверен очень многим понадобится это дополнения в корзине,новые поля всегда радуют особено кога очень нужны))) Начнем: скачиваем фаилы выше и заливаем в: Cart.php в >> \catalog\controller\checkout Cart.tpl в >> \catalog\view\theme\ваша тема\template\checkout Идем в >> \catalog\language\russian\checkout >> открываем и встовляем код: $_['text_tags'] = 'МЕТКА'; должно выгледить так: // Column $_['column_remove'] = '<span title="Убрать товар из корзины">Убрать</span>'; $_['column_image'] = 'Фото'; $_['column_name'] = 'Наименование товара'; $_['column_model'] = 'Модель'; $_['text_tags'] = 'МЕТКА'; $_['column_price'] = 'Цена'; $_['column_total'] = 'Итого'; Блин есть же гуд люди и это freelancer -)) Надіслати Поділитися на інших сайтах More sharing options...
Recommended Posts