Advertisement:

Author Topic: Location and category  (Read 1426 times)

mr_ixs

  • Jr. Member
  • **
  • Posts: 53
Location and category
« on: April 06, 2013, 01:47:13 pm »
Hi, I'm looking for solution.
When you choose location you see all offers from that location. But the second step is choosing a category from the list. Now I'm looking how to make when you choose location and aftrer this youc choose a category, you can see only ads from chosen location and category. Nothing else. In oryginal after you choose a location and next choose a category you can see only ads from that category....


hlamber

  • Newbie
  • *
  • Posts: 3
Re: Location and category
« Reply #1 on: April 06, 2013, 04:11:13 pm »
Hi, mr_ixs.
You can use cookies for this. For example, you can set cookies for city, and edit some lines in main.php.

This part construct links for categories:

Code: [Select]
<a class="category cat_<?php echo osc_category_id(); ?>" href="<?php echo osc_search_category_url(); ?>">
Just add something like:

Code: [Select]
<a class="category cat_<?php echo osc_category_id(); ?>" href="<?php echo osc_search_category_url() . '&sCity=' $_COOKIE["city"] ; ?>">
Probably you can also take city from a session, but I hadn't figure it out yet.

mr_ixs

  • Jr. Member
  • **
  • Posts: 53
Re: Location and category
« Reply #2 on: April 06, 2013, 04:39:00 pm »
I check this solution. But city is not important only a region but it is similar ;) Thx

mr_ixs

  • Jr. Member
  • **
  • Posts: 53
Re: Location and category
« Reply #3 on: April 06, 2013, 05:08:35 pm »
Ok once again. I attached two files.
First is the normal view - and we check one of location.
Next step we need to see image 2
I checked by two colors
Maroon - show us:
all ads in location and the categories
Red - when we got locations we wanna specify a category (in the same location) so we mark one of them and click it. After this we got one ads (its only a simple)

Normaly when you go to the location and you mark any categories you see all ads in the same categories but from all locations.
I wanna make mark category in location chosen before

mr_ixs

  • Jr. Member
  • **
  • Posts: 53
Re: Location and category
« Reply #4 on: April 06, 2013, 09:30:50 pm »
I found a solution :D
In file search.php

We have to add a line

<div class="row one_input">
<h6><?php _e('Region', 'modern'); ?></h6>
<input type="text" id="sRegion" name="sRegion" value="<?php echo osc_esc_html( osc_search_region() ); ?>" />
</div>

When we got it it automaticaly shown in the box and when we mark option and click you will have all ads from chosen category and specify region


You can close this post. I believe that it will be helpful for someone else.