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,626 through 17,640 (of 18,415 total)
  • Author
    Posts
  • in reply to: Show custom post type categories #3542
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Thank you. Will check on it as soon as I can.

    I moved your ftp details to an attachment to this post for security reasons.

    in reply to: Always Says "No results!" #3540
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    You forgot to deactivate the plugin before updating so the necessary tables were not updated correctly. After I deactivated and activated again it started working.

    in reply to: Search in Buddypress Custom Fields #3539
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I’ve been trying this lately, but it doesn’t seem possible unfortunately. I tried to edit the current version but with no luck. Perhaps for the next version I can work out something. It should be released in a week. I will try to contact the plugin developer till then.

    in reply to: Show custom post type categories #3538
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Your configuration looks correct, so this is most likely an unknown bug yet. Could you please also provide temporary ftp access so I can run diagnostics? I don’t want to edit files via the plugin editor, it’s unsafe.

    in reply to: Invalid CSS #3487
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    If you are referring to W3C CSS validations, than it’s probably right. Unfortunately the W3C validity does not allow many many properties like SVG fill, rgba backgrounds, background gradients and hundreds of other things. On the other hand every single major browser (including mobile) support these CSS features.
    If the search CSS complied the W3C CSS validity, then the plugin most likely would loose all the sales.

    If you check any wordpress theme, plugin or anything that has CSS files, you will probably find hundreds of errors with the W3C validator. As an example, check out the AVADA theme (300+ errors) or you can check out facebook as well (40 errors on the login page).

    There are many many lines of CSS in the plugin only for the proper compatibilty. Since this is a stock product, it has to work with millions of themes and plugins out there as well as with every major browser.

    in reply to: Behaviour when grouping results #3457
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Okays. That might explain it. Grouping is for now only possible by Category or Post type but not by taxonomy. The search is trying to retrieve a category name for a taxonomy which probably results in a fatal error.

    The category and taxonomy search is a fairly new feature so I’m working on some additional things regarding them. I’m going to add your request to the TODO list right now. I’m almost done with the next major update (which contains mostly compatibility updates), but I guess I can work out something, since grouping needs an update anyways. I can’t promise it’s going to be exactly how you imagined, but I will add as much flexibility as possible 😉

    Will contact you in a few days with an update on this.

    in reply to: Links are missing, and another issue #3456
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    After logging in I can only see an empty folder. (tried both with FTPS explicit and simple FTP as well, both empty folders). Could you please check the credentials?

    in reply to: Css Problems #3450
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi again!

    I’m attaching a beta version with the CSS changes. Before installing please make a copy of your wp-content/plugins/ajax-search-pro/ folder so you can restore it if you need.

    1. After making the backup copy, deactivate and delete the ajax search pro plugin in the plugin manager.
    2. Install the attached version.
    3. Open the “Compatibility Options” submenu.
    4. There is a new option there called “CSS compatibility level”. Change that to “Maximum” and save the settings: https://i.imgur.com/ppYQ7B0.png
    5. After clearing your site cache and refreshing your site you should see some (or all) of the CSS issues disappear.

    Let me know how it goes.

    • This reply was modified 11 years, 4 months ago by Ernest MarcinkoErnest Marcinko. Reason: file added
    in reply to: Dissable Did you mean: #3445
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    By turning off the keyword suggestions. See this part of the documentation: http://wp-dreams.com/demo/wp-ajax-search-pro3/docs/#general_options_keyword_suggestions

    in reply to: Links are missing, and another issue #3443
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You can edit your first post and add the admin and ftp details there, or you can attach a .txt file to your next post with the details. Both methods are safe.

    in reply to: Behaviour when grouping results #3441
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Is the Brand a custom post type, or is it a taxonomy term or something else?

    in reply to: Links are missing, and another issue #3440
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Try to open up the plugin settings and save them without changing anything. It should clear the plugin cache. If you have any caching plugins active, you should try to clear that cache as well.

    If that doesn’t help, then I might need temporary admin/ftp access as well to run a quick debugging to find out what’s the problem.

    in reply to: Css Problems #3434
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Thanks for contacting me here. The test version is not ready yet, it might take a few hours. I will send you a test version today if I can finish it. If not, then tomorrow for sure. Thank you for your patience!

    in reply to: Behaviour not to be redirected when searching #3433
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I’m suspecting a 3rd party javascript (probably from another plugin or theme) which automatically submits the form when pressing the enter key. The search tries to automatically prevent this behaviour, but depending on the method it might fail.

    The best you can try is the following javascript code:
    [html]
    jQuery(document).ready(function($){
    var scope = $;
    if (typeof aspjQuery != "undefined")
    scope = aspjQuery;
    scope(".proinput input.orig").keydown( function(e) {
    if (e.which === 13) {
    e.preventDefault();
    e.stopPropagation();
    if (typeof(e.stopImmediatePropagation) != "undefined")
    e.stopImmediatePropagation();
    }
    });
    scope("input.orig").parent().submit( function(e) {
    if (e.which === 13) {
    e.preventDefault();
    e.stopPropagation();
    if (typeof(e.stopImmediatePropagation) != "undefined")
    e.stopImmediatePropagation();
    }
    });
    });
    [/html]

    Try to add it to the page footer or header. It might work, but if another javascript file is interfeering with the event listeners this might not work.

    Also, try to clear your page as well. If you are using any kind of CDN, then their cache as well. The cache can prevent such settings from application.

    in reply to: Preview doesn't work #3422
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Sure. It was the \wp-content\plugins\ajax-search-pro\backend\search.php line 23. It was simply commented out. It’s going to be changed to something else in the upcoming update.

Viewing 15 posts - 17,626 through 17,640 (of 18,415 total)