Hello,
I am kind of new to php, and we recently purchased the Delta theme.
I want to be able to set specific categories to be displayed on Premium and Normal listing on the home page.
As i saw around the whole deal to show items is in this while loop :
< ? php while ( osc_has_premiums () ) { ?>
for premium and
< ? php if ( osc_count_latest_items () > 0) { ?> for normal listing.
Searching around, i saw in that to query only specific categories to be displayed, for example only "autoturisme" category, i must use
< ? php osc_query_item (array (
"category_name" => "autoturisme" ) );
while (osc_has_custom_items( ) ) { ?>
Well . im a bit lost now, as i am able to display them as needed, but not display them in the theme CSS, here is the part where im lost.