This topic contains a post which is marked as Best Answer. Press here if you would like to see it.
*

gs_ind

  • ***
  • 31 posts
Status Manager in Tatiana
« on: October 17, 2016, 04:24:03 PM »
Hello Frosticek,
I had created status(eg: Normal, Locum) using status manager(Backoffice Manager Pro) in Tatiana.
I have added some ads with different statuses.
But when I search by status from sidebar, it always shows no results. (Even if I select the same sub-category of ads in which I had added statuses on top search, select by status shows no results)
Am I missing some code to be placed somewhere?
Your assistance in this matter would be greatly appreciated.

Thank you

 

*

MB Themes

Re: Status Manager in Tatiana
« Reply #1 on: October 17, 2016, 09:06:10 PM »
@gs_ind
PM us login to your ftp and oc-admin
Show here what is your website, url to items with status...
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

gs_ind

  • ***
  • 31 posts
Re: Status Manager in Tatiana
« Reply #2 on: October 18, 2016, 02:19:04 PM »
Hello Frosticek,
Sorry for the late reply.
Actually I am planning to develop an exclusive JOB site using Tatiana.. Currently.. I have almost completed working on it in my local m/c(XAMPP).
Yep.. I understand.. I will be uploading it in a day or two.. and will contact you again..(Btw.. I have another site>>findget.in(using zara)
Thank you



*

MB Themes

Re: Status Manager in Tatiana
« Reply #3 on: October 18, 2016, 08:58:55 PM »
@gs_ind
Take your time.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

gs_ind

  • ***
  • 31 posts
Re: Status Manager in Tatiana
« Reply #4 on: October 25, 2016, 05:40:29 PM »
It is working perfectly.
It was my fault as I commented a code line by mistake.
I haven't uploaded the site yet.. still working on it..

Now I have another problem..which I think is theme related..
I have added a custom field -- date interval -- through oc-admin.(listings >> custom field)
When I click the date field it shows values like '1477593000000' instead of date and goes to the top of the page.. So it doesn't get displayed in item page
(It works perfectly when I create an ad from oc-admin and is displayed properly)
Could you please check.. Your assistance in this matter would be greatly appreciated.



Thank You

*

MB Themes

Re: Status Manager in Tatiana
« Reply #5 on: October 25, 2016, 08:34:51 PM »
@gs_ind
Can you send me url?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

gs_ind

  • ***
  • 31 posts
Re: Status Manager in Tatiana
« Reply #6 on: October 26, 2016, 04:41:12 AM »
@gs_ind
Can you send me url?
I haven't uploaded the site yet.
I have checked it again in my local host by creating a new site. (with only osclass installation and tatiana theme)
Nothing else were installed. no plugins..no code/css modifications..not even translations..
I created a custom field(date interval) and tried to post an ad.. (date interval >> field required - unchecked; categories- check all; allow searches by this field - unchecked)
I get the same error. So I think it is a bug in the theme.

Thankyou

Marked as best answer by gs_ind on October 26, 2016, 02:47:17 PM
*

MB Themes

Re: Status Manager in Tatiana
« Reply #7 on: October 26, 2016, 07:24:01 AM »
@gs_ind
Actually it is osclass bug that does not pull required scripts when they are needed.
To fix problem, go to head.php of theme and into script section add:
Code: [Select]
osc_register_script('date', osc_base_url() . 'oc-includes/osclass/assets/js/date.js');

if(osc_is_publish_page()){
  osc_enqueue_script('date');
}
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

gs_ind

  • ***
  • 31 posts
Re: Status Manager in Tatiana
« Reply #8 on: October 26, 2016, 02:51:55 PM »
Thanks for the solution.. It works now.
(The date wasn't shown on the edit page).
I made it as:
Code: [Select]
if(osc_is_publish_page() || osc_is_edit_page()){
            osc_enqueue_script('date');
}
Now everything works perfectly.
Thanks a lot..

*

MB Themes

Re: Status Manager in Tatiana
« Reply #9 on: October 26, 2016, 03:56:24 PM »
@gs_ind
Good catch ;)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots