This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
angular.module('ngFileDND', ['ng']) | |
.directive('dropZone', function () { | |
return { | |
restrict: 'E', | |
scope: { | |
message: '@', | |
accept: '@', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ms-formula, | |
.ms-templatepicker select, | |
.ms-propertysheet th.ms-vh2-nofilter-notextalign, | |
.ms-dspadapterlist, | |
.ms-sectionheader, | |
.ms-linksectionheader, | |
.ms-sectionhighlight-top, | |
table.ms-pageinformation,table.ms-createpageinformation, | |
.ms-pageinformation table td,.ms-createpageinformation table td, | |
.ms-pageinformation h3.ms-standardheader, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
[Parameter(Mandatory=$True)] | |
[string]$FilePath | |
) | |
$Files = Get-ChildItem "$FilePath\*.docx" | |
$Word = New-Object -ComObject Word.Application | |
Foreach ($File in $Files) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'woocommerce_enqueue_styles', 'my_woocommerce_styles' ); | |
function my_woocommerce_styles($styles){ | |
unset($styles['woocommerce-layout']); | |
unset($styles['woocommerce-smallscreen']); | |
$styles['woocommerce-layout'] = array( | |
'src' => get_stylesheet_directory_uri() . '/woocommerce-layout.css', | |
'deps' => '', | |
'version' => '1.0.0', | |
'media' => 'all' |