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,086 through 17,100 (of 18,418 total)
  • Author
    Posts
  • in reply to: Exclude a page #5455
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    If you open the post/page editor, you should be able to see the Related Posts Pro metabox under the visual editor. There you will find an option to hide the plugin for that specific post. Documentation link.

    in reply to: Fixed search – Howto? #5453
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Please read the “Position and Size” subtitle on the documentation link I sent you. It’s exactly what you need.

    All you need to do is place the search somewhere on your site and then turn on the Compact layout mode. It will be automatically moved to the side.

    in reply to: Fixed search – Howto? #5451
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Thank you for your kind words!

    It’s called “Compact box layout”, and you can read more about it here in the documentation.

    It’s a completely new feature, so you might have to experiment a bit to get it right 🙂

    in reply to: show melia library content #5446
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Sorry about the late response, I did see your ticket earlier. Attachment search is not yet supported in the current version. The good news is, that I just finished this feature in the upcoming version yesterday, but I have to run a few tests regarding this.

    Tomorrow I can install the pre-update version on your site if you want to, and it will most likely solve your problem.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    I’m happy I could help, and thank you for your kind words!

    Feel free to rate the plugin on your codecanyon downloads page if you want to.

    Have a nice day!

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Here is what I did with some explanation 🙂

    So, I’ve found the reason. By default the category filtering logic works sort of like an AND logic. It excludes everything that’s not within the exactly selected categories. In your case this is not good, as you want sort of the union of posts in at least one of the categories. Luckily there is an option to change that, which I did and the results immediately started to appear. This option can be found on the General Options – Behavior panel, it’s called Category/Term logic. I have changed that to OR.

    Then I proceeded to do some other changes as well, I hope you don’t mind.

    • I have changed the ajax handler on the compatibility options panel, it’s a performance trick – it does not work on every site, but it does on yours 🙂
    • I have disabled the animation on the Theme Options – Isotopic Results panel. Since you are planning to display 4 rows of results, it might be slowing down the users browsers on slower computers. You can of course turn it back on by selecting an animation at the Display animation opion. The default value was the BounceIn.
    • I have changed the color of the links to white to better fit with the overlay color. You can change it on the Theme Options -> Typography panel.
    • I have disabled the description on results. The isotopic layout looks much cleaner with less text in my opinion. But of course if you prefer to display the description as well, you can change it back on the Layout Options – Results layout panel.

    That’s basically all I did, I hope you don’t mind.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Yes, I’m actually doing stuff right now 🙂

    I will explain as soon as I’m done. Please do not change anything for a couple of minutes.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Well, I’m not sure if this is possible without custom coding, but I have a possible solution in mind using only the search configuration.

    So, it is possible to change how many characters should trigger the ajax event to fire, so first of all let’s change that to 0 characters.
    Go to the General Options -> Behavior panel, and change the Minimal character count to trigger search to 0. While you are there, make sure that the Trigger search when changing a facet on settings? is also enabled: https://i.imgur.com/j4mH9LD.png

    As for the checkboxes: The default state (checked, unceched) is determined if the given taxonom term is excluded or not on the Advanced Options panel. So go to the Advanced Options panel, scroll down, and there you have a Exclude Taxonomy Terms option. Now, if you exclude all of the terms from the taxonom “hugmyndabanki”, then each checkbox should be unchecked on the front-end.

    I’m not sure how this is going to affect the outcome, but there is a good chance this will actually work.

    in reply to: SSL Unsupported by your plugin #5434
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    The plugin does support SSL of course, it’s most likely only the caching causing the issue.

    Try to open the search settings and save them again, it will regenerate and re-cache the plugin CSS content.

    I checked your site, but I see only one warning on the console regarding an icon. If you save the options, the icon path will be re-generated with the https: protocol.

    The other issues are not present on my side, it’s most likely your browser or website cache. If you save the search options and refresh your site with CTRL + SHIFT + R then the issues should disappear.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Thank you for the kind words, You are welcome, it was my pleasure helping you!

    If you want, you can rate the plugin on your codecanyon downloads page.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Angel!

    Sure, I found the problem. I guess you wanted product tags as suggestions, but unfortunately those are not the same as regular tags, they work a bit differently.
    Luckily you gave me sftp access and I was able to find a tiny modification to the code to change the regular tags to product tags. It should be working now 🙂

    in reply to: Problem with searching in custom post #5428
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Well, I think the upper mentioned code won’t work, because the ‘auteur’ is not a meta field, but a taxonomy term.

    Try something like:

    [php]
    <?php
    // This is the taxonomy
    $taxonomy = ‘auteur’;

    // We only want to do this on posts/pages/custom post types
    if ($r->content_type == ‘pagepost’) {
    $terms = get_the_terms( $r->id, $taxonomy );
    if (is_array($terms) && count($terms) > 0)
    echo "<div class=’author’>" . $terms[0] . "</div>";
    }
    ?>
    [/php]

    in reply to: Thumbnails categories not showing at search results #5425
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Thanks for the details. Their documentation was incorrect, it was not working actually. However I have tracked down the method of how to get the thumbnail, it should work now. I have changed the code I’ve sent you before. For future reference I’m leaving it here:

    [php]
    add_filter(‘asp_results’, ‘asp_get_fifc_term_image’);
    function asp_get_fifc_term_image($results) {

    foreach($results as $k => $result) {
    if ($result->content_type != ‘term’) continue;
    $thumb_id = get_option( ‘_wpfifc_taxonomy_term_’.$result->id.’_thumbnail_id_’ );
    if ($thumb_id !== false) {
    $image = wp_get_attachment_url( $thumb_id );
    if (!empty($image))
    $results[$k]->image = $image;
    }
    }

    return $results;
    }
    [/php]

    in reply to: Problem with searching in custom post #5423
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    If I understand correctly the authors are taxonomy terms. In this case you can turn ON the “Search In Terms” option, which will look in all terms connected to the posts: http://i.imgur.com/Jmf5YkP.png
    This will return posts related to terms connected to them.

    The option you are using right now will return the taxonomy terms as results, not the posts related.

    in reply to: Thumbnails categories not showing at search results #5417
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I definitely need to change code, and it’s safer to do via FTP, because if I accidentally make a syntax error in the plugin or theme editor, your site will go offline with an error message.

    You can add private details If you edit your first post in this thread and fill out the ftp fields, or by uploading a .txt file with the details. Both methods are safe, and only visible for me and you.

Viewing 15 posts - 17,086 through 17,100 (of 18,418 total)