taymbrown
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Syntax error: Website down. Please help!Replace default-constants.php with the new one?
Forum: Fixing WordPress
In reply to: Syntax error: Website down. Please help!Now I have this error:
”
Fatal error: Call to undefined function wp_convert_hr_to_bytes() in /home/thesty28/public_html/wp-includes/default-constants.php on line 32″Forum: Fixing WordPress
In reply to: Syntax error: Website down. Please help!Thank you for your prompt responses, Steve. I have done what you said, and now I have just one error message.
“Fatal error: Cannot redeclare is_ssl() (previously declared in /home/thesty28/public_html/wp-includes/load.php:964) in /home/thesty28/public_html/wp-includes/functions.php on line 3758”
Forum: Fixing WordPress
In reply to: Syntax error: Website down. Please help!Steve, will I have to start everything from scratch after doing so?
Forum: Fixing WordPress
In reply to: Syntax error: Website down. Please help!//////////////////////////////////////////////////////////////////
// THE EXCERPT
//////////////////////////////////////////////////////////////////
function custom_excerpt_length( $length ) {
return 200;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );function sp_string_limit_words($string, $word_limit)
{
$words = explode(‘ ‘, $string, ($word_limit + 1));if(count($words) > $word_limit) {
array_pop($words);
}return implode(‘ ‘, $words);
}Forum: Fixing WordPress
In reply to: Images on Mobile Website Too BigShannon, thank you for your response. I tried that but no dice–Nothing changed.
Forum: Fixing WordPress
In reply to: How to Center Featured Images on Blog Posts?That worked! But now its just a little too far to the right… how does that work? Ha!
Forum: Fixing WordPress
In reply to: How to Center Featured Images on Blog Posts?Is there a way I can get my featured image centered and keep my sidebar? I’d like to keep it.. my post pictures are center, just not the featured image which is why it bothers me that it doesn’t seem like a simple fix.
christomwebdesign, I tried that code and it worked, but my side bar moved to the bottom of my page.
Thank you guys for your help — if there is a way to keep the side bar and center that image, please let me know. 🙂