trenyture Posted March 7, 2016 Share Posted March 7, 2016 Hi everyone, First of all, I want to apologize of my bad english (I'm french). I'm such a newbie here so I didn't really know where to post it, because this is not a question but a solution I was looking for a tip to add products images in the ajax searchbar in Prestashop, to have the picture and the name of the product. I looked in about one hundred (ok maybe I 'm exaggerating) topics on different forums (Spannish, English, French, Polska...) but nothing worked (and I didn't want to buy a module). I found a solution working with my version (1.6.1.4) and I wanted to share it with you in case some of us would be looking too! So to do that, I've modified 2 files : the Search.php class and the blocksearch.js 1/ In /classes/Search.php file Line 286 (arround) you have to replace : if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.' FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } by: if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.', pi.id_image pimg FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) INNER JOIN `'._DB_PREFIX_.'image` pi ON ( p.`id_product` = pi.`id_product` AND position = 1 ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } // Explaination : In the SQL request we add a new parameter to find the image's id. Then we take the id_product and we look for his image in the ps_image table. We only took the image in position 1. And we put it all in a variable called pimg<!-- Extra : You could create an override to the Search.php class -->2/ In the /themes/myTheme/modules/blocksearch/blocksearch.js file You need to add the image in the ajax data arround the line 51Replace : parse: function(data) { var mytab = []; for (var i = 0; i < data.length; i++) mytab[mytab.length] = { data: data[i], value: data[i].cname + ' > ' + data[i].pname }; return mytab; }, with : parse: function(data) { var mytab = new Array(); for (var i = 0; i < data.length; i++){ mytab[mytab.length] = { data: data[i], value: '<img src="http://monpresta.com/img/p/' + data[i].pimg + '-small_default.jpg" /> ' + data[i].pname}; } return mytab; }, //Explaination : So with the SQL we have the id of the image in the variable pimg so we have to put it in the parse of the data. Don't forget that in prestashop images are in /img/p/id_img-format.jpg and as we want a small image I put the small_default.jpg format because it'll be faster!<!-- Extra, I wrote {} in the for, but if you don't want just don't do it -->So that's it, I hope that'll help some of us and if you have any questions, or anything to say (or corrections for my bad english) I'm here Simon 2 Link to comment Share on other sites More sharing options...
bilusunny Posted March 8, 2016 Share Posted March 8, 2016 hey how do we add the manufacture name here??? can you put that also please Link to comment Share on other sites More sharing options...
trenyture Posted March 8, 2016 Author Share Posted March 8, 2016 (edited) Yes of course With a quick look on database I can tell you that : Search.php if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.', pi.id_image pimg, pm.name mname FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) INNER JOIN `'._DB_PREFIX_.'image` pi ON ( p.`id_product` = pi.`id_product` AND position = 1 ) INNER JOIN `'._DB_PREFIX_.'manufacturer` pm ON ( p.id_manufacturer = pm.id_manufacturer ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } and blocksearch.js : parse: function(data) { var mytab = new Array(); for (var i = 0; i < data.length; i++){ mytab[mytab.length] = { data: data[i], value: '<img class="search-result-img" src="http://staging.lux.mx/tienda/img/p/' + data[i].pimg + '-small_default.jpg" /><p class="search-result-title">' + data[i].mname + '>' + data[i].pname + '</p>'}; } return mytab; }, And Voila Tell me if that work Edited March 8, 2016 by trenyture (see edit history) 1 Link to comment Share on other sites More sharing options...
bilusunny Posted March 9, 2016 Share Posted March 9, 2016 Nope, didnt work for me Am i doing something wrong. BTW the blocksearch.js was in js folder than here 2/ In the /themes/myTheme/modules/blocksearch/blocksearch.js file Link to comment Share on other sites More sharing options...
trenyture Posted March 9, 2016 Author Share Posted March 9, 2016 Hmm this is strange... It worked fine for me... What is your prestashop version? 1 Link to comment Share on other sites More sharing options...
clau Posted February 25, 2018 Share Posted February 25, 2018 (edited) This (copy / paste) code is fantastic ! and works great! i`m just wondering, is it possible to add a "show all" link on the bottom ? really great work trenyture Edited February 25, 2018 by clau typo (see edit history) Link to comment Share on other sites More sharing options...
Matteo Posted July 4, 2018 Share Posted July 4, 2018 i'm tring to get it working on ps 1.7 with no luch. This is the default ps_blockserach module variable accessibl eon frontend in the ajax serach autocomplete: active:"1" add_to_cart_url:"https://store.sixrace.it/it/carrello?add=1&id_product=184&id_product_attribute=0" canonical_url:"https://store.sixrace.it/it/cerchioni/184-cerchi-oz-gass-rs-a-in-alluminio-per-panigale-v4-ozgaspaniv4.html" description_short:"<p>Cerchi OZ GASS RS-A in alluminio per Ducati Panigale V4 monobraccio</p>" discount_amount:"362,16 €" discount_percentage:"-15%" discount_percentage_absolute:"15%" discount_to_display:"362,16 €" discount_type:"percentage" has_discount:true id_product:"184" label:undefined labels:{tax_short: "(Tasse incl.)", tax_long: "Tasse incluse"} link:"https://store.sixrace.it/it/cerchioni/184-cerchi-oz-gass-rs-a-in-alluminio-per-panigale-v4-ozgaspaniv4.html" link_rewrite:"cerchi-oz-gass-rs-a-in-alluminio-per-panigale-v4-ozgaspaniv4" main_variants:[] manufacturer_name:"OZ" name:"Cerchi OZ GASS RS-A in alluminio per Panigale V4" price:"2.052,22 €" price_amount:2052.22 rate:22 reference:"OZGASPANIV4" regular_price:"2.414,38 €" regular_price_amount:2414.38 tax_name:"IVA IT 22%" unit_price:"" url:"https://store.sixrace.it/it/cerchioni/184-cerchi-oz-gass-rs-a-in-alluminio-per-panigale-v4-ozgaspaniv4.html" value:undefined But in PS 1.7 there is no blocksearch.php but instead /classes/Search.php if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.', pi.id_image pimg FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) INNER JOIN `'._DB_PREFIX_.'image` pi ON ( p.`id_product` = pi.`id_product` AND position = 1 ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } and this is the ps_searchbar.js module file /* global $ */ $(document).ready(function () { var $searchWidget = $('#search_widget'); var $searchBox = $searchWidget.find('input[type=text]'); var searchURL = $searchWidget.attr('data-search-controller-url'); $.widget('prestashop.psBlockSearchAutocomplete', $.ui.autocomplete, { _renderItem: function (ul, product) { console.log(product); return $("<li>") /*manufacturer_name price*/ .append($("<a>") .append($("<span>").html(product.image).addClass("image")) .append($("<span>").html(product.category_name).addClass("category")) .append($("<span>").html(product.manufacturer_name)) .append($("<span>").html(' > ').addClass("separator")) .append($("<span>").html(product.name).addClass("product")) .append($("<span>").html(' - ')) .append($("<span>").html(product.reference)) .append($("<span>").html(' (')) .append($("<span>").html(product.price)) .append($("<span>").html(')')) ).appendTo(ul) ; } }); $searchBox.psBlockSearchAutocomplete({ source: function (query, response) { $.post(searchURL, { s: query.term, resultsPerPage: 10 }, null, 'json') .then(function (resp) { response(resp.products); }) .fail(response); }, select: function (event, ui) { var url = ui.item.url; window.location.href = url; }, }); }); I cant find how to add image to the $product variable, any help? Link to comment Share on other sites More sharing options...
trenyture Posted July 4, 2018 Author Share Posted July 4, 2018 I'm sorry, I had so much trouble to find this solution in Prestashop 1.6 and I don't develop anymore with the 1.7 so I can't help you... maybe another member or administrator... Good Luck, when I found the solution it tooks me about one day of test and intents and mistakes.... That's why I shared it when it was working.... Good luck Link to comment Share on other sites More sharing options...
Matteo Posted July 4, 2018 Share Posted July 4, 2018 Thanks dear, in ps 1.7 seem to be simple because we just have a product object with many variable associated, i need to find the right query where to pass an image link. Hope some one can help thanks Link to comment Share on other sites More sharing options...
trenyture Posted July 4, 2018 Author Share Posted July 4, 2018 Wow, I am so sorry @Clau, I didn't see your answer, Thanks for your comment As I said to Matteo, It took me a while to find the solution so I wanted to share the solution. But now I can't make it work with other versions. On 25/02/2018 at 2:23 PM, clau said: This (copy / paste) code is fantastic ! and works great! i`m just wondering, is it possible to add a "show all" link on the bottom ? really great work trenyture Link to comment Share on other sites More sharing options...
trenyture Posted July 4, 2018 Author Share Posted July 4, 2018 @Matteo, if it can help you, I remember I started from the query, I found the sql request and played with it until I had the good image! Then I'll go for the view to add the images with debugging the request... If it can help you... Link to comment Share on other sites More sharing options...
Daniela Posted August 17, 2018 Share Posted August 17, 2018 On 3/7/2016 at 9:12 PM, trenyture said: Hi everyone, First of all, I want to apologize of my bad english (I'm french). I'm such a newbie here so I didn't really know where to post it, because this is not a question but a solution I was looking for a tip to add products images in the ajax searchbar in Prestashop, to have the picture and the name of the product. I looked in about one hundred (ok maybe I 'm exaggerating) topics on different forums (Spannish, English, French, Polska...) but nothing worked (and I didn't want to buy a module). I found a solution working with my version (1.6.1.4) and I wanted to share it with you in case some of us would be looking too! So to do that, I've modified 2 files : the Search.php class and the blocksearch.js 1/ In /classes/Search.php file Line 286 (arround) you have to replace : if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.' FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } by: if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.', pi.id_image pimg FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) INNER JOIN `'._DB_PREFIX_.'image` pi ON ( p.`id_product` = pi.`id_product` AND position = 1 ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } // Explaination : In the SQL request we add a new parameter to find the image's id. Then we take the id_product and we look for his image in the ps_image table. We only took the image in position 1. And we put it all in a variable called pimg <!-- Extra : You could create an override to the Search.php class --> 2/ In the /themes/myTheme/modules/blocksearch/blocksearch.js file You need to add the image in the ajax data arround the line 51 Replace : parse: function(data) { var mytab = []; for (var i = 0; i < data.length; i++) mytab[mytab.length] = { data: data[i], value: data[i].cname + ' > ' + data[i].pname }; return mytab; }, with : parse: function(data) { var mytab = new Array(); for (var i = 0; i < data.length; i++){ mytab[mytab.length] = { data: data[i], value: '<img src="http://monpresta.com/img/p/' + data[i].pimg + '-small_default.jpg" /> ' + data[i].pname}; } return mytab; }, //Explaination : So with the SQL we have the id of the image in the variable pimg so we have to put it in the parse of the data. Don't forget that in prestashop images are in /img/p/id_img-format.jpg and as we want a small image I put the small_default.jpg format because it'll be faster! <!-- Extra, I wrote {} in the for, but if you don't want just don't do it --> So that's it, I hope that'll help some of us and if you have any questions, or anything to say (or corrections for my bad english) I'm here Simon Hmm, don't work for me and I modified all files. I use Prestashop v1.6.1.11. Url site: https://axel-company.ro . Please if you can watch at my site Thanks in advance! Link to comment Share on other sites More sharing options...
blondel.da Posted September 7, 2018 Share Posted September 7, 2018 (edited) Bonjour, Voici le code pour afficher les images. V1.7> fichier: ps_searchbar.js celui-ci affiche l'image puis la référence et le nom de l'article Bonne programmation ... Voici le code pour afficher les images. V1.7> fichier: ps_searchbar.js celui ci affiche image Bon programmation ... $(document).ready(function () { var $searchWidget = $('#search_widget'); var $searchBox = $searchWidget.find('input[type=text]'); var searchURL = $searchWidget.attr('data-search-controller-url'); $.widget('prestashop.psBlockSearchAutocomplete', $.ui.autocomplete, { _renderItem: function (ul, product) { return $("<li>") .append($("<a>") .append($('<img />').attr('src',product.cover.small.url).width('38px').height('38px').addClass("media-object")) .append($("<span>").html(product.reference_to_display).addClass("reference_to_display")) .append($("<span>").html(' - ').addClass("separator")) .append($("<span>").html(product.name).addClass("product")) ).appendTo(ul) ; } }); $searchBox.psBlockSearchAutocomplete({ source: function (query, response) { $.post(searchURL, { s: query.term, resultsPerPage: 10 }, null, 'json') .then(function (resp) { response(resp.products); }) .fail(response); }, select: function (event, ui) { var url = ui.item.url; window.location.href = url; }, }); }); Edited September 7, 2018 by blondel.da (see edit history) 5 Link to comment Share on other sites More sharing options...
celeg Posted September 10, 2018 Share Posted September 10, 2018 merci ca marche impeccable ! Link to comment Share on other sites More sharing options...
Sergio Posted September 25, 2018 Share Posted September 25, 2018 (edited) To all of you that don't had success, don't forget to exchage the website addres in "blocksearch.js" new code, by your website. Now, the cherry on the top of the cake would be if the price of each product could also be visible on the same search. If you can do it, i'll appreciate it so much. Working like a charm on Prestashop 1.6.1.17 P.S.: The correct path to "blocksearch.js" in my version is: /themes/default-bootstrap (or your theme folder)/js/modules/blocksearch Edited September 25, 2018 by Sergio (see edit history) Link to comment Share on other sites More sharing options...
blondel.da Posted September 29, 2018 Share Posted September 29, 2018 hello, To add the price put its two lines after the line product .append($("<span>").html(product.name).addClass("product")) lines add : .append($("<span>").html(' - ').addClass("separator")) .append($("<span>").html(product.price).addClass("price")) 1 Link to comment Share on other sites More sharing options...
Sergio Posted September 30, 2018 Share Posted September 30, 2018 In 1.6 that part of the coding does not exist. But thanks anyway. Link to comment Share on other sites More sharing options...
bensattitude Posted October 25, 2018 Share Posted October 25, 2018 Salut Blondel.da, juste un truc peut-être bête, mais il y a un moyen de modifier l'affichage? style photo et nom du produit à coté... j'ai déjà modifié les trucs de base sur la qualité et la dimension de la photo mais je maitrise pas du tout ... je te remercie en tout cas Link to comment Share on other sites More sharing options...
CJJP Posted September 27, 2019 Share Posted September 27, 2019 On 9/8/2018 at 12:09 AM, blondel.da said: Bonjour, Voici le code pour afficher les images. V1.7> fichier: ps_searchbar.js celui-ci affiche l'image puis la référence et le nom de l'article Bonne programmation ... Voici le code pour afficher les images. V1.7> fichier: ps_searchbar.js celui ci affiche image Bon programmation ... $(document).ready(function () { var $searchWidget = $('#search_widget'); var $searchBox = $searchWidget.find('input[type=text]'); var searchURL = $searchWidget.attr('data-search-controller-url'); $.widget('prestashop.psBlockSearchAutocomplete', $.ui.autocomplete, { _renderItem: function (ul, product) { return $("<li>") .append($("<a>") .append($('<img />').attr('src',product.cover.small.url).width('38px').height('38px').addClass("media-object")) .append($("<span>").html(product.reference_to_display).addClass("reference_to_display")) .append($("<span>").html(' - ').addClass("separator")) .append($("<span>").html(product.name).addClass("product")) ).appendTo(ul) ; } }); $searchBox.psBlockSearchAutocomplete({ source: function (query, response) { $.post(searchURL, { s: query.term, resultsPerPage: 10 }, null, 'json') .then(function (resp) { response(resp.products); }) .fail(response); }, select: function (event, ui) { var url = ui.item.url; window.location.href = url; }, }); }); Thank you so much Can you please let me know how can i show price and category ? Link to comment Share on other sites More sharing options...
Martina.Tom Posted October 29, 2019 Share Posted October 29, 2019 On 3/7/2016 at 8:12 PM, trenyture said: Hi everyone, First of all, I want to apologize of my bad english (I'm french). I'm such a newbie here so I didn't really know where to post it, because this is not a question but a solution I was looking for a tip to add products images in the ajax searchbar in Prestashop, to have the picture and the name of the product. I looked in about one hundred (ok maybe I 'm exaggerating) topics on different forums (Spannish, English, French, Polska...) but nothing worked (and I didn't want to buy a module). I found a solution working with my version (1.6.1.4) and I wanted to share it with you in case some of us would be looking too! So to do that, I've modified 2 files : the Search.php class and the blocksearch.js 1/ In /classes/Search.php file Line 286 (arround) you have to replace : if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.' FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } by: if ($ajax) { $sql = 'SELECT DISTINCT p.id_product, pl.name pname, cl.name cname, cl.link_rewrite crewrite, pl.link_rewrite prewrite '.$score.', pi.id_image pimg FROM '._DB_PREFIX_.'product p INNER JOIN `'._DB_PREFIX_.'product_lang` pl ON ( p.`id_product` = pl.`id_product` AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').' ) '.Shop::addSqlAssociation('product', 'p').' INNER JOIN `'._DB_PREFIX_.'category_lang` cl ON ( product_shop.`id_category_default` = cl.`id_category` AND cl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('cl').' ) INNER JOIN `'._DB_PREFIX_.'image` pi ON ( p.`id_product` = pi.`id_product` AND position = 1 ) WHERE p.`id_product` '.$product_pool.' ORDER BY position DESC LIMIT 10'; return $db->executeS($sql, true, false); } // Explaination : In the SQL request we add a new parameter to find the image's id. Then we take the id_product and we look for his image in the ps_image table. We only took the image in position 1. And we put it all in a variable called pimg <!-- Extra : You could create an override to the Search.php class --> 2/ In the /themes/myTheme/modules/blocksearch/blocksearch.js file You need to add the image in the ajax data arround the line 51 Replace : parse: function(data) { var mytab = []; for (var i = 0; i < data.length; i++) mytab[mytab.length] = { data: data[i], value: data[i].cname + ' > ' + data[i].pname }; return mytab; }, with : parse: function(data) { var mytab = new Array(); for (var i = 0; i < data.length; i++){ mytab[mytab.length] = { data: data[i], value: '<img src="http://monpresta.com/img/p/' + data[i].pimg + '-small_default.jpg" /> ' + data[i].pname}; } return mytab; }, //Explaination : So with the SQL we have the id of the image in the variable pimg so we have to put it in the parse of the data. Don't forget that in prestashop images are in /img/p/id_img-format.jpg and as we want a small image I put the small_default.jpg format because it'll be faster! <!-- Extra, I wrote {} in the for, but if you don't want just don't do it --> So that's it, I hope that'll help some of us and if you have any questions, or anything to say (or corrections for my bad english) I'm here Simon Hi Simon, thank you for the solution. But I have a problem on PS 1.6.1.24, the url of images in the search is not correct. Testing url is http://shop.tonerkseft.sk/. Thanks, Martina Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now