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,386 through 17,400 (of 18,415 total)
  • Author
    Posts
  • in reply to: ASP Admin doesn't work for me ! #4388
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    You did nothing wrong. I just examined the page and the theme was loading it’s scripts to the ajax search pro admin area as well and that caused the problem.

    Luckily I didn’t have to touch the code, I just went to the ajax search pro compatibility settings and switched the Javascript Source option to Minified. That solved the problem: http://i.imgur.com/G3E191i.png

    Thank you for proper login details, it helped me a lot.

    in reply to: Plugin messing up Menu Settings #4385
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I’ve debugged through the code with the plugin editor. Somehow some search shortcode is executed on the menu page. I have no idea why, but something must be triggering it.

    However the shortcode handler tried to quit, as it detected it’s on an incorrect page. But there was a bug present in the search code, which cleared the screen content before quitting, that’s why the half was missing. I’ve corrected that, and of course I’m putting this fix to the upcoming version as well.

    Thank you for noticing me!

    in reply to: Price notation and height of navigation field #4384
    Ernest MarcinkoErnest Marcinko
    Keymaster

    That’s done differently, not with margin or padding, but an invisible border. It’s because the isotope script counts the margin as well, so it won’t work other way.

    Right now it appears you added bottom margin to the elements? Instead use something like:

    [code]
    div.ajaxsearchpro[id*=’ajaxsearchprores’].isotopic .results .item {
    border: 3px solid rgba(0, 0, 0, 0) !important;
    }
    [/code]

    And remove the margin if you had any.

    in reply to: Setup like your demo site #4380
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Thank you! For starters I would recommend checking the new documentation I’m releasing today, it’s got lot’s of things covered: Ajax Search Pro Documentation

    Also, if you mean the first example on the demo page, then you are looking for the two column search layout: Knowledge base – Two column search setup

    The theme is also included, you can select it on the Theme Options panel, it’s the “Demo – Home Isotopic” theme.

    in reply to: Price notation and height of navigation field #4379
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Could you be more specific on the spacing part?

    in reply to: Price notation and height of navigation field #4374
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    This is taken directly from my test environment, the stylesheets need to be re-generated.

    If you go to the search options and save them, the stylesheets will be re-generated with the correct options. Then if you refresh the browser, everything will work again.

    in reply to: Does not work. #4371
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Have you tried to follow the steps of the safe update? (1st chapter of the documentation)
    If not, please try that, it will most likely help.

    You can find it here: http://wpdreams.gitbooks.io/ajax-search-pro-documentation/content/update_notes.html
    or in the knowledge base: https://wp-dreams.com/knowledge-base/updating-from-older-versions/

    in reply to: Price notation and height of navigation field #4364
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Not yet approved, they most likely having delays because of the end of the month calculations.

    I’ve attached the bugfixed version here, but it’s almost the same as you have 😉

    in reply to: problems with multi language via wpml #4362
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Yes, most likely browser cache. I’m on chrome, but I just checked with firefox, and it looks ok as well.

    in reply to: problems with multi language via wpml #4360
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I’ve checked and tried a few search phrases there.

    First, I’ve switched the language to “Nederlands”. On the site I can see 1 post/movie, “AMOR FOU”. If I search for “amor” this movie shows up. Since this is the only movie available in that language, this is visible. See screenshot: http://i.imgur.com/h62oQaf.png

    Then I tried French, but there are no translations available, so it doesn’t show any movies, just some pages: http://i.imgur.com/eCgFwVK.png

    Then I tried the default the “vlaams”, there I get lots of results: http://i.imgur.com/lZXbCzv.png

    Is this different to you? These results look all right to me. What should be different?

    in reply to: Problem with Ajax Search Pro for WordPress #4358
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    You had an older version on your system. If you update, please always follow the safe update steps:

    I have done these steps for you, thank you for the login details. The search will work now.

    in reply to: Related Post Pro Is Not loading #4356
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    If the changes are present after saving on the backend, then this is most likely a site cache issue.

    Make sure you clear the cache of all the caching plugins you have, and cloudflare as well (if you are using it). If it’s not helping, then you should provide temporary login details and an url where I can check this issue out.

    in reply to: Author Name… Custom Field #4355
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I think I understand. You want to use the correct display name of the users, not the “username”.

    You will need to make a minor modification to the code for this to work.

    Open up the wp-content/plugins/related-posts-pro/includes/related_content.class.php file.

    You will need to change this string:

    [code]$wpdb->users.user_nicename as author,[/code]

    … to this string:

    [code]$wpdb->users.display_name as author,[/code]

    On the following lines: 89, 319, 546, 688, 721 and 746

    Then go to the related posts pro options page and save the options without changing them. The author than should appear with the correct name.

    in reply to: Remove the title tag #4354
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    The widget layout is not determined only by the search plugin, it depends on your theme as well.

    However there is something you can try, that might help. Open up the wp-content/plugins/ajax-search-pro/includes/widgets.php file and go to lines 55-56 where you should see this code:

    [code]
    if (!empty($title))
    echo $before_title . $title . $after_title;
    [/code]

    Remove those lines or comment them like this:

    [code]
    //if (!empty($title))
    // echo $before_title . $title . $after_title;
    [/code]

    If this doesn’t help, then you might need to contact the theme developer as well.

    in reply to: problem with Enfold #4350
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I’ve changed the CSS compatibility level to ‘Maximum’ on the Compatibility options panel, it should display not correctly.

Viewing 15 posts - 17,386 through 17,400 (of 18,415 total)