May 8, 2017May 8, 2017prestashop prestashop: no follow causing w3 non-compliance The problem I believe has to do with changes on standards. The w3 validator shoes as an error to have multiple rel="example" […]
May 7, 2017November 30, 2019prestashop prestashop: add google custom search header.tpl line 135 Search box Code <div class="google-search" > <div id="global_shipping"><span>In Service Since 2009</span></div> <script> (function() { var cx = 'XXXXXXXXXXXXXXXXXXXXXXXX'; […]
May 7, 2017November 21, 2021prestashop prestsahop: edit variables I wanted to change the Manufacturer Name variable, to eliminate the spaces and replace it with a dash. I tried doing this […]
April 22, 2017November 30, 2019seo seo: compress images using imagemagick convert /var/www/html/XXXXXXX/themes/default-bootstrap/img/manufacturers/ABB-big.jpg -strip -resize 333x333 -quality 85 -interlace JPEG -colorspace Gray/RGB /var/www/html/XXXXXXX/themes/default-bootstrap/img/manufacturers/ABB-big-compressed.jpg
April 20, 2017sugarcrm sugarcrm: delete custom field You have to check for following things. 1) Remove custom field entry in table "fields_meta_data" 2) Remove field from module_name_cstm table 2) […]
March 22, 2017prestashop prestashop: optimizing store for seo CSS Optimization: Every time you load a page it has to load the Global.css file which is big, and all the info […]
February 28, 2017postgresql postgresql: limit 1 on group by It's stupidly complicated to get just one record per group on a PostgreSQL query... After an hour of trial and error this […]
December 22, 2016December 22, 2016mautic mautic: remove bounces My Method: Send the email and get the bounces on my email. Select all the bounced emails on Outlook and save them […]
December 18, 2016ubuntu ubuntu: enable password authentication You need to change the config file for the ssh server and restart the server. alter /etc/ssh/sshd_config: PasswordAuthentication yes then restart the […]
December 6, 2016December 6, 2016prestashop prestashop: clean database DELETE w FROM product_shop w LEFT JOIN product e ON w.id_product = e.id_product WHERE e.id_product IS NULL DELETE w FROM product_lang […]