Jump to content
thirty bees forum

zimmer-media

Trusted Members
  • Posts

    486
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by zimmer-media

  1. @alwayspaws ahhhh - misunderstood grrrrrrrrrrr Thank you I had to look in the video for the first time - because I have one or the other misunderstood sorry and thank you - ash on my main :(
  2. @raptorx myself or my customers do not use the module. but it is often because it is not activated in these settings. have you activated the cache in the shop and possibly not deleted? or in the browser.
  3. @alwayspaws hi stephanie - I'm not petty, but I do not have this code from nemo's website - look at the date
  4. @annafjmorris i like @musicmaster wonderful prestools script
  5. @raptorx please look under Modules and Services Payment is your custom payment acitve? currency / country / group / carrier ?
  6. Unfortunately, I'm still a bit desperate with the Paypal module. Constantly I have to save the data in the module (even without changing). At irregular intervals Paypal is therefore not available as a payment method for the customers or is not displayed. Only when I go into the module and just click on Save. Have I done something wrong in the settings or missing a component on the servers? I can not find anything in the log files / server errors. Have changed because of this problem months ago on the Paypal version 6. It's been an update from 5.2.4 to 5.3 or so, I'm just not sure anymore. Furthermore, at least since version 6, an additional address has been added to the master data for the customers. I find that confusing and wrong. This can cause errors in shipping, if the customer does not update his address at Paypal etc. Since I have read nothing in the forum so far, I seem to be the only one with this problem with my shops on different V-servers. TB 1.0.3 - Paypal v6 paypal missing after new saving adress from customer customer adress after paypal-payment an additonal adress paypal ??? why ???
  7. please please please admins or moderators -> move this topic to the category “tips & tricks” we are think category "technical help" is between false
  8. The module from @datakick also seems to be very cool, but we've already gotten used to the fact that it's enough for us. With the Datakick module you can test for 14 days or so.
  9. before exporting the CSV you can also choose whether comma or semicolon separated. Although the tool has a few small restrictions, these can be purchased as plugins if needed. It has helped me in many situations to facilitate the work.
  10. It is difficult to say about the module of your link. I had tried it once and it did not meet my wishes / expectations. Since I'm a fan of the tool: Depending on the desired settings, etc., you can also use the Prestools tool to wonderfully export products via csv, edit and if necessary upload changes normally via the CSV import of the shop. https://forum.thirtybees.com/topic/925/prestools-the-mass-edit-toolset
  11. @koskimaa you can find a solution example here https://forum.thirtybees.com/topic/1445/how-to-show-product-visibility-in-product-list
  12. Expand the product list with the product visibility column. Either: Controller / Admin / AdminProductsController.php or override override / controllers / admin / AdminProductsController.php. Find the following codes and replace them. Step 1 original $this->_select .= $aliasImage.'.`id_image` AS `id_image`, cl.`name` AS `name_category`, '.$alias.'.`price`, 0 AS `price_final`, a.`is_virtual`, pd.`nb_downloadable`, sav.`quantity` AS `sav_quantity`, '.$alias.'.`active`, IF(sav.`quantity`<=0, 1, 0) AS `badge_danger`'; change to $this->_select .= $aliasImage.'.`id_image` AS `id_image`, cl.`name` AS `name_category`, '.$alias.'.`price`, 0 AS `price_final`, a.`is_virtual`, pd.`nb_downloadable`, sav.`quantity` AS `sav_quantity`, '.$alias.'.`active`, '.$alias.'.`visibility` AS `my_visibility`, IF(sav.`quantity`<=0, 1, 0) AS `badge_danger`'; step 2 before if ($joinCategory && (int) $this->id_current_category) { $this->fields_list['position'] = [ 'title' => $this->l('Position'), 'filter_key' => 'cp!position', 'align' => 'center', 'position' => 'position', ]; add this $this->fields_list['my_visibility'] = [ 'title' => $this->l('Visibility'), 'align' => 'left', 'class' => 'fixed-width-xs', 'align' => center, 'havingFilter' => true, 'filter_key' => 'my_visibility', ]; If the text should be translated use this code $this->fields_list['my_visibility'] = [ 'title' => $this->l('Visibility'), 'align' => 'left', 'class' => 'fixed-width-xs', 'align' => center, 'havingFilter' => true, 'filter_key' => 'my_visibility', 'callback' => 'my_visibility_function', ]; step 3 after if ($joinCategory && (int) $this->id_current_category) { $this->fields_list['position'] = [ 'title' => $this->l('Position'), 'filter_key' => 'cp!position', 'align' => 'center', 'position' => 'position', ]; } } add with your languages between ...... or change the style public static function my_visibility_function($my_visibility_function) { if ($my_visibility_function == 'both') return '<span style="background-color : #0b9819; color : #ffffff; border-radius : 2px/2px"> Sichtbar </span>'; elseif ($my_visibility_function == 'catalog') return '<span style="background-color : #009adf; color : #ffffff; border-radius : 2px/2px"> Katalog </span>'; elseif ($my_visibility_function == 'search') return '<span style="background-color : #0020df; color : #ffffff; border-radius : 2px/2px"> Suche </span>'; else return '<span style="background-color : #6c6c6c; color : #ffffff; border-radius : 2px/2px"> Nein </span>'; } Note, if a different language is used, the filter only works with the English terms. both - catalog - search - none images only german - sorry
  13. @30knees @Cassim I use for my shops an older module from the PS forum. Here I can decide, for example, whether the meta-data description should be made from the short description of the product or from the normal long description, etc. Here I can also choose whether all products should get a new meta description or only those without content. Also a separate update of the categories is possible. The module has only two problems incompatible with php 7 and the seoupdater.php has to be adapted since it has 255 characters as standard (but is the minor problem of that). The entries with ,0,255)).'\' '; find and correct ;) I personally wanted to expand this module for myself with a cronjob, I have not spent any time on it yet 01518130288691seoupdater 0.4.zip
  14. @okom3pom I like the module very well. I am absolutely thrilled. Is it possible to extend the options? For example - VIP silver - VIP Gold - VIP Platinum
  15. So the work is much easier. With every tag entry, we had to be careful that it was correct. A wrong letter and the extra work was there. It's finally been easier for a few years now.
  16. @wakabayashi and other moderators i think this topic can move to the category "tips & tricks"
  17. @ssimard Now it works - great thanks. Unfortunately, I did not notice that in the code the class was missing.
  18. @ssimard I have data in the tag table. I've also created the two overrides Tag.php and Product.php. In the second picture there are no errors. only the white background and part of the informations.tpl with the product data. The cache is emptied and the class_index.php deleted. With Debug Mod On I get no error messages. The same negative result I get on another server with another shop.
  19. @datakick OK. I do not necessarily need 2 or more criteria at the moment. But for one of my shops with clothes I would include this consideration. The size fits or too small or too large in relation to the manufacturer's specifications. That's why I wanted to know where can I find the assessment of clients in a further criterion. To see individual ratings (stars) for customers in the FO with more than 2 criteria would be good - in the fight against ebay (ohhhh) a rating of quality, a rating for delivery time, a rating for support, .... etc The list of this topic is already very long and I have not read everything. But what I tested so far in my own demo shop, I can only say, a very good performance. Even without the option of multiple criteria, a good module so far. Good job, many thanks so far.
  20. @ssimard thanks for your answer if i try the last code it works, but if i use the code ``` {literal} {/literal} ``` i want to change my products i see this i try many changes but no luck
  21. If you want to see the customer group on orders list (from ps forum) change / httpdocs / controllers / admin / AdminOrdersController.php or create override find this CONCAT(LEFT(c.`firstname`, 1), \'. \', c.`lastname`) AS `customer`, and change to CONCAT(LEFT(c.`firstname`, 1), \'. \', c.`lastname`, \' (\', gr.`name`, \')\') AS `customer`, after LEFT JOIN `'._DB_PREFIX_.'customer` c ON (c.`id_customer` = a.`id_customer`) add LEFT JOIN `'._DB_PREFIX_.'group_lang` gr ON (gr.`id_group` = c.`id_default_group` AND gr.`id_lang`= '.(int)$this->context->language->id.') before after
  22. If you want to see group on customer list (from ps forum) create new file AdminCustomersController.php override / httpdocs / override / controllers / admin / AdminCustomersController.php ``` <?php class AdminCustomersController extends AdminCustomersControllerCore { public function construct() { parent::construct(); $this->_select .= ', g.`name` as group_name'; $this->_join .= ' LEFT JOIN `'._DB_PREFIX_.'customer_group` cg ON (a.`id_customer` = cg.`id_customer`) LEFT JOIN `'._DB_PREFIX_.'group_lang` g ON (cg.`id_group` = g.`id_group` AND g.`id_lang` = '. (int)$this->context->language->id.')'; $this->fields_list['group_name'] = array('title' => $this->l('Group')); } } ``` before -- after
  23. @ssimard This looks very good on your pictures. Could be in the category Tips & Tricks. ;) Something like that I have previously searched with PS. Unfortunately, it does not work with TB for me. Are these all the steps that need to be done or should more data be loaded on the server? I have tried to replace the lines in informations.tpl with different possibilities. Which lines did you overwrite?
  24. @datakick I installed it on a demo. Overall, it looks very good. I have not yet managed to read the entire topic. That's why I have to ask briefly: If I have at least 2 criteria, where do I recognize the different rating. Eg rating for quality, rating for criterion 2, rating for criterion 3, etc
×
×
  • Create New...