CoachFletch
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS Feed Not WorkingShould the XML format be functional? When I see the feed, as redirected to Feedburner…. and try to click on the XML button to view Feed XML…. that is when I get the error.
https://feeds.feedburner.com/Faithandhealthconnection?format=xml
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageSorry I can’t help you with your questions Stephen. To fix this issue, I ended up deleting the original post and made a new post with the same content.
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageStill looking for help with the above issue, please. Thanks!
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageI have done as you suggested above. Strange thing is happening. When I try to go back in and edit the permalink to take out the 2 at the end….. and then click OK, the 2 reappears. ;-(
And, after about 5 minutes of this post being “published” it is getting the same error message that I write about int he title of this discussion. Once again, if you strip off the backslash, it appears.
https://www.christiancoachinstitute.com/become-a-certified-christian-life-coach-2
but with the back slash… it has the error msg.
https://www.christiancoachinstitute.com/become-a-certified-christian-life-coach-2/
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageKathryn,
I think this will work … your suggestion …. BUT Goggle is going to recognize this as a different post won’t it? And it that is the case… it will lose the page rank that the original post had.
When a person searches – how to become a christian life coach – this post is number 1.
Is it possible to go the redirect route so as not to lose the juice it has built up?
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageThanks for your suggestions. Let me try that!
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox Messagecan’t I use either of these in the Admin/Dashboard:
Custom Canonical URI [?]
Custom Redirect URI [?]
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageOK….
I have changed, temporarily the post name and now it can be seen with this new name:
https://www.christiancoachinstitute.com/become-a-christian-life-coach/
Yes, i imagine ai have added a few plugins but we also have added many new posts since I have discovered that the post was no longer visible.
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageI am reluctant to rename the page because it ranks # 1 for that search term……. do you mean just to see if it will show?
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageHey zoonini…. see my comment regarding the backslash. Does that help you?
Yes, I have installed a lot of plug-ins over the last 7 months since I posted this post…… but ALL other posts and pages can be seen….. just not this one.
Forum: Fixing WordPress
In reply to: The page isn't redirecting properly. Firefox MessageThanks Sam….. I am on a Mac and have the latest FF and Safari installed and I still get similar messages using both. ??
If you drop the back slash at the end, the post can be viewed, but with it, it can not be viewed.
https://www.christiancoachinstitute.com/become-a-certified-christian-life-coach
Will this help anyone to guide me in a fix?
Got it Zack. Thanks it is working like a charm now.
All I have to do is figure out how to make it work for what i want it to do now.
This is how the functions.php template reads now:
Can you suggest exactly how it needs to be added?
<?php
// Start the engine
require_once(TEMPLATEPATH.’/lib/init.php’);// Add topnav section
add_action(‘genesis_before_header’, ‘streamline_include_topnav’);
function streamline_include_topnav() {
require(CHILD_DIR.’/topnav.php’);}
// Add widgeted footer section
add_action(‘genesis_before_footer’, ‘streamline_include_footer_widgets’);
function streamline_include_footer_widgets() {
require(CHILD_DIR.’/footer-widgeted.php’);
}// Create custom footer section
remove_action(‘genesis_footer’, ‘genesis_do_footer’);
add_action(‘genesis_footer’, ‘custom_footer’);
function custom_footer() {
require(CHILD_DIR.’/custom-footer.php’);
}// Add Custom Fields to Coaches Directory
add_action(‘genesis_before_post_content’, ‘ntg_add_coach_info’);
function ntg_add_coach_info() {
global $post;
if(in_category(79)) { ?><div class=”coach-info”>
<p>Phone: <?php echo get_post_custom_values(‘phone’, $post->id); ?></p>
<p>Email: id); ?>”><?php echo get_post_custom_values(’email’, $post->id); ?></p>
<p>Website: id); ?>”><?php echo get_post_custom_values(‘website’, $post->id); ?></p>
</div>
<?php
}
}genesis_add_image_size(‘home-top’, 400, 270, TRUE);
genesis_add_image_size(‘home-bottom’, 215, 140, TRUE);
genesis_add_image_size(‘home-extra’, 120, 100, TRUE);
genesis_add_image_size(‘thumbnail2’, 100, 100, TRUE);
genesis_add_image_size(‘thumbnail3’, 110, 110, TRUE);
genesis_add_image_size(‘thumbnail4’, 120, 120, TRUE);// Creates custom sidebar for pages other than blog
genesis_register_sidebar(array(
‘name’=>’Page Sidebar’,
‘description’ => ‘This is a custom sidebar that loads on pages only’,
‘id’ => ‘sidebar-page’
));// Force layout on homepage
add_filter(‘genesis_options’, ‘streamline_home_layout’, 10, 2);
function streamline_home_layout($options, $setting) {
if($setting == GENESIS_SETTINGS_FIELD) {
if(is_home())
$options[‘site_layout’] = ‘content-sidebar’;
}
return $options;
}// Add two sidebars to the main sidebar area
add_action(‘genesis_after_sidebar_widget_area’, ‘streamline_include_bottom_sidebars’);
function streamline_include_bottom_sidebars() {
require(CHILD_DIR.’/sidebar-bottom.php’);
}// Register sidebars
genesis_register_sidebar(array(
‘name’=>’Sidebar Bottom Left’,
‘description’ => ‘This is the bottom left column in the sidebar.’,
‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
));
genesis_register_sidebar(array(
‘name’=>’Sidebar Bottom Right’,
‘description’ => ‘This is the bottom right column in the sidebar.’,
‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
));
genesis_register_sidebar(array(
‘name’=>’Homepage’,
‘description’ => ‘This is the featured column of the homepage.’,
‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
));
genesis_register_sidebar(array(
‘name’=>’Footer #1’,
‘description’ => ‘This is the first column of the footer section.’,
‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
));
genesis_register_sidebar(array(
‘name’=>’Footer #2’,
‘description’ => ‘This is the second column of the footer section.’,
‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
));
genesis_register_sidebar(array(
‘name’=>’Footer #3’,
‘description’ => ‘This is the third column of the footer section.’,
‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
));
genesis_register_sidebar(array(
‘name’=>’Footer #4’,
‘description’ => ‘This is the fourth column of the footer section.’,
‘before_title’=>'<h4 class=”widgettitle”>’,’after_title’=>'</h4>’
));// Add Read More link to manual excerpts.
add_action(‘the_excerpt’, ‘child_add_manual_read_more’, 20);
function child_add_manual_read_more($excerpt) {if ( has_excerpt() ) {
// Trim the newline.
$excerpt = rtrim($excerpt);// Check for the <p> tags
if ( ‘<p>’ == substr($excerpt, 0, 3) && ‘</p>’ == substr($excerpt, -4) )
$excerpt = sprintf( ‘<p>%s …Read More</p>’, substr($excerpt, 3, -4), get_permalink() );
}
return $excerpt;
}// Changes automatic excerpt from […] to …Read More.
add_filter(‘excerpt_more’, ‘new_excerpt_more’);
function new_excerpt_more($more) {
return ‘ …Read More‘;
}?>
Great Zack,
I appreciate the guidance. And I imagine that it does not matter where in the functions.php template you put it…. as long as it is on a separate line. Correct?
Thanks again Zack!
Dale
Zach,
I am using the Genesis theme and a Streamline child theme.
Both have function.php templates
Which do I have to add the line above to?
Thanks,
Dale