Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterPlease 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.
-
This reply was modified 10 years, 10 months ago by
Ernest Marcinko.
Ernest Marcinko
KeymasterHi!
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 🙂
Ernest Marcinko
KeymasterHi!
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.
July 29, 2015 at 2:19 pm in reply to: Search by taxonomies definintion without writing into search bar #5443Ernest Marcinko
KeymasterI’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!
July 29, 2015 at 2:01 pm in reply to: Search by taxonomies definintion without writing into search bar #5441Ernest Marcinko
KeymasterHi!
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.
July 29, 2015 at 1:45 pm in reply to: Search by taxonomies definintion without writing into search bar #5439Ernest Marcinko
KeymasterYes, 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.
July 29, 2015 at 1:03 pm in reply to: Search by taxonomies definintion without writing into search bar #5435Ernest Marcinko
KeymasterHi!
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.pngAs 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.
-
This reply was modified 10 years, 10 months ago by
Ernest Marcinko.
Ernest Marcinko
KeymasterHi!
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.
July 29, 2015 at 11:04 am in reply to: Exclude Catgories not populating all available/vanishing selection after submit #5431Ernest Marcinko
KeymasterThank 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.
July 29, 2015 at 10:32 am in reply to: Exclude Catgories not populating all available/vanishing selection after submit #5429Ernest Marcinko
KeymasterHi 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 🙂Ernest Marcinko
KeymasterHi!
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]Ernest Marcinko
KeymasterHi!
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]Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterI 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.
-
This reply was modified 10 years, 10 months ago by
-
AuthorPosts