Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
systems:wordpress:wordpress_setup_and_configuration [2014/04/17 10:39]
smayr [Move Site]
systems:wordpress:wordpress_setup_and_configuration [2018/05/03 15:03] (current)
ajdavis [Multisite Configuration]
Line 12: Line 12:
   * Test new URL. Eg: ''http://www.example.com/wordpress''   * Test new URL. Eg: ''http://www.example.com/wordpress''
  
-Alternatively, you can change the database entries like this: +Alternatively, you can change the WordPress database entries like this: 
-  * Edit file <wordpress>/wp-login.php, and find this line: <code>require( dirname(__FILE__) . '/wp-load.php' );</code> and insert the following lines below: <code>+  * Edit file ''<wordpress>/wp-login.php'', and find this line: <code>require( dirname(__FILE__) . '/wp-load.php' );</code> and insert the following lines below: <code>
 //FIXME: do comment/remove these hack lines. (once the database is updated) //FIXME: do comment/remove these hack lines. (once the database is updated)
 update_option('siteurl', 'http://www.example.com/wordpress' ); update_option('siteurl', 'http://www.example.com/wordpress' );
 update_option('home',    'http://www.example.com/wordpress' );</code> update_option('home',    'http://www.example.com/wordpress' );</code>
 +  * Visit the site one time. Eg: ''http://www.example.com/wordpress''
 +  * Remove those lines in ''<wordpress>/wp-login.php''.
  
-In phpMyAdmin, you can edit the following+In phpMyAdmin, you can edit the WordPress database as follows
-  * In the wordpress database, edit table 'wp-options'. +^ Table wp-options  ^^
-  * Change the following fields: +
 ^ option_name  ^ option_value  ^ ^ option_name  ^ option_value  ^
 | siteurl      | http://www.example.com/wordpress  | | siteurl      | http://www.example.com/wordpress  |
 | home         | http://www.example.com/wordpress  | | home         | http://www.example.com/wordpress  |
 | fileupload_url | Edit as needed (if this exists)  | | fileupload_url | Edit as needed (if this exists)  |
 +| <themename>_theme_options | Edit as needed  |
 +| _menu_item_url | Several entries that need editing | 
  
 References References
Line 31: Line 33:
   * [[http://codex.wordpress.org/Moving_WordPress#When_Your_Domain_Name_or_URLs_Change|Moving WordPress: When Your Domain Name or URLs Change]]   * [[http://codex.wordpress.org/Moving_WordPress#When_Your_Domain_Name_or_URLs_Change|Moving WordPress: When Your Domain Name or URLs Change]]
   * [[http://codex.wordpress.org/Changing_The_Site_URL|Changing the Site URL]]   * [[http://codex.wordpress.org/Changing_The_Site_URL|Changing the Site URL]]
 +
 +== Manually Remove Date from WordPress post and pages ==
 +
 +Comment out any references to ''get_the_date()'' and ''get_the_time()'':
 +<code>
 +&lt;?php echo get_the_date(); ?&gt;
 +&lt;?php echo get_the_time(); ?&gt;
 +</code>
 +
 +Edit the following theme pages (in ''//<wordpress>///wp-content/themes///<activetheme>//'') to remove date/time entries in posts or pages:
 +  * Home page: ''index.php''
 +  * Blog Posts: ''single.php'', ''post.php'', ''post-single.php''
 +  * Archive pages: ''archive.php''
 +  * Category pages: ''category.php''
 +  * Pages: ''page.php ''
 +
 +References
 +  * [[http://bornvirtual.com/wordpress/remove-date-from-wordpress-post/#ixzz2zGh2ZbqT|Remove date from WordPress post]]
 +
 +
 +== Installed Plugins ==
 +  * BAW Login/Lougout menu: Add login/logout link in menus.
 +  * Contact Form to Email: Contact form.
 +  * Google Language Translator: Translate pages into multiple languages.
 +  * iframe: Shortcode to embed arbitrary webpage in an iframe in posts or pages.
 +  * Sky Login Redirect: Redirects users to the page they were reading just before logging in.
 +  * WP Content Permissions: Display different content for login and guest users.
 +
 +== Multisite Configuration ==
 +  * [[http://codex.wordpress.org/Create_A_Network|Create a Network]]
 +  * [[http://codex.wordpress.org/Multisite_Network_Administration|Multisite Network Administration]]
 +
 +== Update Content ==
 +Login to ''//<sitedomain>///en/wp-admin/'' to update the content:
 +  * Home page:
 +    * Pages > Welcome.
 +  * Products
 +    * Posts, then Add or Edit the current products.
 +  * Contact (footer box):
 +    * Appearance > Widgets.
 +    * Select Footer Widget Area 3, and edit the Text:Contact box.
 +  * New Product (right sidebar box):
 +    * Appearance > Widgets.
 +    * Select Footer Primary Sidebar, and edit the 'Info Box:New Product'.
 +  * Header Logo:
 +    * Appereance > PersonalFinance Theme Options
 +    * General > Logo Image
 +