This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Forum Replies Created

Viewing 15 posts - 3,631 through 3,645 (of 18,427 total)
  • Author
    Posts
  • Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Sure!

    Usually themes or theme builders have “tab” or similar builder elements. You could create two search bars and configure them so that the first one shows only the “for rent” and the other one shows the “for buy” items. Then add these search shortcodes to the tab feature of your theme or theme builder.

    Depending on how the rent/buy items are marked, you can use results exclusions or inclusions to only allow resulst for the real estate types.

    in reply to: Problem with characters in search query? #44783
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Problem with characters in search query? #44781
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Paul,

    Thank you very much for the details! I have found a possible issue with the tokenizer in relation to the tablepress shortcodes. I have made a minor correction on the code to address that. I will make sure to include this fix in the ucpming release so you don’t have to worry about it.

    in reply to: Search Pro is not working on mobile phones #44780
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Try maybe something like:

    admin-ajax.php
    /wp-admin/admin-ajax.php
    in reply to: shop page with filter on side bar #44779
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Search results template #44778
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Thank you for the details!

    If I understand correctly, you have the auto-populate feature enabled, which shows some results. Then when the user changes a filter or enters a new phrase a new search is initiated, but this time you want to exclude some results from this and all succeding queries. Is that correct?

    If so, I think there is a very simple way to do it programmatically via the asp_query_args hook:

    add_filter('asp_query_args', 'asp_exclude_on_non_autopopulate', 10, 1);
    function asp_exclude_on_non_autopopulate($args) {
    	if ( !$args['_is_autopopulate'] ) {
    		$args['post_not_in'] = array(1, 2, 3, 4); // Exclude posts by ID
    	}
    	return $args;
    }

    This code will exclude the items by IDs from the array, if the current search quers is not the auto-populate query.

    in reply to: Search Pro is not working on mobile phones #44763
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Well, that is a tough question, because it highly depends on what exactly triggers the block.
    I assume there is some sort of an interface, where you can look up past blocks by their ray IDs. Finding the block by that ray ID should clarify what exactly triggered the firewall to block the whole request. Then it should offer a way to make an exception for that request type.

    Usually it’s something to do with the request body – something in the POST variable, maybe an argument it resembles a threat in the heuristics database.

    in reply to: Search files in CPT #44762
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Search Pro is not working on mobile phones #44759
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Neto,

    Thank you for the details!

    When I am logged out I get the same error message on both desktop and mobile. The error response reveals this message from your server: https://i.imgur.com/Ohxkc2J.png
    This means, that a firewall/server policy is blocking the requests to the wordpress ajax handler. If you use any firewall/fence plugins, check the firewall configuration. It is more likely coming from the actual server or CDN, you may have to check the firewall on that end as well.
    There is a ray ID you can refer to for a block to filter further requests: RID: GCUQZ346G2S8KVREXVD0BWLC

    in reply to: Unformatted results page #44756
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Mark,

    The results page layout is completely controlled by your theme – the plugin can’t change that. I see there is some sort of a styling problem there, you may need to ask Avada support about that. It looks as if a stylesheet file was missing or needs to be generated again.

    in reply to: Advanced Title and Content fields variables #44754
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: BuddyBoss Forum Filter #44747
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    I only see some archive links and selection which redirect so topic tags. Is that what you mean? Those seem to be only static links, that’s not possible via the plugin.

    in reply to: Change the search field text size on mobile #44745
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Change the search field text size on mobile #44743
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 15 posts - 3,631 through 3,645 (of 18,427 total)