Monthly Archives: September 2011

Page 1 of 11

Where to Send Your Complaints to Facebook

FacebookSo, right after the announcement of Google+‘s opening to the masses, FB decided to make more changes in their default interface and features list by adding this  friend feed ticker on the top of your (already useless) friend sidebar. Although I believe that Google+ still has some light years ahead to catch up to FB‘s dominance in the social networking world, I’m still trying to figure out what made FB decide to make another last-minute changes to the layout by adding an unnecessary auto-updating friend feed ticker at the top of your friends’ list sidebar. It’s bad enough for FB‘s used-to be clean and easy interface to add that sidebar and all other unnecessary changes with the wall posting interface, but to add more complexity in to it by adding yet another useless feature? I declare as of today that FB‘s straight-to-the-point interface became nerd-friendly instead of everyday user-friendly.

Why, FB, why? Were you feeling the competitive heat coming from Google+’s official public launching? While you are still ahead of your game over all the social network services out there, why must you complicate your interface any further than it has? Rather than making your users shout in glee for this feature, you get frowns and complaints instead.

Fortunately, All Facebook posted a tip for users who want to send in their complaints regarding the recent changes and additions to the FB interface. Although to me that FB has always been epic fail in terms of human-to-human technical support1, it’s still worth a try to send in your complaints and suggestions to FB. Don’t expect for a human-based answer directly from tech support immediately though.

Head over to this page named Your Home Page Suggestion and fill in the form with your suggestions, comments and complaints. This form sends your inquiries directly to FB. You can access this page via the Help Center, then go to Browse Help Topics ? News Feed ? then click on the last link on the list.

You can also check out a few browser extensions/plugins that you can install for your browser (whether if it’s Firefox, Chrome, Safari, etc.) for control on how your home page should look like. Here’s what All Facebook suggested as of now:

There should be plenty more plugins that should fix the problematic changes FB implemented, but for now these are the two that were suggested. Unless FB adds another feature in their interface that lets users configure the look and feel of their home pages themselves, at this moment FB has gone to my personal list of technological epic fails3 as of yesterday. :twisted:

  1. I’ve sent a lot of help inquiries regarding FB‘s security features and all I get is they send me to their Help Center and not even bother contacting me via email, PM, whatever, at all []
  2. The “F.B.” stands for “fluff-busting,” not Facebook LOL. :D []
  3. imaginary list, but I have one, located in my head. []

Google+ Now Open to Public

Google+After about a month of two of invite-only testing, Google+ is now finally open to public on beta.1 Still being a noob myself in terms of the social networking medium, I’ve been reading and hearing a lot of word from the social networking experts that Google’s brand-new service can topple Facebook and a true worthy competition to the social networking giant. Remember the whole cycle that one service can topple the other in terms of mass popularity once a new similar service launches?

Remember Friendster, the first social networking service back in the mid-2000s?2 It was toppled by MySpace. And then, MySpace was toppled by Facebook.

Now the question pops out now: Will Google+ be the one to topple Facebook? One columnist from social media magazine Mashable says that Google+ will as time passes due to its current default features, however to hint things like that is rather too early. Facebook is already ahead of its game with their FB-only games such as Farmville (etc.) and now Sims Social3, in addition to its fan pages feature and the fact that many celebrities from around the world has a FB account. We still have yet to see anything similar to FB‘s current features that are to be added in Google+ and see how its interactivity and user-friendliness can compare and contrast to FB‘s ever-changing features and user interface4.

I’ve recently signed up using my current Google account for Google+ just earlier today and so far the interface is pretty sleek and simple compared to FB‘s current interface, however it’s still too early for me to start comparing/contrasting. I still have yet to check out its current features and will do so when I finally have time. From that point on I can probably give a better review.

Sign up for a Google+ account now and add me to your circles when you do. :smile:

  1. Just like Gmail was before several years ago, being an invite-only alpha testing and then opening to public in beta. []
  2. Friendster is now a social entertainment site that is now focused on social gaming and music since its transformation back in June 2011. Granted, I’ve never had a Friendster account before because I was primarily focused in to building websites altogether and really didn’t get the whole social networking concept then. []
  3. Then again Google+ has Angry Birds online now LOL :D []
  4. which many users like myself haven’t been digging the changes because everything’s getting all confusing now… []

[ARTISTEER BUG] Plugins Not Working on Main/Home Page

If you are an avid Artisteer user like me to create frameworks for WP (and other CMS engines like Joomla, Drupal, etc.) and are now using the latest stable version (3.1.0.42580), you will notice a bug on your generated theme once you upload and activate it in your WordPress blog. That major bug has something to do with your plugins that involves posting and appearing on your main/home/front page of your site. In fact I’ve noticed this with my latest themes (including this ADRIMARIE.us one), for instance, the footnotes plugin that I’m currently using1.

The Artisteer Forums is quite a good source of finding solutions to your problems, however there are some that aren’t available that you’re going to need to post your problem and have the experts2 take a look at your problem. With the whole footnotes plugin problem that I’ve been having with this site (as well as the Bunnda Channel site), I decided to find a solution in which I could fix it manually.

I did find a few solutions, however these only apply to users who don’t use the excerpts feature in WP. By default Artisteer generates WordPress files with excerpts being values rather than the entire content. I’m pretty sure there are more tight solutions that would benefit both users who use the excerpts feature and users who don’t, but for now, these are for the non-excerpts WP users.

Open your content.php file from your theme folder. Look for the following line:

34
'content' => theme_get_excerpt(),

Replace that line with the following:

34
'content' => theme_get_content(),

This method may break the format for those who are using the excerpts feature of their WP blogs, however this is one of the few fixes to make the plugins work on the main/home page of your site. This particular fix worked for my footnotes problem, but that’s because I don’t use the excerpts feature (I’m not an excerpts person anyway).

The following below fixes an issue with photo gallery plugins3, and although this is somewhat of a different issue from the code fix above, I thought I may put this along with the one above.

Open your functions.php and look for the following snippet:

234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
if (!function_exists('theme_get_excerpt')){
	function theme_get_excerpt($args = array()) {
		global $post;
		$more_tag = theme_get_array_value($args, 'more_tag', __('Continue reading <span class="meta-nav">?</span>', THEME_NS));
		$auto = theme_get_array_value($args, 'auto', theme_get_option('theme_metadata_excerpt_auto'));
		$all_words = theme_get_array_value($args, 'all_words', theme_get_option('theme_metadata_excerpt_words'));
		$min_remainder = theme_get_array_value($args, 'min_remainder', theme_get_option('theme_metadata_excerpt_min_remainder'));
		$allowed_tags = theme_get_array_value($args, 'allowed_tags',
			(theme_get_option('theme_metadata_excerpt_use_tag_filter')
				? explode(',',str_replace(' ', '', theme_get_option('theme_metadata_excerpt_allowed_tags')))
				: null));
		$perma_link = get_permalink($post-&gt;ID);
		$more_token = '%%theme_more%%';
		$show_more_tag = false;
		$tag_disbalance = false;
		if (function_exists('post_password_required') &amp;&amp; post_password_required($post)){
			return get_the_excerpt();
		}
		if ($auto &amp;&amp; has_excerpt($post-&gt;ID)) {
			$excerpt = get_the_excerpt();
			$show_more_tag = mb_strlen($post-&gt;post_content) &gt; 0;
		} else {
			$excerpt = get_the_content($more_token);
			global $multipage;
			if ($multipage &amp;&amp; mb_strpos($excerpt, $more_token) === false){
				$show_more_tag = true;
			}
			if(theme_is_empty_html($excerpt)) return $excerpt;
			if ($allowed_tags !== null) {
				$allowed_tags = ''tag', 'content'=&gt;$part);
					} else {
						$all_chunks = preg_split('/([\s])/u', $part, -1, PREG_SPLIT_DELIM_CAPTURE);
						foreach($all_chunks as $chunk) {
							if('' != trim($chunk)) {
								$content[] = array('type'=&gt;'word', 'content'=&gt;$chunk);
								$word_count += 1;
							} elseif($chunk != '') {
								$content[] = array('type'=&gt;'space', 'content'=&gt;$chunk);
							}
						}
					}
				}

Within that snippet, look for this line:

266
$excerpt = strip_shortcodes($excerpt);

Simply “comment out” (add 2 forward slashes and a space) in front of that line, like so:

266
// $excerpt = strip_shortcodes($excerpt);

Add this line all the way at the bottom of the functions.php markup:

add_filter( 'the_excerpt', 'do_shortcode');

I’ve tried both of these solutions for the themes and these fixed my footnotes problem. I don’t think I’ll ever put a gallery on this blog, but on the Bunnda Channel blog, it’s highly likely that I may post a gallery in a blog post. Again, these are not the clear solutions, but until we finally get a bug fix with the Artisteer program we’ll have to do all these manual fixes on our new themes with the latest stable versions we have available for now4.

  1. WP-Footnotes []
  2. who are not just Artisteer users but are also gurus with PHP, (X)HTML/CSS, Javascript, etc. gurus []
  3. I think…? Not sure if this can also help with the previous code fix I posted before this… []
  4. SOURCE: Artisteer Forumshere and here. []

CASE STUDY: The Bunnda Channel

The Bunnda ChannelI recently completed my newest web project just some hours before writing this entry. It was actually more of a migration, re-branding and re-design of one of my recent web projects I’ve completed back in early August – The Bunny Channel. The new revamped project also has a new name change – The Bunnda Channel.

It looks somewhat similar to the feel and the structure of the old Bunny Channel design (you can check it out at the Work section, the old location is still there until the domain/hosting of the Bretzie World site expires in November…) with the same menu items and pretty much the same widgets and other bits of info as the old site. I even tried backing up the entire database and restore them on a brand-new mySQL database on the new server, but instead I’ve gotten all these mapping errors that I had to start all over and use the old WP XML-file restoration method.

Continue reading

Page 1 of 11