WordPress: things I should look into soon,
Good plugins.
What To Do Or Consider After You Enable Multisite In WordPress
http://wpmu.org/20-essential-plugins-for-wordpress-multisite/
Snapshot database backup, need to test out.
Our Life in Real Time
WordPress: things I should look into soon,
Good plugins.
What To Do Or Consider After You Enable Multisite In WordPress
http://wpmu.org/20-essential-plugins-for-wordpress-multisite/
Snapshot database backup, need to test out.
MOG-ish ideas
http://www.basicsfitnessme.com/
http://www.sacofitness.com/default.asp
Instructions:
http://codex.wordpress.org/Create_A_Network
**************
I didn’t read this, but probably should:
http://codex.wordpress.org/Before_You_Create_A_Network
**************
Activate plugins on singles:
Go to network admin. Install a plugin. Do not activate it.
Go to a sub site. See the newly installed plugin in the list. Activate it.
Yes, it’s a bit more of a run around if you just want to fiddle with a plugin or two on one site.
**************
Plugin, Probably won’t use:
http://wordpress.org/extend/plugins/network-latest-posts/
**********************
The .htaccess file
http://wordpress.org/support/topic/need-hosting-advice
should look like this:
#BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
#END WordPress
WordPress shopping carts
http://wordpress.org/extend/plugins/wp-online-store/screenshots/
http://thecartpress.com/
http://wordpress.org/extend/plugins/simple-e-commerce-shopping-cart/screenshots/
http://wordpress.org/extend/plugins/apptivo-ecommerce/
http://wordpress.org/extend/plugins/woocommerce/screenshots/
http://wordpress.org/extend/plugins/wordpress-ecommerce/screenshots/
http://wordpress.org/extend/plugins/thecartpress/screenshots/
http://wordpress.org/extend/plugins/ecommerce-feeder/
http://wordpress.org/extend/plugins/orderstorm-wordpress-e-commerce-custom/screenshots/
http://wordpress.org/extend/plugins/ready-ecommerce/
That moment when you realized you’ve spent far to much time fighting with the admin of the demo/build site trying to fix the live site.
Sites Worth: http://www.sitetrend.info/stuckathomemomcom/stuckathomemom.com
images:
http://freevectors.co/index.php
http://azmega.com/
http://www.1000vectors.com/
wordpress theme iphone: http://translate.google.com/translate?hl=en&sl=zh-CN&u=http://themes.wopus.org/wpthemes/cn-wordpress-themes/4733.html&prev=/search%3Fq%3DWarning:%2Bsimplexml_load_file%28%29%2B%255Bfunction.simplexml-load-file%255D:%2BI/O%2Bwarning%2B:%2Bfailed%2Bto%2Bload%2Bexternal%2Bentity%2B%2522http://mufeng.me/iphoto/notifier.xml%2522%26hl%3Den%26biw%3D1600%26bih%3D752%26prmd%3Dimvns&sa=X&ei=IQtEUNA5h4zpAbmhgKgM&ved=0CDwQ7gEwAw
Would love to do this type of grid to my blog: http://www.opendesigns.org/od/wp-content/designs/0/590/?KeepThis=true&TB_iframe=true
Demo: http://www.opendesigns.org/design/blacknorange/
Looks ugly, but I could fix that.
CSS shadowing: http://www.css3.info/preview/box-shadow/
Removing the header: #header h1 { display:none }
How to Theme WordPress
http://blog.spoongraphics.co.uk/tutorials/how-to-build-a-custom-wordpress-theme-from-scratch
http://blog.spoongraphics.co.uk/tutorials/how-to-build-a-stylish-portfolio-web-design-concept
How to remove the theme update:
remove_action( 'load-update-core.php', 'wp_update_themes' );
add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
wp_clear_scheduled_hook( 'wp_update_themes' );
Or deactivate the theme you want to change the update.
Rename the theme you don’t want to show an update.
Reactivate the theme you don’t want to update.