richcoy
Forum Replies Created
-
Resetting Permalinks and changing them to “Post name” fixed this issue if anyone else experiences this.
- This reply was modified 2 years, 2 months ago by richcoy.
I should add that if I got into the URL and remove the /general and just have /?updated=account it works.
Forum: Networking WordPress
In reply to: Multisite UpdateI’m having the same issue. Clicking the blue Update Now button goes to a page that has the heading Update WordPress but the rest of the page is blank and nothing ever happens. I tried deactivating all plugins, no luck. Trying to update my network from 3.6 to 3.6.1.
Forum: Plugins
In reply to: [OptionTree] Create Non Theme Options Admin Page?Perfect. Thanks!
Forum: Plugins
In reply to: [SlimStat Analytics] Site map showing 404?Nevermind, seems to have worked itself out. I switched sitemap plugins and now everything is fine so it probably had nothing to do with your plugin. Thanks.
Forum: Themes and Templates
In reply to: How to change page template…Looking in the header.php file I find this code:
<?php $mee_page_id = 'inner-page'; $mee_inner_id =''; if (is_home()){ $mee_page_id = 'page'; } if (isset($mee_inner_id['custom']['inner-page'])) $mee_inner_id = $mee_option['custom']['inner-page']; ?> <body id='<?php echo $mee_page_id; ?>' <?php echo $mee_inner_id; ?>>
I’m not sure why the signup page is being seen by this code as is_home but that seems to be the issue. Any ideas where is_home would be set for that page?
Rich
Forum: Networking WordPress
In reply to: Getting a "Not Found" on page titleI’ve gone into the header template and took out all the code and hardcoded in a title. I’d rather have the same title on all pages than have a “Not Found” title on my sign up page. ?? Thanks for your help.
Rich
Forum: Themes and Templates
In reply to: How to change page template…THanks for your help. That’s just the problem though, there is no body tag on wp-signup.php There are a bunch of functions I don’t understand. I tried to track backwards and see where the body is set but can’t locate it.
Here is the code from the top of wp-signup.php
<?php /** Sets up the WordPress Environment. */ require( dirname(__FILE__) . '/wp-load.php' ); add_action( 'wp_head', 'signuppageheaders' ) ; require( 'wp-blog-header.php' ); require_once( ABSPATH . WPINC . '/registration.php' ); if ( is_array( get_site_option( 'illegal_names' )) && isset( $_GET[ 'new' ] ) && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) == true ) { wp_redirect( network_home_url() ); die(); } function do_signup_header() { do_action("signup_header"); } add_action( 'wp_head', 'do_signup_header' ); function signuppageheaders() { echo "<meta name='robots' content='noindex,nofollow' />\n"; } if ( !is_multisite() ) { wp_redirect( get_option( 'siteurl' ) . "/wp-login.php?action=register" ); die(); } if ( !is_main_site() ) { wp_redirect( network_home_url( 'wp-signup.php' ) ); die(); } // Fix for page title $wp_query->is_404 = false; function wpmu_signup_stylesheet() { ?> <style type="text/css"> .mu_register { width: 90%; margin:0 auto; } .mu_register form { margin-top: 2em; } .mu_register .error { font-weight:700; padding:10px; color:#333333; background:#FFEBE8; border:1px solid #CC0000; } .mu_register input[type="submit"], .mu_register #blog_title, .mu_register #user_email, .mu_register #blogname, .mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; } .mu_register .prefix_address, .mu_register .suffix_address {font-size: 18px;display:inline; } .mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; } .mu_register label.checkbox { display:inline; } .mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; } </style> <?php } add_action( 'wp_head', 'wpmu_signup_stylesheet' ); get_header(); do_action( 'before_signup_form' ); ?>
Forum: Themes and Templates
In reply to: How to change page template…Thanks. How will that change to the CSS affect my home page though, that needs the bigger background?
https://www.easyministrysite.com
The CSS looks like this:
#page { background:#fff url(../images/background.jpg) repeat-x; } #inner-page { background:#fff url(../images/inner-background.jpg) repeat-x; }
So it seems like I need to change the signup page body tag to inner-page but I don’t know where that is being set.
Forum: Networking WordPress
In reply to: Getting a "Not Found" on page titleYes, It’s just the sign up page and no not hosted on godaddy. I’m hosted with HostGator.com on a VPS.
Here is the page:
https://easyministrysite.com/signup.php?Member=1
Thanks.
Rich
Forum: Themes and Templates
In reply to: How to change page template…Page should look like this one: https://easyministrysite.com/signup.php?Member=1
Problem Page: https://easyministrysite.com/wp-signup.php