View gist:5162f918a114d798987a9120c4ec257a
.modal-backdrop { | |
display: none; | |
} |
View gist:b60a6fa40915ba83852ec1f500bdee10
[newsletters_meta key="_regular_price"] |
View gist:4c3901a591a526362194dbb563294d8e
[newsletters_posts language="en" showdate="N" eftype="excerpt" orderby="post_date" order="ASC" thumbnail_size="thumbnail" thumbnail_align="left" thumbnail_hspace="15" category="" post_type="product"] |
View auto-iframe-height.html
<!-- Auto iFrame Height Instructions: https://www.lost-in-code.com/programming/javascript/javascript-auto-iframe-height/ --> | |
<iframe class="autoHeight" id="myframe" name="myframe" src="http://example.com/iframe.php" height="240" width="320" frameborder="0" scrolling="auto"></iframe> |
View auto-iframe-height.html
// Auto iFrame Height instructions: https://www.lost-in-code.com/programming/javascript/javascript-auto-iframe-height/ | |
<script type="text/javascript" src="autoheight.js"></script> |
View ssl
RewriteEngine On | |
RewriteCond %{SERVER_PORT} 80 | |
RewriteCond %{REQUEST_URI} folder | |
RewriteRule ^(.*)$ https://www.yourdomain.com/folder/$1 [R,L] |
View ssl
RewriteEngine On | |
RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC] | |
RewriteCond %{SERVER_PORT} 80 | |
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L] |
View ssl
RewriteEngine On | |
RewriteCond %{SERVER_PORT} 80 | |
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L] |
View wp-config.php
define('WP_TEMP_DIR', dirname(__FILE__) . '/wp-content/temp/'); |
View mailinglists.php
<?php | |
global $Mailinglist; | |
$mailinglists = $Mailinglist -> select(true); | |
//print_r($mailinglists); | |
?> |
NewerOlder