Skip to main content

Posts

Showing posts with the label Marketing

Increase WordPress Memory Limit in WordPress

If you ever had error that reads. "allowed memory size of xxx bytes exhausted", then you need to increase WordPress memory limit. Here is the way to solve it. Simply open you wp-config file, located at the root of your WordPress install and paste the following code in it. once saved, WordPress will be able to use as much memory as specified. define('WP_MEMORY_LIMIT', '128M'); If you enjoyed this article, please consider sharing it!

Remove AutoLinks In comments WordPress Hack

There's lots of spammers on the internet who take the advantage of default feature of WordPress of Autoimatically turns urls left in the comment form into links. If you want to remove here is a Hack tip . To remove automatic linking of urls in comments, simply open your functions.php file and paste the following code:    remove_filter('comment_text', 'make_clickable', 9); That's all Once saved, you can say bye bye to spammy links in comments. If you enjoyed this article, please consider sharing it!