good catch, that was helpful ! Both plugins occupy the same menu position. Just happens that W4 won.
if you are comfortable with the built in plugin editor:
go to classyfrieds -> init.php and put 2 slashes in front of the menu postion line (line 29 ) as follows :
// create the custom posts
function create_classyfrieds_type() {
register_post_type('classyfrieds',
array(
'description' => 'classified listings for the classyfried system',
'public' => true,
//'menu_position' => 6, <<<<-----------<<<<---------
'show_ui' => true,
'show_in_menu' => true,
'show_in_admin_bar' => true,
'capability_type' => 'post',
'hierarchical' => false,
This will move the whole classyfrieds block to the bottom of the menu tree. Although we don’t like being last in the list we’ll remove the line in the next update ??
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]