eamax
Forum Replies Created
-
Sorry for the delay, yes it worked, thank you!
Forum: Plugins
In reply to: [Yoast Duplicate Post] Does not work with “Search Exclude”The developer will release an update with support for your plugin.
https://ww.wp.xz.cn/support/topic/does-not-work-with-search-exclude-2/Forum: Plugins
In reply to: [Search Exclude] Does not work with “Search Exclude”Worked perfectly. Thank you.
When update happens I can remove the code?- This reply was modified 9 years, 6 months ago by eamax.
Forum: Plugins
In reply to: [Search Exclude] Does not work with “Search Exclude”Thank you
Forum: Plugins
In reply to: [Yoast Duplicate Post] Does not work with “Search Exclude”Thanks I’ll try.
Update this file “/plugins/simple-history/inc/SimpleHistory.php”.
function: http://i.imgur.com/IeJBf8X.pngToo!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Page with tag or categoryI found my problem.
“Minimum word length to index = 3” tested tag had 2 letters.Working perfectly now.
This limit should not apply to tags and categories.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Page with tag or categoryAfter some tests I realized that does not work.
Tag + Page.
I not tested with category.In defense of the author of the plugin I can say that he accessed my page and did just what he needed to find the problem and left. Totally reliable.
sent
I’m still having problems with DNS and external connection, working it with technical person, so do not know if you’ll be able to access.
And this problem is only in preview, on the site it displays normally.
gsp.ac.gov.br or http://189.125.64.216/
I’m using maintenance mode and you will not be able to see the public site, but if you can open the page I pass an User and you look at the functioning of the plugin.
Forum: Fixing WordPress
In reply to: As I list posts only if you have two or more categories?How I solved that easily.
Category A = ID 2 and NAME A
Category B = ID 3 and NAME Bif i use:
query_posts( ‘cat=3&cat=2‘ );
or
query_posts( ‘category_name=A&category_name=B‘ );
it will list all the threads of both categories.But if I use this:
ID + Name
query_posts( ‘cat=3&category_name=A‘ );It only lists when the two is true.
Still need help to find out if this is the correct way.