Jump to content

sipdorus

Members
  • Posts

    21
  • Joined

  • Last visited

Profile Information

  • Location
    Turkey
  • First Name
    Sipdorus
  • Last Name
    Turk

sipdorus's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. hello, I created cath1name field on ps_category_lang table and copied data from name field to this field. I want to show long version of category name on category page. On category.tpl file I changed {$category->name|escape:'htmlall':'UTF-8'} code to {$category->cath1name|escape:'htmlall':'UTF-8'}. but its not working. any idea?
  2. επιτυχία, γείτονα
  3. Hello, at my website form at the contact us page gives this error: There is 1 error : The reCAPTCHA wasn't entered correctly. Go back and try it again. Google sitekey and secretkey in controllers/front/ContactController.php is CORRECT (same sitekey and secret key works fine at same website, at questionsa about this product form) I searched "reCAPTCHA wasn't entered correctly" sentence at database found 0 records. at controllers/front/ContactController.php line 65 $this->errors[] = Tools::displayError("The reCAPTCHA wasn't entered correctly. Go back and try it again."); when I change this message or commentout this line still I take same error. huh..! 8( I don't know where this error message comes. I don't know why captcha error is trown. Thanks for help
  4. Hello On product page: Product image zoom doesn't work when activate Customer Loyalty and Rewards module. you can see problem at: https://ekamix.com/tirnak-bakim/2774-scholl-velvet-smooth-elektronik-tirnak-bakim-seti-8690570539707.html thanks for help
  5. Merhabalar, aşağıdaki adresten google rich snippet testi yaptığım zaman ürün fiyatlarında uyarı gösteriyor. Adres ve uyarı aşağıdadır. Nasıl düzeltebileceğim konusunda yardımcı olursanız sevinirim. İyi çalışmalar https://search.google.com/structured...ing-tool?hl=tr 9,90 TL (9,90 TL özelliği geçerli bir fiyat belirtimi değil. price - schema.org hakkında daha fazla bilgi edinin.)
  6. final bracket is at the line below. I only added .' order by rand()' to the code
  7. Hello, I want to random change home slider images order. So everytime store opened sorting will be changed. I tried to edit code at modules/homeslider/homeslide.php like this public function reOrderPositions() { $id_slide = $this->id; $context = Context::getContext(); $id_shop = $context->shop->id; $max = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT MAX(hss.`position`) as position FROM `'._DB_PREFIX_.'homeslider_slides` hss, `'._DB_PREFIX_.'homeslider` hs WHERE hss.`id_homeslider_slides` = hs.`id_homeslider_slides` AND hs.`id_shop` = '.(int)$id_shop.' order by rand()' ); if ((int)$max == (int)$id_slide) return true; $rows = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT hss.`position` as position, hss.`id_homeslider_slides` as id_slide FROM `'._DB_PREFIX_.'homeslider_slides` hss LEFT JOIN `'._DB_PREFIX_.'homeslider` hs ON (hss.`id_homeslider_slides` = hs.`id_homeslider_slides`) WHERE hs.`id_shop` = '.(int)$id_shop.' AND hss.`position` > '.(int)$this->position.' order by rand()' ); foreach ($rows as $row) { $current_slide = new HomeSlide($row['id_slide']); --$current_slide->position; $current_slide->update(); unset($current_slide); } return true; } public static function getAssociatedIdsShop($id_slide) { $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT hs.`id_shop` FROM `'._DB_PREFIX_.'homeslider` hs WHERE hs.`id_homeslider_slides` = '.(int)$id_slide.' order by rand()' ); but nothing changed. How can I do this?
  8. Yes I created two attributes but prestashop created 2 products (one with frame, one without frame) Its logıc is for: for example color. if you define two color for a tshirt this means you have two tshirts. But my demand is OPTIONAL ATTRIBUTE
  9. Hello, I want to define attributes for some product. If this attributes selected this will increase price. For example: Product: Painting Price: 100 $ Attribute: I want Frame Price: 20$ -------------------------------------------- When I defined this prestashop creates 2 paintings (Painting with frame, painting without frame) so 2 product needs to have stock quantity. I have only 1 painting, I want to show costumer if he wants frame or does not want frame. -------------------------------------------- How can I define this?
  10. Merhabalar, sanal mağazada satmak istediğim ürünlerin bazılarında ekstra nitelikler mevcut. Şöyle ki örneğin bir tablo satıyorum: Tablonun fiyatı 100 lira olsun, müşteri tabloya çerçeve de istiyorum işaretlediği zaman fiyat 120 lira olsun, (Çerçevenin de resmi görünsün) 1.sınıf tuval istiyorum işaretlerse fiyat 150ye çıksın gibi. Ürün öznitelikleri kısmını kurcaladım ama yapamadım sanırım. tam olarak nerden yapılıyor? Teşekkürler
  11. Hello, we registered 4000+products to our store. All products has Allow order when out of stock. How can I update all products to "Deny Order when out of stock" from phpmyadmin? I couldn't find the field for this. Thanks
  12. Thanks a lot, I purchased a module and problem solved.
×
×
  • Create New...