To disable all WordPress plugins via the database, run the following SQL command:
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
To disable all WordPress plugins via the database, run the following SQL command:
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
On Amazon EC2, even with a properly configured HTACCESS file, permalinks will not work, resulting in 404 error pages.
Continue reading “Allow WordPress to Use Permalinks on Amazon EC2”I was building a Divi site for a client and they wanted a dramatically different looking header for interior pages. The visual differences couldn’t be accomplished with CSS alone. There had to be some structural changes.
Continue reading “Different headers in Divi”My client wanted to integrate Event Espresso with ConstantContact. Unfortunately, Event Espresso did not already have an add-on that provided this integration — they do have one for MailChimp, if that helps you. Credit to the developers of the MailChimp add-on, because I referenced some of their code in creating the ConstantContact integration.
Continue reading “Event Espresso ConstantContact Integration”I’ve used this technique on several different projects, all relating to fetching Joomla article content via an Ajax call and appending tmpl=component at the end of the URL. As I’ve lamented before, adding tmpl=component does display only the contents of the page without the surrounding context, but it also loads the jQuery and Bootstrap frameworks.