Jump to content

IVANH83

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by IVANH83

  1. yes that is pharse error ... pls see this post ... http://www.prestashop.com/forums/viewthread/14679/P135/#131021
  2. Yes i tink but i was importing 3250 products directli into DB and i know how to directly solve this problem but i wuld like to have code that solving this problem from php. Does anyone knows how to modify this for php? ALTER FUNCTION [dbo].[GetOJChildren] ( -- Add the parameters for the function here @OJID int ) RETURNS @Table TABLE ( OJID int, Naziv varchar(110), ParentID int, HasChildren int ) AS BEGIN insert into @Table select OJID, isnull(Sifra + ' ', '') + Naziv, ParentID, (select count(*) from [dbo].[GetOJChildren](OJID)) from OrganizacijskeJedinice where isnull(ParentID, 0) = isnull(@OJID, 0) and Aktivno = 1 RETURN END
  3. i tested on 3250 products it didnt save changes ... i will try to see what is wrong ...
  4. Hello! I have a problem related to products and categories. I have entered 3250 products sorted into subcategories. Now I would like to have the same products to display in parent categories. I know that it is possible to make edit on each product manually or enter additional records in the table (category_product) but i dont want to burden the base and individually edit each product is impossible. Now I would like to have the same product to be displayed in it's own category and all paretn categories also i.e. the products for one category to be displayed are from that one and all child categories. Pls. if anyone knows how I can make this mass product distribution and "one" product to be visible in several categories. Tnx in advance
  5. Please if someone knows how to add additional fields:(ps_product_lang) NAME, DESCRIPTION, SHORT DESCRIPTION, non default CATEGORY ID of product in attached code ... to expand options for mass update ... big tnx!!! ps. i was able to add some additional fields but with these mentioned above i dont have any luck in attach you can find version for adding code massupdate.php
  6. is it possible to have this on english? and how can i integrate this with presta? tnx
  7. Hi all! In attach you can find configured php files and tcpdf folder download from http://sourceforge.net/project/showfiles.php?group_id=128076 IMPORTANT! before replacing php files BACKUP OLD FILES! Files to replace: config\config.inc.php classes\PDF.php class\Tools.php Upload TCPDF into Tools folder, at the same place with FPDF Works fine to me and i hope that should work fine to others. php.zip
  8. http://www.prestashop.com/forums/viewthread/17570/general_discussion/registration_fields/
  9. I need to change telephone and mobile field at registration form to “Important fields” ( such as Name, Last name ... fields with * mark ) . Please can someone send me a code for this change/upgrade Tnx!!!
  10. I need to change telephone and mobile field at registration form to "Important fields". Please can someone send me a code for this change/upgrade Tnx!!!
×
×
  • Create New...