Set WordPress cookie domain in wp-config.php.
define('COOKIE_DOMAIN', 'www.yoursite.com');
Pages
Other stuff
Set WordPress cookie domain in wp-config.php.
define('COOKIE_DOMAIN', 'www.yoursite.com');
Remove automatic modification of quotation marks (e.g. " to opening and closing quotation marks) by entering the following 4 lines to the functions.php file of your theme.
remove_filter('the_content', 'wptexturize');
remove_filter('the_title', 'wptexturize');
remove_filter('the_excerpt', 'wptexturize');
remove_filter('comment_text', 'wptexturize');
As the code says, it removes the wptexturize filter, which does other things as well, e.g. changes double dashes (--) to — characters, so unfortunately [...]
Want to move that jQuery and other js references from header to footer? Try JavaScript to Footer plugin.
These 3 steps will help you to set up cookie free JavaScript, CSS and other files for your WordPress installation. (This is especially helpful for changing the domain of certain JS/CSS file references added by plugins.)
Before you start, make sure your blog URL has a leading www (e.g. www.example.com, not example.com). (Cookie-tech-stuff)
Step 1) Create a [...]
Note to self. When building WP sites with several js/css files, remember to include WP Minify with the regular plugins.