Tag Archives: wordpress

Fix “Post Types Order” plugin error with HTTPS

The WordPress Plugin Post Types Order by NSP CODE is helpful in as it allows you to Order Posts and Post Types Objects using a Drag and Drop Sortable javascript capability But unfortunately the plugin does not work with wordpress … Continue reading

Posted in Tech Tips, Web Development | Tagged , , , , , | Leave a comment

WordPress: Change Insert Link (list) to use short permalinks with post ID

in wp-includes/class-wp-editor.php, change the line that has the permalink from ‘permalink’ => get_permalink( $post->ID ), to ‘permalink’ => ‘/?p=’.$post->ID, That was line 749 in version 3.3 beta 1 function wp_link_query( $args = array() ) { $pts = get_post_types( array( ‘public’ … Continue reading

Posted in Web Development | Tagged | Leave a comment

Breadcrumb NavXT: Remove category

If you’re using the breadcrumb navxt plugin and trying to remove categories from showing up, such as Home -> Blog -> Uncategorized -> Post Title (a common request), you have to do a bit of trickery to accomplish this. You … Continue reading

Posted in Tech Opinion, Web Development | Tagged , , , | Leave a comment

Akismet Hacked

If your WordPress site has been compromised, try checking out your Akismet plugin. It’s so commonly used that its often subject to attacks. If any of these files are showing up in your plugins folder, you may be the subject … Continue reading

Posted in Security, Web Development | Tagged , , , | Leave a comment

Multiple Post Thumbnails Plugin Broken (and Fixed)

The Multiple Post Thumbnails plugin is not working for me using WP 3.2.1. Apparently the function can not determine the ID of the related post with the current setup, that happens around line 190, “public static function get_the_post_thumbnail” My proposed … Continue reading

Posted in Web Development | Tagged , , | 1 Comment

How To Reset Permissions after using WordPress “Members” plugin

You may have noticed while using the WordPress Members plugin a certain disclaimer: Any changes you make to users and roles using this feature are permanent changes. What I mean by this is that if you deactivate or uninstall this … Continue reading

Posted in Web Development | Tagged , , | Leave a comment

Accutane WordPress Hack

If your wordpress site is showing “Buy Accutane Online” in the Google Results, it’s because one of the plugins you’re using is not safe. One plugin know for this exploit is the “My Page Order” plugin by geekyweekly. I’d suggest removing … Continue reading

Posted in Tech Tips, Web Development | Tagged , | Leave a comment

Enable Featured Images in WordPress MU Multi Site

Multisite and WordPress Featured Images / Post Thumbnails Post Thumbnail is a theme feature introduced with Version 2.9. Thumbnail is an image that is chosen as the representative image for Posts, Pages or Custom Post Types. The display of this … Continue reading

Posted in Web Development | Tagged | Leave a comment

WordPress: How to wp_enqueue_script jquery-ui / autocomplete

If you are trying to enqueue jquery’s autocomplete in wordpress, I’d suggest just using the remote version through google’s CDN / API site. You can deregister the jquery-ui with the first line of code, re-register it with the second line … Continue reading

Posted in Web Development | Tagged , , , | 3 Comments

How to Remove the <ul> container with the wp_nav_menu function

Although WordPress has an option to remove the container from the wp_nav_menu function, that is generally fort the <div> and not the <ul> that wraps the <li> items. So, while you can use the options to remove the <div>, the … Continue reading

Posted in Tech Tips, Web Development | Tagged | 7 Comments