Rado
Forum Replies Created
-
turns out this was caused by a faulty server configuration.
plugin works fine.
Turns out it’s unrelated to this plugin, sorry, no issues here!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Matching exact inside a string?found the issue, it was the “Minimum word length to index:” was set to high, thanks for a wonderful plugin and help!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Matching exact inside a string?So i added
‘add_filter(‘relevanssi_remove_punctuation’, ‘hyphensoff’, 9);
function hyphensoff($str) {
return str_replace(‘-‘, ”, $str);
}’to functions, disabled fuzzy search and rebuild my index
the result does nothing for me
searching for “green-and-complex-003” still returns all posts that have “green, and, complex” featured in them, what could i be missing here?
doing a search query within brackets returns no search results.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Matching exact inside a string?Hmm interesting, is there anyway to only apply this for the admin search interface and not the public one?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Matching exact inside a string?actually that didn’t work…
any ideas how to be able to match a string exactly that’s inside some text?
like if i have 1 post with
“green-and-complex-001”
1 post with
“green-and-complex-002”
1 post with
“green-and-complex-003”
if i make a search for “”green-and-complex-003” i will get all 3 results, how can i make it so it matches the exact string with the – signs?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Matching exact inside a string?Solution, functions.php add:
add_filter('relevanssi_remove_punctuation', 'hyphensoff', 9); function hyphensoff($str) { return str_replace('-', '', $str); }
Forum: Hacks
In reply to: Do something to a tag archive if post_count less than 3, how?Seems to be working great, thanks a lot for this!
Forum: Hacks
In reply to: Do something to a tag archive if post_count less than 3, how?Thanks for the reply but that doesn’t work.
The html output renders on all tag pages when i use your code.
The tags in the array should be skipped and tags which have more than 3 posts should also be skipped from outputting the html, any ideas?
Thanks again.
Forum: Fixing WordPress
In reply to: No follow for tags if they have less than 2 posts?still looking for a solution to this, would be a great feature to not index tags that have very little content inside, anyone?
Forum: Fixing WordPress
In reply to: No follow for tags if they have less than 2 posts?No one?
Perhaps something like this?
<?php if (!is_tag(array('3','27','10,','6','107','4','25','23','5','191','2','8','20','11','17','57','32','7','29','360','118')) && $count > '3') { ?> This is a test, does this print in the source if post is tag and has less than 3? <?php } ?>
Can’t get it to work though.
Forum: Plugins
In reply to: [Old Posts Highlighter] Plugin settings don't workcan’t get it to work on one 3.9.1 site either, could it be the plugin WP Missed Schedule that’s making old post highlighter not work?
I have the same question.
Forum: Plugins
In reply to: [WP Super Cache] Preload stopped working all of the sudden, no changes made….Ok now i got preload to run but i cannot trigger it by clicking “preload cache” in the settings, not sure how it was triggered but its running now, something with the scheduling is really broken…
Forum: Plugins
In reply to: [WP Super Cache] Preload stopped working all of the sudden, no changes made….I see this in debug, related to issue somehow maybe?
01:21:45 /wp-admin/options-general.php?page=wpsupercache&tab=preload In WP Cache Phase 2
01:21:45 /wp-admin/options-general.php?page=wpsupercache&tab=preload Setting up WordPress actions
01:21:45 /wp-admin/options-general.php?page=wpsupercache&tab=preload Not caching wp-admin requests.
01:21:45 /wp-admin/options-general.php?page=wpsupercache&tab=preload maybe_stop_gc: GC flag not found. GC will go ahead..what is GC?