WordPress won’t display errors at all
WordPress won’t display errors at all
WordPress won’t display errors at all
A simple form submission but notice : Trying to get property of non-object
Object of class WP_Post could not be converted to string
Woocommerce is a fork (modified copy) of Jigoshop. You can run just one of those plugins, not both. The error is a result of declaring the same function declared two times, because this function was not changed in Woocommerce. The pages installed by Jigoshop were probably removed during the uninstall process. You will either find … Read more
The error “Cannot modify header information, headers already sent” often occurs when you have white space before the opening php tag, or after the closing php tag.
Ok, removed my first answer, that is why it is important to give as much info in your question as possible. You cannot copy functions from your parent theme to your child theme. You also cannot coipy the parent themes functions.php to your child theme The only time you can keep the same function name … Read more
Fatal error: Allowed memory size of bytes exhausted (tried to allocate 36 bytes)
You should enable WP_DEBUG mode, so that the white screen of death will give you a more useful error message. The white screen could be caused by a typo, but it looks ok to me. Does your host have simplexml_load_string()? If you don’t have the simple XML library, that could be why returning $setlink works, … Read more
You are using too many static pages. Pages are hierarchical and wordpress doesn’t handle page that well. The same goes for Custom Post Type with hierarchical option set. The only solution here is to ask your host to increase your RAM size. That will solve the problem for now. But if you continue to add … Read more
Add the following to your wp-config.php define( ‘WP_SITEURL’, ‘www.amandabarise.com/singer’ ); define(‘WP_HOME’, ‘www.amandabarise.com/singer’); That should make the site work again, but try to correct the values, and read this