GlossyBlue Theme Update
March 9th, 2007 Filed in: News & Updates Jump to commentsIt has been a while since my last blog post. As usual, I’ve been very busy with my work and life. Lately, I have been receiving a lot of emails about the "c2c_get_recent_posts()" undefined function in my GlossyBlue advanced version. The reason you are receiving this error because you forgot to install the plugin or you haven’t activated it yet. I apologize for the lack of installation guide. To prevent this error happening, I have integrated the Simple Recent Comments by G-Loaded. This means there will be no more plugin installation required. So, I’ve decided to release a new standard version 1.3. If you are using GlossyBlue theme, I strongly recommend to download the updated version. I have fixed some PHP and CSS bugs. Also, it has been tested under WordPress 2.1 (view demo).
Big thanks to those who had sent me comments, feedbacks, and suggestions to improve this theme.


March 15th, 2008 at 6:40 pm
March 15th, 2008 at 2:39 am
November 13th, 2007 at 10:11 pm
Hi Nick,
Thanks for releasing GlossyBlue publicly and for free. It’s a very well done theme. I just installed it onto WP 2.3.1 and it works wonderfully.
Thanks again,
-j
October 18th, 2007 at 2:53 pm
I am using the glossyblue1.4( Arabic translation ) with wordpress 2.0.6 arabic version.
I have problem with IE , when i select some text , the problem not appear with the Firefox .
September 30th, 2007 at 5:17 pm
I found a bug: if you go on a non-existing page (…?p=999) it will show all wrong, there must be a missing somewhere.
August 30th, 2007 at 4:14 pm
sorry the full code is below;
GlossyBlue navigational code
Change to kubrick kubrick/default navigational code :
and can’t replace the Older/Newer Entries with the post title :(
August 30th, 2007 at 4:11 pm
Yeah.. this is a great theme, and i used it. But, i have some trouble when changing the navigational code on index.php :
span class="previous-entries" php posts_nav_link ('','','« Older Entries') ?> span
span class="next-entries" php posts_nav_link('','Newer Entries »','') ?> span
I’ve changed code above with kubrick/default navigational code to replace the Older Entries and Newer Entries text with post/article title. Like below :
.span class="previous-entries" php previous_post_link('« %link') span
span class="next-entries" php next_post_link('%link »') span
I got above code in kubrick’s single.php file. But the output is disappear. I’ve read the tut on http://codex.wordpress.org/Template_Tags/posts_nav_link and have implemented some guidances on that but still can’t change the Older Entries and Newer Entries text to post/archive title.
So, please tell me the way. Thanks
PS : i removed some tags on above code so that its appear on this post.
August 30th, 2007 at 8:13 am
In a plug-in simple_recent_comments.php at use of coding UTF8
The second byte in the letter, in languages of distinct from English is sometimes passed!
i use this modification!
———————————
mb_internal_encoding(”UTF-8″);
function src_simple_recent_comments($src_count=7, $src_length=60, $pre_HTML=’Recent Comments’, $post_HTML=”) {
global $wpdb;
$sql = “SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,
comment_content
FROM $wpdb->comments
LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID)
WHERE comment_approved = ‘1′ AND comment_type = ” AND post_password = ”
ORDER BY comment_date_gmt DESC
LIMIT $src_count”;
$comments = $wpdb->get_results($sql);
$output = $pre_HTML;
$output .= “\n”;
foreach ($comments as $comment) {
$comms = mb_substr(strip_tags($comment->comment_content),0,$src_length);
$output .= “\n\tID) . “#comment-” . $comment->comment_ID . “\” title=\”on ” . $comment->post_title . “\”>” . $comment->comment_author . “: ” . $comms . “…”;
}
$output .= “\n”;
$output .= $post_HTML;
echo $output;
}
August 11th, 2007 at 10:59 pm
Sorry, the code is not appear in above post. below is what i mean >>
http://www.aufklarung.org/error.txt
so, please give help
August 11th, 2007 at 10:33 pm
Hi……..
I am trying to get gravatar working on my blog, so that any users posting comments who have a gravatar associated with their email address, will have their picture posted along with their comment.
I have downloaded the gravatar plugin for wordpress, from this site and installed it successfully.
http://site.gravatar.com/site/implement#section_2_2
In the implementation section it gives examples of HTML to add in order to use the plugin… But I’m not sure -where- this code is supposed to be added.
I used wordpress 2.2.2 with GlossyBlue 1.4 theme. In the comments.php I put the code like this:
” alt=”Author comment” align=”right” width=”80″ height=”80″ />
after :
and before :
” id=”comment-”>
So, my comment.php look like this:
” alt=”Author comment” align=”right” width=”80″ height=”80″ />
” id=”comment-”>
But i get error:
Parse error: syntax error, unexpected ‘?’ in /home/glossyblue-1-4/public_html/wp-content/themes/aufklarung/comments.php on line 23
Please give help