Prestashop get the product default image from the product name?

NewUser

In Prestashop I want to know by which pattern prestashop shows the product default image? I mean lets say I have a mysql query for prestashop like this

SELECT ps_product.id_product,ps_product.id_category_default,description_short,ps_product_lang.name FROM ps_product_lang,ps_product WHERE ps_product_lang.id_lang=1 AND ps_product.id_product=ps_product_lang.id_product

Now here I will get the product id, product category, description, and name. Now according to prestashop default products and database I have for the product iPod Nano the database fields are like

id_product  id_category_default
  1               3       

Now if I want to get the product image I will use

img/p/id_product/id_category_default/id_product.id_category_default

This will make the img src like

img/p/1/3/13.jpg

Now when I used that I got the image for Belkin Leather Folio for iPod

but with the same condition I got the exact image for ipod shuffle. So can someone kindly tell me how to get the exact default image for the product name? Any help and suggestions will be really appreciable.

yenshirak

You can use this query to get the image id of the cover image (image displayed in category view) for a product:

SELECT id_image FROM ps_image WHERE cover = 1 AND id_product = $idProduct

Then you can generate the image path with the following code:

$imgPath = 'img/p/';
for ($i = 0; $i < strlen($idImage); $i++) {
  $imgPath .= $idImage[$i] . '/';
}
$imgPath .= $idImage . '.jpg';

If you want to get the image id of the default thumbnail displayed in the product view then you can use this query:

SELECT id_image FROM ps_image WHERE position = 1 AND id_product = $idProduct

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Prestashop get the product default image from the product name?

From Dev

Prestashop get product attributes from its id

From Dev

Get product URL from multistore in prestashop

From Dev

prestashop get category product

From Dev

Get Product Category Name In Module using Prestashop 1.6

From Dev

Get stock of combination in a product (PrestaShop)

From Dev

Prestashop : trying to add product from admin get blank page

From Dev

Get product image from Product Model Magento 2

From Dev

Get product name from WMIC for a variable in batch

From Dev

Get the product name in Woocommerce

From Dev

Prestashop product image is not uploaded when product is created programmatically

From Dev

prestashop next and previous image buttons on product page

From Dev

In Which table Product image url stored in Prestashop

From Dev

Prestashop - change product image on color selection

From Dev

Prestashop 1.6 : Use the manufacturers logo as product image

From Dev

How to get product id on Product Editing page in BackOffice Prestashop 1.7

From Dev

Get product URL using Prestashop API

From Dev

Get product from a combination

From Dev

Get product from a combination

From Dev

Get Product Name using Scraping

From Dev

Magento - get specific category name from product id

From Java

Get label name from product WooCommerce shipping class Id

From Dev

How to get product manufacturer name from manufacturer value id by mysql?

From Dev

How to get the category name from an id product in woocommerce

From Dev

How to get product manufacturer name from manufacturer value id by mysql?

From Dev

Product Information in Prestashop

From Dev

Prestashop WebService: Add a product

From Dev

Adding categories to product prestashop

From Dev

Prestashop Customized Product

Related Related

  1. 1

    Prestashop get the product default image from the product name?

  2. 2

    Prestashop get product attributes from its id

  3. 3

    Get product URL from multistore in prestashop

  4. 4

    prestashop get category product

  5. 5

    Get Product Category Name In Module using Prestashop 1.6

  6. 6

    Get stock of combination in a product (PrestaShop)

  7. 7

    Prestashop : trying to add product from admin get blank page

  8. 8

    Get product image from Product Model Magento 2

  9. 9

    Get product name from WMIC for a variable in batch

  10. 10

    Get the product name in Woocommerce

  11. 11

    Prestashop product image is not uploaded when product is created programmatically

  12. 12

    prestashop next and previous image buttons on product page

  13. 13

    In Which table Product image url stored in Prestashop

  14. 14

    Prestashop - change product image on color selection

  15. 15

    Prestashop 1.6 : Use the manufacturers logo as product image

  16. 16

    How to get product id on Product Editing page in BackOffice Prestashop 1.7

  17. 17

    Get product URL using Prestashop API

  18. 18

    Get product from a combination

  19. 19

    Get product from a combination

  20. 20

    Get Product Name using Scraping

  21. 21

    Magento - get specific category name from product id

  22. 22

    Get label name from product WooCommerce shipping class Id

  23. 23

    How to get product manufacturer name from manufacturer value id by mysql?

  24. 24

    How to get the category name from an id product in woocommerce

  25. 25

    How to get product manufacturer name from manufacturer value id by mysql?

  26. 26

    Product Information in Prestashop

  27. 27

    Prestashop WebService: Add a product

  28. 28

    Adding categories to product prestashop

  29. 29

    Prestashop Customized Product

HotTag

Archive