*

iiui awan

  • ****
  • 118 posts
select city error
« on: April 13, 2022, 12:33:30 PM »
when i click to select the city in publish listening its automatically open contact forum after loading can you please tell me how to fix it


same error not showing when a register user click

*

MB Themes

Re: select city error
« Reply #1 on: April 13, 2022, 08:21:48 PM »
Didn't you blocked contact page?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

iiui awan

  • ****
  • 118 posts
Re: select city error
« Reply #2 on: April 15, 2022, 07:24:46 PM »
i have blocked but what is the connection

*

kriskoyk

  • *****
  • 285 posts
Re: select city error
« Reply #3 on: April 18, 2022, 12:32:57 AM »
When the contact form for customers is closed, then it is impossible to enter a location in new ads . Investigate it
« Last Edit: April 18, 2022, 12:34:38 AM by kriskoyk »

*

MB Themes

Re: select city error
« Reply #4 on: April 19, 2022, 03:59:22 PM »
@kriskoyk
Contact page is used by ajax calls.
You can update search url (in head.php) to oc-content/themes/delta/ajax.php

Alternative approach.
Add new function to functions.php:
Code: [Select]
// AJAX REQUESTS MANAGEMENT
function del_ajax_manage() {
  if(Params::getParam('ajaxRequest') == 1) {
    error_reporting(0);
    ob_clean();
    osc_current_web_theme_path('ajax.php');
    exit;
  }
}

osc_add_hook('init', 'del_ajax_manage');

Then update del_ajax_url() function to:
Code: [Select]
  return osc_base_url() . '?ajaxRequest=1';
« Last Edit: April 19, 2022, 04:03:54 PM by MB Themes »
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

iiui awan

  • ****
  • 118 posts
Re: select city error
« Reply #5 on: April 19, 2022, 04:10:30 PM »
I don't have any knowledge about coding
but now i have off listing without registration so its not showing error

*

MB Themes

Re: select city error
« Reply #6 on: April 19, 2022, 04:22:33 PM »
We will take a look on it in next theme update, for now easiest fix for you is to do above mentioned updates.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

kriskoyk

  • *****
  • 285 posts
Re: select city error
« Reply #7 on: April 19, 2022, 06:31:33 PM »
The problem is not only in the delta issue but also in the beta. As I explained when the contact form for customers is deactivated, then in the new ads the location form in the item post is also excluded.

*

iiui awan

  • ****
  • 118 posts
Re: select city error
« Reply #8 on: April 20, 2022, 08:16:57 AM »
why osclass did not solve it yet in there new update

*

MB Themes

Re: select city error
« Reply #9 on: April 21, 2022, 11:04:22 AM »
Alpha, Beta, Gamma & Delta themes has been updated with fix.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots