Linda will
- move all historical photos to the new site.
- move recipes
- move sutra/teaching
- move reflections
Grace will
- add 2013 2014 gallery and album
- create new logo
- polish landing page. http://buddhagate.org/
body {
font-family: “HelveticaNeue-Light”, “Helvetica Neue Light”, “Helvetica Neue”, Helvetica, Arial, “Lucida Grande”, sans-serif;
font-weight: 300;
}
If you are using the Qtranslate plugin I’ve used a quick and dirty solution through CSS.
In plugins Qtranslate click on Edit
select this file: qtranslate/qtranslate_hooks.php
scroll down until you find this line:
echo “#qtrans_textarea_content { padding:6px; border:0 none; line-height:150%; outline: none; margin:0pt; width:100%; -moz-box-sizing: border-box;”;
Inside this CSS I’ve added height:400px;
Looks like this:
echo “#qtrans_textarea_content { padding:6px; border:0 none; line-height:150%; height:400px; outline: none; margin:0pt; width:100%; -moz-box-sizing: border-box;”;
Hopes this helps some people for a while, you can set any height you wish it to be. It’s very quick and dirty at least it solves the annoyance of having to drag it all the time 😉
Disable Updates Manager plug in…
Disabling automatic updates in WordPress is easy. Simply add this line of code in your wp-config.php
file:
1 |
define( 'WP_AUTO_UPDATE_CORE' , false ); |
This will disable the WordPress automatic updater, and you will still get notified when there is a new version available, so you can update at your own convenience.
We hope that you found this tip useful. What are your thoughts automatic updates? Would you keep them enabled or use the above method to disable them? Let us know by leaving a comment below.