Trying to stop JS to add in-line CSS for the .orig class

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Trying to stop JS to add in-line CSS for the .orig class

This topic contains 19 replies, has 2 voices, and was last updated by Pavelescu Razvan Pavelescu Razvan 8 years, 12 months ago.

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #4566
    Pavelescu Razvan
    Pavelescu Razvan
    Participant

    Please go here and test, fill the search fields and click the search icon or hit enter: http://www.citypoppin.com/

    Then see the var_dump content from search.php

    #4567
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    That query is the pagination calculation, which is not related. It’s not possible to override the search query to get the results from the ajax search pro, since it works differently.

    The plugin does it’s own query, then gets the ID’s of the posts inflicted, then queries these posts as objects. Look for includes/hooks.php for details. The pagination values are set there as well.

    Overriding search results is very complicated due to some limitations of wordpress, so be careful with changes.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #4570
    Pavelescu Razvan
    Pavelescu Razvan
    Participant

    Alright, I got that, sounds logic.

    But why nothing appears on the search page when Override is active?

    I’ve read the hooks.php search override function but I can’t see where you create the query with the custom fields and where you return the search results

    I just want the basic override of search results to work

    #4575
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Everything is passed back to the includes/search/search_content.class.php file, that’s where the query is created.

    Then, if you var_dump the $res variable in the hooks.php file, you will see which results you get.

    Also, I use to dump the query as well to check for errors and such, line 595 in includes/search/search_content.class.php. The line is already there, you only need to uncomment.

    The almost final query is on lines 348-382. Parts within { } brackets are later replaced (like {like_query} and such).
    The results are then post-processed, but this is the main query for both ajax and non-ajax searches.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #4579
    Pavelescu Razvan
    Pavelescu Razvan
    Participant

    Hello!

    It worked out!

    I’ve saved the $res variable in a global variable and than just parse that global variable when accessing the search.php page: http://screencast.com/t/HMQOpJZKSq

    Thanks a lot for the help, I really appreciate it!

    I will ask my friend to write a nice feedback in the plugin comments section and also give you 5 stars!

    have a nice day,
    Razvan

Viewing 5 posts - 16 through 20 (of 20 total)

You must be logged in to reply to this topic.