Support Forums - Classified Ads Script Osclass

Osclass theme support => Stela Osclass Theme => Topic started by: Vadim Rusakov on August 21, 2018, 09:20:30 AM

Title: how to show a certain category on the main
Post by: Vadim Rusakov on August 21, 2018, 09:20:30 AM
it is possible to delete the category data on the main page
but the categories themselves must exist
I need only 7 first categories to be displayed on main page
Title: Re: how to show a certain category on the main
Post by: MB Themes on August 21, 2018, 10:56:50 PM
You mean first 7 by id?
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on August 22, 2018, 04:25:19 PM
yes the first seven
Title: Re: how to show a certain category on the main
Post by: MB Themes on August 22, 2018, 07:24:47 PM
@Vadim
In file:
oc-content/themes/stela/inc.category.php

Find:
Code: [Select]
<a id="cat-link" href="<?php echo osc_search_url(array('page' => 'search''sCategory' => osc_category_id())); ?>">
and replace with:
Code: [Select]
<a id="cat-link" href="<?php echo osc_search_url(array('page' => 'search''sCategory' => osc_category_id())); ?>" <?php if(osc_category_id() > 7) { ?>style="display:none;"<?php ?>>
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on August 23, 2018, 06:11:37 PM
Thank you
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 03, 2018, 02:22:43 PM
I try to publish ads in the categories that are hidden
Ads are not published

http://prntscr.com/kq1hwj

https://batumi24.ge/index.php?page=item&action=item_add
Title: Re: how to show a certain category on the main
Post by: MB Themes on September 03, 2018, 04:04:20 PM
@Vadim
And that is wrong?
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 03, 2018, 04:29:37 PM
hidden categories should work
Title: Re: how to show a certain category on the main
Post by: MB Themes on September 03, 2018, 06:27:15 PM
How can I select something hidden?
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 03, 2018, 07:13:18 PM
from add listing
http://prntscr.com/kq5dia
Title: Re: how to show a certain category on the main
Post by: MB Themes on September 03, 2018, 07:57:30 PM
How can I see hidden entry? There is even no such option in osclass
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 03, 2018, 10:02:48 PM
add taxi category ads

https://batumi24.ge/index.php?page=item&action=item_add

this category is a directory that is hidden
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 04, 2018, 09:20:04 PM
IS POSSIBLE TO ADD ANNOUNCEMENTS TO HIDDEN CATEGORIES?
Title: Re: how to show a certain category on the main
Post by: MB Themes on September 04, 2018, 09:49:38 PM
@Vadim
How you "hide" category? It is last time I ask this question.
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 05, 2018, 12:03:46 AM
YOU WRITE ME THIS SCRIPT

<a id="cat-link" href="<?php echo osc_search_url(array('page' => 'search', 'sCategory' => osc_category_id())); ?>" <?php if(osc_category_id() > 7) { ?>style="display:none;"<?php } ?>>
Title: Re: how to show a certain category on the main
Post by: MB Themes on September 06, 2018, 09:25:00 AM
@Vadim
Yes, that is for home page right? You have not updated anything on publish page.
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 07, 2018, 08:01:51 PM
You can do so by giving an indicator id after the 7th category and then hide it via CSS _ display: none;
Title: Re: how to show a certain category on the main
Post by: Vadim Rusakov on September 08, 2018, 02:21:02 AM
Everything works well, I have included the parent category. Thank you.