-
Recent Posts
Recent Comments
Archives
- August 2020
- March 2020
- December 2019
- July 2019
- June 2019
- May 2019
- March 2019
- August 2018
- July 2018
- May 2018
- March 2018
- September 2017
- August 2017
- May 2017
- April 2017
- January 2017
- November 2016
- October 2016
- September 2016
- August 2016
- June 2016
- May 2016
- April 2016
- November 2015
- October 2015
- September 2015
- August 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
Categories
Meta
Author Archives: admin
Troubleshoot: Fix Internet Explorer 8 mess up WordPress themes
Use this service to test the pages https://netrenderer.com https://developer.microsoft.com/en-us/microsoft-edge/ https://ckon.wordpress.com/2009/03/19/how-to-fix-internet-explorer-8/ Download virtual machines Test Microsoft Edge and versions of IE8 through IE11 using free virtual machines you download and manage locally. https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ https://developer.microsoft.com/en-us/microsoft-edge/tools/screenshots/
Posted in troubleshoot
Tagged browser, ie, internet explorer, themes, wordpress
Comments Off on Troubleshoot: Fix Internet Explorer 8 mess up WordPress themes
Prestashop: Remove unnecessary bank details from bottom of PDF invoice
Solution: unhooking the paypal module from the displayPDFInvoice hook will also work. If bank details are required, after unhooking, install the module from this post https://www.prestashop.com/forums/topic/119664-solved-generate-pdf-invoices-bank-wire-payment/?do=findComment&comment=2530505 Works for Prestashop 1.6 Source: https://www.prestashop.com/forums/topic/119664-solved-generate-pdf-invoices-bank-wire-payment/?p=2498597 and https://www.prestashop.com/forums/topic/560290-upgrade-1617-problem-with-invoice-pdf-template/?p=2541899
Posted in ecommerce, modules
Tagged invoice, paypal, prestashop
Comments Off on Prestashop: Remove unnecessary bank details from bottom of PDF invoice
Excel: Add, remove, update drop down lists
Source: https://www.ablebits.com/office-addins-blog/2014/09/24/excel-drop-down-list/ https://www.extendoffice.com/documents/excel/2587-excel-update-drop-down-list.html#a1
Posted in Excel
Comments Off on Excel: Add, remove, update drop down lists
Language: English Chinese translation for fashion design terms
Translation text source: https://www.douban.com/group/topic/5986386/ aceta lining 亚沙迪里布 air freight 空运费 allover embroidery 全身绣花 antistatic finish 防静电处理 apparel 成衣 applique 贴布绣 approved swatch 经认可的样布 armhole, scye 夹圈, 袖窿, 袖笼,袖孔 ART. NO. /style NO. 款号 assembling of front & back part 前后幅合并 … Continue reading
Posted in Translation
Comments Off on Language: English Chinese translation for fashion design terms
How do I copy all file names in a folder to notepad?
source: https://answers.microsoft.com/en-us/windows/forum/windows_7-files/how-do-i-copy-all-file-names-in-a-folder-to/5a4b8da9-123a-4c98-b4aa-1260b38409a2?auth=1 For example if you wanted to get an output of the following folder, C:\Users\{username}\Pictures\Summer Vacation Navigate to that folder in Windows Explorer. Hold down the shift key and RIGHT click on Summer Vacation folder. You will see a … Continue reading
Posted in time-savers
Comments Off on How do I copy all file names in a folder to notepad?
Remove line breaks using Microsoft Word
Find ^p, replace with Find ^p, replace with http://www.iom3.org/web-editors-community/news/2011/jun/21/how-instantly-remove-unwanted-line-breaks-when-copying-pdf
Prestashop: Export Pro for products, categories, combinations (paid module)
Recommended: https://www.prestashop.com/forums/topic/429028-module-export-pro-csv-export-products-combinations-customers-categories-orders-addresses/ Free version with less features: https://www.prestashop.com/forums/topic/37900-free-module-products-export-module-v253-updated-23032016/
Posted in ecommerce, modules
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Export Pro for products, categories, combinations (paid module)
Prestashop: Add editable product date added field in admin (prestashop 1.6)
Source: https://www.prestashop.com/forums/topic/126518-change-date-for-products-in-bo-date-add/?p=1947106 Add it to line 134 of: admin folder\themes\default\template\controllers\products\informations.tlp The if is added in case this is a new product and there is no existing date added data {if $product->date_add} <div class=”form-group”> <label class=”control-label col-lg-3″></td> <span class=”label-tooltip” data-toggle=”tooltip” title=”{l … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Add editable product date added field in admin (prestashop 1.6)
WordPress: Responsive video (mp4 video inserted from media library)
Changed the wordpress wp-includes/media.php file. Probably not the best way to do this. Ref: https://codex.wordpress.org/Video_Shortcode At around line 2504, comment out the following: $html_atts = array( ‘class’ => $atts[‘class’], ‘id’ => sprintf( ‘video-%d-%d’, $post_id, $instance ), ‘width’ => $atts[‘width’], //’width’ … Continue reading