Jump to content

idofri

Members
  • Posts

    11
  • Joined

  • Last visited

Profile Information

  • Activity
    Developer

Recent Profile Visitors

2,273,732 profile views

idofri's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Hi, The correct path is: Administration => Menus > Add New "Order Options" was the original feature before I modified it, and if you'll follow my instructions you'll get a new menu-button called "Set Product as New" under the Catalog menu. Cheers.
  2. I've taken Eck!'s plugin "Order Options" and modified it for setting specific products as new. So, here's how: 1. Copy the attached file into your admin/tabs folder 2. Go to Administration => Menus => Add New 3. Enter "Set as New" as the name (or whatever..) 4. Enter "AdminSetNew" as the class 5. Select "Catalog" as the parent 6. Click Save 7. Go to Catalog/Set as New 8. Enter the reference number of a product you want to set as new 9. Click "Set Product as New" Tested on 1.5.2 AdminSetNew.php
  3. the products has a title and features with values such as height:10cm, depth:50cm, etc. I was thinking about automating the creation of a meta description and tags for SEO, so the meta description will be equal to product's title and meta tags will be features and their values. is that bad SEOing?
  4. Hello, Is there any built-in feature or an add-on for generating meta tags and description out of a product specific features and name? Cheers
  5. Looks like it did solved my problem after all, just a matter of cleaning browser cache. Cheers
  6. Hi, I'm running version 1.5.2 with the Google sitemap module version 1.9. After migrating from a demo server to a live one, the module generates a sitemap that contains old and irrelevant data in it: http://www.doronzy.c...hop/sitemap.xml trying to rebuild it using this cron job link: http://www.doronzy.co.il/shop/modules/gsitemap/gsitemap-cron.php?&token=xxxxxxxxxx&GSITEMAP_ALL_CMS=0&GSITEMAP_ALL_PRODUCTS=0 redirects me to a blank page with the number "1" in it. Am I missing something? Cheers.
  7. these changes worked for me (v.1.5.2): /classes/Meta.php: line 217: $ret['meta_title'] = (isset($metas['title']) && $metas['title']) ? $metas['title'].' - '.Configuration::get('PS_SHOP_NAME') : Configuration::get('PS_SHOP_NAME'); to: $ret['meta_title'] = (isset($metas['title']) && $metas['title']) ? Configuration::get('PS_SHOP_NAME').' - '.$metas['title'] : Configuration::get('PS_SHOP_NAME'); line 276: $row['meta_title'] = $title.$row['meta_title'].(!empty($page_number) ? ' ('.$page_number.')' : '').' - '.Configuration::get('PS_SHOP_NAME'); to: $row['meta_title'] = Configuration::get('PS_SHOP_NAME').' - '.$title.$row['meta_title'].(!empty($page_number) ? ' ('.$page_number.')' : ''); line 278: $row['meta_title'] = $row['name'].(!empty($page_number) ? ' ('.$page_number.')' : '').' - '.Configuration::get('PS_SHOP_NAME'); to: $row['meta_title'] = Configuration::get('PS_SHOP_NAME').' - '.$row['name'].(!empty($page_number) ? ' ('.$page_number.')' : ''); line 281: $row['meta_title'] = $title.(!empty($page_number) ? ' ('.$page_number.')' : '').' - '.Configuration::get('PS_SHOP_NAME'); to: $row['meta_title'] = Configuration::get('PS_SHOP_NAME').' - '.$title.(!empty($page_number) ? ' ('.$page_number.')' : ''); lines 310-311: $row['meta_title'] = ($row['meta_title'] ? $row['meta_title'] : $row['name']).(!empty($page_number) ? ' ('.$page_number.')' : ''); $row['meta_title'] .= ' - '.Configuration::get('PS_SHOP_NAME'); to: $row['meta_title'] = Configuration::get('PS_SHOP_NAME'); $row['meta_title'] .= ' - '.($row['meta_title'] ? $row['meta_title'] : $row['name']).(!empty($page_number) ? ' ('.$page_number.')' : ''); line 339: $row['meta_title'] = $row['meta_title'].' - '.Configuration::get('PS_SHOP_NAME'); to: $row['meta_title'] = Configuration::get('PS_SHOP_NAME').' - '.$row['meta_title']; line 363: $row['meta_title'] = $row['meta_title'].' - '.Configuration::get('PS_SHOP_NAME'); to: $row['meta_title'] = Configuration::get('PS_SHOP_NAME').' - '.$row['meta_title']; line 387: $row['meta_title'] = $row['meta_title'].' - '.Configuration::get('PS_SHOP_NAME'); to: $row['meta_title'] = Configuration::get('PS_SHOP_NAME').' - '.$row['meta_title']; line 403: $meta_tags['meta_title'] = $default_value.' - '.Configuration::get('PS_SHOP_NAME'); to: $meta_tags['meta_title'] = Configuration::get('PS_SHOP_NAME').' - '.$default_value;
  8. עם איזה גירסה אתה עובד? אני על 1.5.2 והמודול עובד לי בסדר גמור. נסה את הגירסה המעודכנת של המודול שמופיעה בסוף הפוסט: paybyphone 1.5
  9. I'm not an expert, but I can try and help out. idofri at gmail dot com
×
×
  • Create New...