Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Categories for Custom Type Posts
This topic contains 39 replies, has 2 voices, and was last updated by Pcholy John 9 years, 2 months ago.
- AuthorPosts
- August 10, 2014 at 2:42 am #2165
Hey,
great plugin!
we have custom type posts (called “downloads”, please see attached png),
for them we have Categories (“downloads – product categories”),
when we select these Categories to be displayed on Frontend – they are not displayed.
Any advice?
Thanks!
-
This topic was modified 9 years, 3 months ago by
Pcholy John. Reason: admin/sftp access
August 11, 2014 at 8:39 am #2167Hi!
I have a feeling that this is a yet unknown bug, if you don’t mind I would like to take a closer look to it. Can you please edit your ticket and add temporary ftp and administrator access? I would like to make some modifications on the search ode, and run a line to line debugging. Unfortunately I cannot reproduce this bug on my test servers, so I don’t know yet why it isn’t working.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 12, 2014 at 7:34 pm #2182Done.
August 13, 2014 at 9:59 am #2183Hi!
It looks like I have found the problem. It was a very strange bug, it took me almost an hour to find it. Basically something went wrong on saving the values, because a statement ended up being true, while it was false. I don’t know why, usually unexplainable bugs are related to PHP versions, but I don’t know if that’s the case. Anyways by just adding 1 extra line to the code it fixed everything. I’m definitely including this fix in the future updates.
Thank you for the login details and for the prompt ticket.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 13, 2014 at 3:26 pm #2184Thanks a lot Ernest!
Will you tell us where to add a line (and line itself) or email us updated plugin version?
August 14, 2014 at 9:00 am #2187Of course. Here is the version containing the changes, soon it will be available on codecanyon as well.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 15, 2014 at 7:42 am #2200Thanks!
August 21, 2014 at 7:21 am #2236Ernest,
we have disable Google Autocomplete in backend – but it is still present in frontend.
August 21, 2014 at 7:27 am #2237Please take a look.
We added updated admin info for you.
August 21, 2014 at 9:33 am #2240Hi!
It’s working on my side. I tried the main page. For example I typed in “mariah”, it usually suggests “mariah carrey” but there are no suggestions. I also tried “iron” (for iron man), “food”, “drink”, but nothing. Are you sure it’s not working?
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 22, 2014 at 7:24 am #2246Ernest,
I’ve attached Snapshot, I Searched “Iron” – and there are many suggestions below the search bar.
Any way to remove them?
Thanks.
Attachments:
You must be logged in to view attached files.August 22, 2014 at 8:19 am #2248Hi!
I thought you meant search autocomplete not the keyword suggestions. I have turned them off for you. The option is at “General Options -> Behaviour -> Keyword Suggestion on no Results?” if you need to turn it on any time.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 22, 2014 at 8:21 am #2249Our bet, sorry for confusion.
Thanks!
August 24, 2014 at 8:48 am #2257For Polaroid Results,
Is there option to limit the size of Post Title by certain number of characters or words?
Looks like very long Post Title gets over the border of Polaroid.
Thanks.
August 25, 2014 at 11:55 am #2264Hi!
Only by writing a filter code.
Put this to your theme functions.php file:function asp_shorten_title( $title ) { $length = 20; $title= (strlen($title) > $length) ? substr($title,0,$length).'...' : $title; return $title; } add_filter( 'asp_result_title_after_prostproc', 'asp_shorten_title' );
This will cut down the title to max 20 characters. You can change the number to anything you want.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
-
This topic was modified 9 years, 3 months ago by
- AuthorPosts
You must be logged in to reply to this topic.