Osclass forums
Support forums => Themes => Modern => Topic started by: design on November 20, 2013, 01:38:43 am
-
using this full code how do I get it to pull my category 8 (jobs) only?
I want it to pull premiums et all
<div class="latest_ads">
<h1><strong><?php _e('Latest Listings', 'modern'); ?></strong></h1>
<?php if( osc_count_latest_items() == 0) { ?>
<p class="empty"><?php _e('No Latest Listings', 'modern'); ?></p>
<?php } else { ?>
<table border="0" cellspacing="0">
<tbody>
<?php $class = "even"; ?>
<?php while ( osc_has_latest_items() ) { ?>
<tr class="<?php echo $class. (osc_item_is_premium()?" premium":""); ?>">
<?php if( osc_images_enabled_at_items() ) { ?>
<td class="photo">
<?php if( osc_count_item_resources() ) { ?>
<a href="<?php echo osc_item_url(); ?>">
<img src="<?php echo osc_resource_thumbnail_url(); ?>" width="75" height="56" title="<?php echo osc_item_title(); ?>" alt="<?php echo osc_item_title(); ?>" />
</a>
<?php } else { ?>
<img src="<?php echo osc_current_web_theme_url('images/no_photo.gif'); ?>" alt="" title="" />
<?php } ?>
</td>
<?php } ?>
<td class="text">
<h3><a href="<?php echo osc_item_url(); ?>"><?php echo osc_item_title(); ?></a></h3>
<p><strong><?php if( osc_price_enabled_at_items() && osc_item_category_price_enabled() ) { echo osc_item_formated_price(); ?> - <?php } echo osc_item_city(); ?> (<?php echo osc_item_region();?>) - <?php echo osc_format_date(osc_item_pub_date()); ?></strong></p>
<p><?php echo osc_highlight( strip_tags( osc_item_description() ) ); ?></p>
</td>
</tr>
<?php $class = ($class == 'even') ? 'odd' : 'even'; ?>
<?php } ?>
</tbody>
</table>
<?php if( osc_count_latest_items() == osc_max_latest_items() ) { ?>
<p class='pagination'><?php echo osc_search_pagination(); ?></p>
<p class="see_more_link"><a href="<?php echo osc_search_show_all_url();?>"><strong><?php _e("See all offers", 'modern'); ?> »</strong></a></p>
<?php } ?>
<?php View::newInstance()->_erase('items'); } ?>
</div>
-
@design
<div class="latest_ads">
<h1><strong><?php _e('Latest Listings', 'modern'); ?></strong></h1>
<?php if( osc_count_latest_items() == 0) { ?>
<p class="empty"><?php _e('No Latest Listings', 'modern'); ?></p>
<?php } else { ?>
<table border="0" cellspacing="0">
<tbody>
<?php $class = "even"; ?>
<?php while ( osc_has_latest_items() ) { ?>
<?php if(osc_item_category_id() == 8) { // THIS LINE IS NEW
<tr class="<?php echo $class. (osc_item_is_premium()?" premium":""); ?>">
<?php if( osc_images_enabled_at_items() ) { ?>
<td class="photo">
<?php if( osc_count_item_resources() ) { ?>
<a href="<?php echo osc_item_url(); ?>">
<img src="<?php echo osc_resource_thumbnail_url(); ?>" width="75" height="56" title="<?php echo osc_item_title(); ?>" alt="<?php echo osc_item_title(); ?>" />
</a>
<?php } else { ?>
<img src="<?php echo osc_current_web_theme_url('images/no_photo.gif'); ?>" alt="" title="" />
<?php } ?>
</td>
<?php } ?>
<td class="text">
<h3><a href="<?php echo osc_item_url(); ?>"><?php echo osc_item_title(); ?></a></h3>
<p><strong><?php if( osc_price_enabled_at_items() && osc_item_category_price_enabled() ) { echo osc_item_formated_price(); ?> - <?php } echo osc_item_city(); ?> (<?php echo osc_item_region();?>) - <?php echo osc_format_date(osc_item_pub_date()); ?></strong></p>
<p><?php echo osc_highlight( strip_tags( osc_item_description() ) ); ?></p>
</td>
</tr>
<?php $class = ($class == 'even') ? 'odd' : 'even'; ?>
<?php } // THIS LINE IS NEW ?>
<?php } ?>
</tbody>
</table>
<?php if( osc_count_latest_items() == osc_max_latest_items() ) { ?>
<p class='pagination'><?php echo osc_search_pagination(); ?></p>
<p class="see_more_link"><a href="<?php echo osc_search_show_all_url();?>"><strong><?php _e("See all offers", 'modern'); ?> »</strong></a></p>
<?php } ?>
<?php View::newInstance()->_erase('items'); } ?>
</div>
-
I tried something from teseo and as I removed the code in main.php I noticed the original isn't even showing the latest ad, but it was with teseo's code..to weird. so I have to redo all of it, strange it doesn't work out of the box.
thank you, I did find the fix in the helper docs..forgot to look there first ::)
-
@design
Easy solutions are best solutions ;)
-
I am still not getting this right… can I have both latest listings and in another area, latest listings for a category?
I am using a fresh copy of moderns main.php and right from the start it is not showing the latest ads unless I add this to it, which is obviously wrong because it is pulling all of the ads not just jobs(8). I tried yours and shows the same 3 ads, there have sense been 2 regular ads and jobs ads
<?php osc_query_item("category_name=jobs");
if( osc_count_items() == 0) { ?>
<p class="empty"><?php _e('No Listings', 'modern') ; ?></p>
<?php } else { ?>
<table border="0" cellspacing="0">
<tbody>
<?php $class = "even"; ?>
<?php while ( osc_has_custom_items() ) { ?>
<tr class="<?php echo $class. (osc_item_is_premium()?" premium":"") ; ?>">
<?php if( osc_images_enabled_at_items() ) { ?>
<td class="photo">
<?php if( osc_count_item_resources() ) { ?>
<a href="<?php echo osc_item_url() ; ?>">
<img src="<?php echo osc_resource_thumbnail_url() ; ?>" width="75" height="56" title="<?php echo osc_item_title(); ?>" alt="<?php echo osc_item_title(); ?>" />
</a>
<?php } else { ?>
<img src="<?php echo osc_current_web_theme_url('images/no_photo.gif') ; ?>" alt="" title=""/>
<?php } ?>
</td>
<?php } ?>
…cut
-
Hi,
For that I think the best option is to leave Latest Items just for the first use, and then use custom queries for the rest:
http://doc.osclass.org/Display_only_certain_type_of_listings
A little example to get the ads from a given region:
osc_query_item(array('region'=>'Delaware')) ;
if(osc_count_custom_items() > 0 ) {
while(osc_has_custom_items()) {
But you can query for cities, users, categories... see the list at the end of that doc.
Regards
-
I did, this works, but I found out that because I am creating ads in different themes, it is not working. some sort of token issue.
-
I want to show in grid view