X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   image from products in mini cart (https://forum.x-cart.com/showthread.php?t=69278)

Gabone 05-30-2014 01:41 AM

image from products in mini cart
 
how can i extend or where can i find the query for products in cart so i can join product_image table?

qualiteam 06-02-2014 02:41 AM

Re: image from products in mini cart
 
Please put your X-Cart version to your signature so that forum users could help you.

Also, please explain what you want to achieve.

Gabone 06-02-2014 03:00 AM

Re: image from products in mini cart
 
i dont need X-Cart version in my signature because i post in xcart 5 customization and design.
i wanna add product image in mini cart.thanks.

tony_sologubov 06-02-2014 05:15 AM

Re: image from products in mini cart
 
Hi!

This is the example of test script that will be helpful for you. It will work only when there are some products in your cart.

PHP Code:

<?php

require_once 'top.inc.php';

$itemCount 0;
$cart = \XLite\Controller\Customer\Cart::getInstance()->getCart();

foreach (
$cart->getItems() as $item) {
    if (
$item->getProduct()) {
        foreach (
$item->getProduct()->getImages() as $image) {
            echo 
$image->getFrontURL() . '<br />';
        }

        
$itemCount += 1;
    }
}

if (
$itemCount == 0) {
    echo 
'No products in the cart';
}


You should put this code into any script (test.php for example) in the root folder of your X-Cart 5 installation and it will work. Hopefully, it will give you an idea of how to get info about product images.

qualiteam 06-02-2014 09:02 AM

Re: image from products in mini cart
 
Quote:

Originally Posted by Gabone
i dont need X-Cart version in my signature because i post in xcart 5 customization and design.


Please read forum rules:
http://forum.x-cart.com/showthread.php?p=251456#post251456

Thanks!

Gabone 06-02-2014 10:44 AM

Re: image from products in mini cart
 
I can't see my profile,can't pm :|
Gabone,

you do not have permission to access this page

qualiteam 06-03-2014 01:27 AM

Re: image from products in mini cart
 
Quote:

Originally Posted by Gabone
I can't see my profile,can't pm :|


This should be fixed now.

Gabone 06-03-2014 01:49 AM

Re: image from products in mini cart
 
yes thank you


All times are GMT -8. The time now is 08:26 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.