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,341 through 17,355 (of 18,415 total)
  • Author
    Posts
  • in reply to: Custom FIeld in AJAX Search Pro settings #4528
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Can you update your ticket with website and login information? You can edit your post or attach a .txt file. Both methods are safe and visible to only me and you.

    in reply to: Unable to create search instance #4527
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Which version of the search are you using?
    Are you on a multisite network?
    Can you provide access and ftp information, so I can check the problem?

    in reply to: Bug with tags from BBpress #4526
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Thank you, will check that out for sure!

    in reply to: Product Tag Relevance #4525
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    This is not possible with the current version, however there is going to be an update available very soon (this week). I’m implementing a few new funtions, one of them is “Look for content from the same tags only?” option, which I believe is what you are looking for.

    You will get an email from codecanyon once this update is downloadable. (probably in 2-3 days)

    in reply to: Related Posts and WPML question #4522
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You’re welcome!

    Once the update is released, you will get a notification email from codecanyon 😉

    in reply to: Buddypress additional fields search #4513
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Yes it is planned definitely. I don’t have an estimate yet.

    in reply to: Related Posts and WPML question #4511
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    The upcoming version will support WPML, currently a workaround is needed.

    I’m not sure if this is going to work, but it’s worth a try.

    1. Open up the wp-content/plugins/related-posts-pro/includes/related_content.class.php file
    2. Make a backup copy of it, in case something goes wrong
    3. Replace the file contents with this: http://pastebin.com/raw.php?i=Te1cyUiq
    4. Go to your site back-end and open up the related posts pro instance settings and save them without changing anything – so it will clear the cache

    Hopefully it will display posts from only the matching language.

    in reply to: Search no working with normal posts #4502
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    You’re welcome! Thank you very much for the kind words!

    I think you can rate the plugin on your codecanyon downloads page: http://codecanyon.net/downloads

    Have a very nice weekend!

    in reply to: Search no working with normal posts #4500
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Also if the search is not resizing, then try to add the !important tag to the query items:

    [code]@media only screen and (max-width: 767px) {
    .asp_two_column_first,
    .asp_two_column_last {
    width: 100% !important;
    padding: 1% 0 !important;
    }
    }[/code]

    in reply to: Search no working with normal posts #4499
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Just noticed, that the backround image on the previous post on the second CSS is incorrect, the code highlighter automatically changes it, it should be:

    background-image: url(http://www.quiquealien.com/blog/wp-content/uploads/Portada-web.jpg);
    in reply to: Search no working with normal posts #4498
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I further examined your page, and there is a solution you can use, made of simple CSS.

    1. You need to remove the section with the image: http://i.imgur.com/PN3n7Xp.png On the demo I’m not using an image element, but the image is a background to the section element. This is what you will need to do as well, and I will explain it how. Only remove the section, but don’t delete the image.

    2. Remove the absolute position and the top and left values in CSS of the search bar from the style.basic.css:

    [code].asp_two_column {
    margin: 8px 0 12px 0;
    /* position: absolute; */
    /* top: 34%; */
    /* left: 8%; */
    }[/code]

    so the page after should look like this: http://i.imgur.com/c5qmEaG.png

    3. Set the background of that section in CSS to the image you choose:

    [code]section#text-116 {
    background-image: url(http://www.quiquealien.com/blog/wp-content/uploads/Portada-web.jpg);
    min-height: 548px;
    padding: 80px 40px 0;
    background-repeat: no-repeat;
    }[/code]

    It’s getting close to a solution. The page will now look like this: http://i.imgur.com/IWlBWaV.png

    4. With additional CSS make the two colums responsive:

    [code]@media only screen and (max-width: 767px) {
    .asp_two_column_first,
    .asp_two_column_last {
    width: 100%;
    padding: 1% 0;
    }
    }[/code]

    This will stretch the search bar on devices below width of 768 pixels.

    in reply to: Search no working with normal posts #4493
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I think I solved the problem.

    For some reason the Fulltext search was enabled. I’ve disabled it on the Fulltext Search Options submenu, now it should work correctly.

    in reply to: Related Products Pro #4491
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    The override options were enabled, thus the plugin ignored the settings and displayed random content. I disabled that on the General Options panel, now it should display products only.

    The Notice was indeed a small bug, I fixed it. Luckily it did not affect the plugin functionality. I’m including the fix in the upcoming plugin version.

    in reply to: Search no working with normal posts #4490
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    It’s not because of the plugin. The container, in which the search is placed on your site is 48% of width, and I see you changed it to ABSOLUTE position in the style.basic.css file. An absolute positioned element is removed from the document flow thus the keywords are floating over the page. Moreover the parent element is not set to relative position, so on higher resolution the search flies from the page as on my screen: http://i.imgur.com/SGsKNXn.png

    You need to set the slider element to a relative position:

    [code].home-slider {
    position: relative;
    }[/code]

    And change the absolute values to percents for the search:

    [code].asp_two_column {
    margin: 8px 0 12px 0;
    position: absolute;
    top: 15%;
    left: 4%;
    }[/code]

    So it will look like this on big screens: http://i.imgur.com/TpJsE2n.png
    And like this on mobile screens: http://i.imgur.com/1biNrks.png

    I can’t really provide support regarding customizations, but this is how I should do it 😉

    in reply to: Search no working with normal posts #4487
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I’ve tried on 5 proxy servers just now, to make sure it’s not my computer, but I still get the error message. Then I tried an US VPN service, but same error message. Perhaps there is an IP range block, or allowance? I’ve tried Gernam proxies, UK, US, Italian, but each is giving me the same error message. The site is working fine, it’s only the login.

    Could you explain more about the suggested keywords problem?

Viewing 15 posts - 17,341 through 17,355 (of 18,415 total)