This version includes some security fixes and some minor bug fixes, SWIFT now validates every option entered . There are no major visual changes to this version except for the changes to page navigation plugin styling. Demo Download
Renaming Custom Post Types and Taxonomies in WordPress
If you change the name of custom post types, all the posts published with the previous name will lead to 404 error. Run this small SQL query to rename your post types and taxonomies without any problems. [php]UPDATE `wp_posts` SET `post_type` = ‘<new post type name>’ WHERE `post_type` = ‘<old post type name>’;[/php] [php]UPDATE `wp_term_taxonomy`
About the new logo and home page redesign
As I told you in my post here, version 5.67 of SWIFT is something that I always wanted as a blogger. It’s mission accomplished for me. Now that I have something that I’m proud of, it’s time to present it to the world in its best face. I wanted a logo that represents the objectives
[update] Version 5.71 with advertising bug fix and some minor changes.
There was a small bug in advertising options of the last version. It’s fixed in this version. Other minor changes include Corrected the code generating the java script file. This should fix the problems with the masonry script. Adjustments to magazine layouts, so that there is no empty space at the end of last column.
For those who don’t like the alignment of magazine boxes by Masonry script in SWIFT v5.70 and above.
As some of you didn’t like the alignment of the mag boxes by masonry script in the latest version of SWIFT, here is a fix for you. Adjust the thumbnail sizes by modifying the following code in fucntions.php and regenerate thumbnails. [php] add_image_size(‘mag1’,167, 100,true ); add_image_size(‘mag2’,281,140 ,true ); [/php] Play with the height values only,