I get this: atal error: Call to undefined function the_content_limit() in /home/mdub/public_html/forumsuccess.net/wp-content/themes/Basic/includes/default.php on line 19 And the 19th line is: <?php } (18th) else { echo ''; } ?> (19th) Is there spacing probs or somthing?
would it be alright to see the entire contents of the "IF" statement? Would probably help a lot. I often get things like this if I add an if statement into the middle of some code and either forget a } or have too many }'s I could probably tell you more with a bit more code.
Yes, no use if we can't see the whole if-then statement. Obscure the variable names or values if you must. So instead of writing if ($url=="myhomepage.com") {...} just write if ($url=="yawish, right?") {...} ::emp::
You are trying to use a function: the_content_limit that isn't declared. Declare it like: function the_content_limit(){ // the code } Peace,
I searched google with your problem the_content_limit() , and it seems this is an issue with the plugin content_limit has not been installed properly. check the page http://www.revolutiontheme.com/support/viewtopic.php?f=3&t=633. I hope this helps.