Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
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!
Ernest Marcinko
KeymasterThat’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.
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterCould you be more specific on the spacing part?
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
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/Ernest Marcinko
KeymasterHi!
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 😉
Ernest Marcinko
KeymasterHi!
Yes, most likely browser cache. I’m on chrome, but I just checked with firefox, and it looks ok as well.
Ernest Marcinko
KeymasterHi!
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?
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
I’ve changed the CSS compatibility level to ‘Maximum’ on the Compatibility options panel, it should display not correctly.
-
AuthorPosts