Quick Tut! - Replace 'no images'
Rather than have the text 'no images' display on an ad you might want to replace this text with an image.
Create an image (something around 50px x 50px is fine) to replace the text and upload to the classipress images folder.
Then go to classipress/functions.php
Around line 87 look for -
Code:
if ( $matches[0] == "") {
_e('There are no images','cp');
}
Replace this with -
Code:
if ( $matches[0] == "") {
_e('','cp');
}
Of course, it's best NOT to edit core files and I hold no responsibility for any problems caused by using this Quick Tut!