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

Forum Replies Created

Viewing 15 posts - 17,791 through 17,805 (of 18,415 total)
  • Author
    Posts
  • in reply to: CSS Fault in Safari #2964
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I still think it’s a css issue.

    Could you please link me to a page where the search is active? I will check it with safari on your site.

    in reply to: CSS Fault in Safari #2959
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    My best guess is that the theme stylesheet overrides the input style. Try to add the following CSS to the search options “Theme Options->Custom CSS” tab field(http://i.imgur.com/ns4vcKl.png):

    [html]
    .probox .proinput input {
    border: 0px !important;
    border-radius: none !important;
    background: transparent !important;
    box-shadow: none !important;
    }
    [/html]

    After saving the options, it should appear correctly I guess.

    in reply to: ajax search not responding #2953
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Additionaly I enabled the custom ajax handler on the “Compatibility Settings” submenu for you. It increases performance in some cases, maybe in yours as well 😉

    in reply to: ajax search not responding #2952
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I did a few tests, and most of them was under 2 seconds, here you can see it: http://i.imgur.com/lHrtCjR.png

    Additionaly here is a gif video of another test, take a look: http://i.imgur.com/fLQ6chc.gif
    Every request was under 2 seconds.

    Are you sure it wasn’t a server outage? What kind of server are you using? Is it apache, nginx? How many websites are running on that server? Is the server load low if you check it via SSH?

    The 2 seconds respond time is more than excellent for any wordpress ajax application.

    in reply to: ajax search not responding #2949
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I don’t understand what you mean, but I suppose you should use the plugin now.

    Place the search shortcode somewhere, or use the search widget.

    But because the plugin has like 300 options and hundreds of features I suggest to go through the documentation, for better understanding: http://wp-dreams.com/demo/wp-ajax-search-pro3/docs/

    For frequent issues and questions you can check the knowledgebase: https://wp-dreams.com/knowledgebase/

    Feel free to experiment with the options, there is a lot of them, as you can see on the backend.

    in reply to: ajax search not responding #2947
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Thanks, no problem.

    I have re-initialized the plugin, I think there was a very tiny server outage during the installation and the default configuration was incorrect. You should try the plugin now, I think it will work.

    in reply to: ajax search not responding #2944
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Are you sure your url is correct? I’m getting an internal server error (error 500) when trying to access it: http://i.imgur.com/lpOK8oZ.png

    in reply to: can not fill search field #2941
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    It looks like the input field is getting overwritten by the theme to 0 pixels. Try to add the following rules to the Custom CSS field, which you can find on the search plugin Theme Options -> Custom CSS panel. (http://i.imgur.com/v8EnvAv.png)
    [html]
    .proinput input {
    height: 27px !important;
    }
    [/html]

    in reply to: Character #2939
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Sorry about the delay. I have found something that might help. You will need to modify one file though.

    1. Go to wp-content/plugins/ajax-search-pro/includes/search_content.class.php and open that file.
    2. Replace the file contents with this: http://pastebin.com/raw.php?i=YHAsD3ZA
    3. Open up the General options -> Behaviour panel and change the “Keyword Logic” option to AND. (https://i.imgur.com/Q9SGAGa.png)

    After saving the options the characters without accents should work as well.

    I hope it will work!

    in reply to: Making Search Visible on all Pages #2936
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Thanks. Well I don’t know how the theme looks like, but I’ve made a few variations where I put the shortcode to random places which I assumed might be good based on the php file. The shorcode I used uses search instance number 1. Here are 3 variations I made:

    I honestly have no idea how these might look. If you are lucky, then one of the might be in the right place 😉

    Just replace the header.php code with them, and you should see the search somewhere.

    in reply to: Making Search Visible on all Pages #2933
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I think the php file got removed because of some security check. Could you please zip it and attach it to your next response?

    in reply to: Character #2930
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Okays. I will remember someone had a similar request before, tomorrow when I get back to the office I will dig it up. It’s going to a be a temporary solution, but in the upcoming update this issue won’t exist anymore 😉

    in reply to: White screen after activation (all other plugins work fine) #2929
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Oh, thank you for linking me there, I will get in contact with the dev!

    I was just leaving the office when I got your mail, I thought we can fix it quickly together 😉

    in reply to: White screen after activation (all other plugins work fine) #2927
    Ernest MarcinkoErnest Marcinko
    Keymaster

    My guess was right, altough it’s not the theme, it’s an irresponsible plugin code.

    Sure it’s fixable. Altough it’s not exactly the ajax search pro causing the problem. All you need to do is open up the wp-content/plugins/wp-rss-multi-importer/inc/options.php file, go to line 1294 where you should see the isEmpty() function declaration, I guess something like:

    [php]
    function isEmpty() {
    // The function code is here
    }
    [/php]

    All you need to do is wrap that code with a function check, so it won’t try to declare the same function again:

    [php]
    if (!function_exists("isEmpty")) {
    function isEmpty() {
    // The function code is here
    }
    }
    [/php]

    Then it should work without issues.

    in reply to: White screen after activation (all other plugins work fine) #2925
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    The white screen indicates that the error reporting is turned off. Try to turn it on in the wp-config.php file, then you should see the problem printed there. My guess is that it’s a function re-declaration in the theme functions.php file without checking the function existence. But that’s just a guess. Let me know what the error says after enabling the error reporting.

Viewing 15 posts - 17,791 through 17,805 (of 18,415 total)