Jump to content

glenskie16

Members
  • Posts

    73
  • Joined

  • Last visited

Profile Information

  • Location
    bakersfield
  • Activity
    Developer

glenskie16's Achievements

Newbie

Newbie (1/14)

2

Reputation

1

Community Answers

  1. On the features page for prestashop 1.6 it shows that prestashop has a "Related Products" feature. I was wondering where I could find that feature ? Here is the page that says it has this feature. http://www.prestashop.com/en/features Under Product Displays it shows this picture
  2. So what do you think is the best approach for this task that i have ?
  3. i tried to use the bxslider and it doesn't work ? I have my site up at http://www.jmequipment.com/ if you would like to look it is the on sale products section where it looks all broken.
  4. so it is possible ? with the bxslider.js ?
  5. why does it have to be such a hard modification? theres like now way to just add the li to a jquery script ? and i tried the featured module and its not for products ? its just for manufacturers
  6. I tried it and it didnt work i was just trying to get it to slide the li's but nothing works? do you know of any jquery i could use on the homefeatured.tpl that would allow the li's to slide ? we just want the products to slide... thank you.
  7. I was wondering if there was a module that would make the featured products like a slideshow on the front page... im using Featured Products on the Homepage module and was wondering how i would make that into a slide show ? Thank you !
  8. I posted this on a forum and i got a response but it did not work for me ... What I'm trying to do is to get the category image to show instead of the product image. What I have done for the category product list which works is this. This only works if you are looking at all the products in a category but not if you search for a product? <a href="{$product.link|escape:'htmlall':'UTF-8'}" class="product_img_link" title="{$product.name|escape:'htmlall':'UTF-8'}"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'large_default')}" style="width:140px!important;" alt="{$product.legend|escape:'htmlall':'UTF-8'}" /> </a> I was wondering how do I get this to work all of the site? How do I make it pull the category images? Like it is above but for the whole site? This was his response and i dont know what it means... You can do a multiple actions to create such an image, first of all you call for $category class in product page, so $category is not defined. best solution is to create a assigment for $category in productController in override directory. class ProductController extends ProductControllerCore { public function initContent() { parent::initContent(); $category = new Category($this->product->id_category_default); $this->context->smarty->assign('category', $category); } } i would like to know what he ment by this becuase i tried it and it did not work ? please help me i need this and i will be done with my project
  9. would you like to see some images ?
  10. yes they are all indexed my search is referencing 2 tables but when i put in the number without the "-" it works
  11. Hi i was wondering for any reason why is my seach not working when the word has a - in it ? is there a function somewhere not allowing that in it ? i need to be able to have the "-" in it ? pleae help thank you an example of the word would be like : 193-25-89 Here is an example.. This is a search for "g11-" and it pulls the correct product but as soon as i put something behind the "-" it freaks out and doesnt know see here: Thank you
  12. What i am trying to do is to get the category image to show instead of the product image. what i have done for the category product list which works is this. This only works if you are looking at all the products in a category but not if you search for a product ? <a href="{$product.link|escape:'htmlall':'UTF-8'}" class="product_img_link" title="{$product.name|escape:'htmlall':'UTF-8'}"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'large_default')}" style="width:140px!important;" alt="{$product.legend|escape:'htmlall':'UTF-8'}" /> </a> i was wondering how do i get this to work all of the site ? how do i make it pull the category image ? like it is above but for the whole site ? Thank you
×
×
  • Create New...