Hi,
Images of my osclass website are named as 1234,1324 like numbers and as you know it's very bad for the SEO.
How can i rename them as listing title+above number(to prevent repeat content).
I searched in forum and found following solution.
---------------------------------------
In this case, you should edit item.php:
So all you need is this: alt="<?php echo osc_item_title().' '.osc_item_region().' '.osc_item_city().' '.osc_item_category();?>"
<div class="item-photos">
Code: [Select]
<a href="<?php echo osc_resource_url(); ?>" class="main-photo" title="<?php _e('Image', 'bender'); ?> <?php echo $i+1;?> / <?php echo osc_count_item_resources();?>">
<img src="<?php echo osc_resource_url(); ?>" alt="<?php echo osc_item_title().' '.osc_item_region().' '.osc_item_city().' '.osc_item_category();?>"
<?php echo osc_highlight( strip_tags( osc_item_description() ) ); ?>" title="<?php echo osc_item_title(); ?>" />
</a>
----------------------------------------------
But there is no such code in item.php to replace.
Please help me.
Thanks for nice theme.