fringer
Forum Replies Created
-
Same here. Should we replace it and how to incorporate all Yoast generated XML’s into webmasters?
Forum: Plugins
In reply to: Google indexing related posts and ngg widgetGot it, found the link which I had to change. It was in nextgen folder, widgets.php
$out = '<a rel="nofollow" href="' . $image->imageURL . '" title="' . $description . '" ' . $thumbcode .'>'Forum: Fixing WordPress
In reply to: executing shortcodes through get_the_excerpt();Well, I thought it would be better to keep it all in one topic, since I’m trying to achieve the same thing as the original poster, only with different plugins.
Forum: Fixing WordPress
In reply to: executing shortcodes through get_the_excerpt();Any idea how to transform that code for wp-filebase and NextGen gallery?
I think I got it.
In my functions file I added a piece of code for displaying the post thumbnail if it exist. The code looks like this:
function rss_post_thumbnail($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = '<p>' . get_the_post_thumbnail($post->ID) . '</p>' . get_the_content(); } return $content; }And now that I’ve checked, yes, all the categories/posts that have images are displayed full. How can I change that code to have only the excerpt?
Forum: Plugins
In reply to: Google indexing related posts and ngg widgetOh yes, I forgot to add – google indexes posts with wrong date – for instance it displays a 2 months old post when I search for posts from last week. The only possible explanation for me is that google indexes it from related posts.
I can’t. Any suggestions what to check?
Jeff: Suddenly, that code doesn’t work! Nothing happens when you click the link – and it was working fine.
Great! Thanx!
Just did the search and really it is only the problem od 1 letter words, tried a multiple word search where all words are with more letters and it worked flawlessly.
EDIT: whoops, spoke too soon – I didn’t do many searches, but it seems to be a problem with 2 character words also – that is, in my case, anything under the minimum set in settings – I have default of three.
Also, if I input two words, the results I get are not exact – to use the previous example, if I searched for “Care Bears” I would get a result for both:
Do you care about bears?
and
Don’t Care Bears T-Shirt(letter case not important)
with the exact term, “Care Bears”, having lesser weight and being on the second spot.
Is the “AND” search suppose to behave like that?
Try doing a search for a multiple word term, a rare one or a single combination of words if possible, and you’ll notice that it does show up as a result, but not as the only result, and definitely not as the first.
I’ve figured it out – you need to play around with names of town, in my case it wasn’t a town, but say a suburb with its’ own zip code, so for the name of the town I had to enter both, separated with comma.
However, you might be surprised how many people need this – Google maps aren’t always correct, especially if you’re in a small country outside US, lot of times street names are incorrect, so exact location is a life saver.
Same thing here, only without the stop word. The settings are the same and the search outputs everything – even if the search term contains a one letter word, then that letter is highlighted as a result.
Minimum character number is set to 3, and when I input 1 or two characters in the search, I get the not found message – as it should be, but when a multiple word search term is entered, which contains a 1 or 2 letter words, then they are highlighted as results.
There seems to be a problem with AND search – I’ve tried multiple searches with copy paste from site content, and although the post or page from which the term was copied does end up in results, it’s only there because of fuzzy search. The exact term gets 0 results, as stated in search.
Correct me if I’m wrong, but a copy/paste of a part of text should be found?
Forum: Plugins
In reply to: [Search Unleashed] Search Unleashed Indexing Failure on NextGen Gallery PagesSame thing here π
Well, that works, but for instance try adding lists into a pullquote – it doesn’t look right.
Also, could you make the padding of the styled heading a bit smaller? Yes I know I can changed it my self, but I have to change it back every time there’s a new version out. I do think it’s a bit too big so it doesn’t fit most sites, except those heavy on web 2.0 look. A couple of pixels less and it would look perfect.
I’ve been using your plugin extensively so that’s why all these remarks. Great plugin, I love it!
Forum: Plugins
In reply to: [Contact Form 7] Insert form id?Heh sorry about not being clear enough. I meant the id of the form instance, or submission.
Every submission gets an ID in the database of CF7, so I would like to include that ID in the outgoing emails.
So for instance, when I make the first submission, I would get an email that informs me my message has an ID number 1.
The plugin Contact Form to DB Extension clearly outputs all submissions in a table, so I guess there should be a way to output some form of an ID.
Basically, keeping track of all submissions – if the person in charge gets, for instance emails with submissions 123467, then he/she automatically knows something’s wrong since the submission 5 wasn’t delivered.