Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
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?Ernest Marcinko
KeymasterHi!
Thank you, will check that out for sure!
Ernest Marcinko
KeymasterHi!
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)
Ernest Marcinko
KeymasterYou’re welcome!
Once the update is released, you will get a notification email from codecanyon 😉
Ernest Marcinko
KeymasterHi!
Yes it is planned definitely. I don’t have an estimate yet.
Ernest Marcinko
KeymasterHi!
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 cacheHopefully it will display posts from only the matching language.
Ernest Marcinko
KeymasterHi!
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!
Ernest Marcinko
KeymasterAlso 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]Ernest Marcinko
KeymasterJust 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);
Ernest Marcinko
KeymasterI 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.
Ernest Marcinko
KeymasterI 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.
Ernest Marcinko
KeymasterHi!
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.
Ernest Marcinko
KeymasterHi!
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.pngI can’t really provide support regarding customizations, but this is how I should do it 😉
Ernest Marcinko
KeymasterHi!
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?
-
AuthorPosts