Frumph.NET

I'm in your site touching your stuff.
  • Home
  • Contact
  • Documentation
    • Custom Avatars
    • Custom Menubar

Frumph & Crew on TGT Webcomics tonight, 6pm PST

May23
by Philip M. Hofer (Frumph) on May 23, 2010 at 5:33 am
Posted In: Blog

I’ll be a ‘guest’ on TGT WebComics tonight, a podcast about WebComics with host Kurtis Sasso at 6pm PST.

We’ll be talking about ComicPress, CommPress and WordPress and other random things.

Show location: Talkshoe

Podcast Location: TGT Webcomics

Hopefully I can get Tyler and Adam (zerzix) and maybe Adam (Duncebot) to come on as well.

└ Tags: Interview, Podcast, TGT WebComics
1 Comment

Extended Body Classes – Revisited

May11
by Philip M. Hofer (Frumph) on May 11, 2010 at 12:01 am
Posted In: Wordpress
Pages: 1 2 3

WordPress 2.8+ gave us a a lot of new sets of classes for the body post and comment areas. That will allow designers to use those tags in designing their site. These tags are ‘dynamically generated’ when certain events or pages are loaded. To enable your theme to use those tags you just have to do a little editing to your theme.

<body <?php if (function_exists('body_class')) { body_class(); } >>

On Frumph.NET and other WordPress / ComicPress sites, there’s a plethora of different customizations you can do. Per page, per category, if the page is in the comic category and more. In example on this site for this page if you were to go to page 2 of this post.

<body class="single single-post postid-220 logged-in paged-2 single-paged-2 user-admin sitemember noncomic gecko single-category-wordpress single-author-admin am day morning tue layout-3c">

All of these can be used to design your site by just placing one of those before the element you want to use.
↓ Read the rest of this entry…

└ Tags: class, theme
2 Comments

Closed ComicPress Beta Testing

May10
by Philip M. Hofer (Frumph) on May 10, 2010 at 3:32 pm and modified on July 25, 2014. at 9:28 am
Posted In: ComicPress

ComicPress Premium is beginning its Closed Beta Phase of development. Many new features are fully functional, and now bug testing is needed. If you have experience with ComicPress Legacy, WordPress 2.9 and 3.0-beta, you may be one of the people we are looking for.

↓ Read the rest of this entry…

 Comment 

WordPress – Plugin & Theme Check for Multisite/WPMU

May10
by Philip M. Hofer (Frumph) on May 10, 2010 at 9:16 am
Posted In: Wordpress

This is some information you might need when checking whether or not the current WordPress installation is Mulsite or WPMU.

If this is a MU or Multisite WordPress this will be an option available, if it is not, it won’t be there. fileupload_url contains http://domain.tld/files which is used to rewrite the location of the wp-content/blogs.dir/#/files where the # is the blog ID number of the current blog being processed.

get_option('fileupload_url');

The MU / Multisite change to the option upload_path changes the information from wp-content/uploads to wp-content/blogs.dir/#/files where the # is the blog ID number of the current blog being processed.

get_option('upload_path');

When coding your plugin or theme that will access the uploads directory those two options are important to know the distinction between the MultiSite(MU) and single installations of WordPress.

The following bit of code is something to add to your plugin or theme if you need to determine whether or not the theme is Multisite or not. With ComicPress we use it to find the proper directory to load comics into.

function yourtheme_this_is_multsite() {
	global $wpmu_version;
	if (function_exists('is_multisite'))
		if (is_multisite()) return true;
	if (!empty($wpmu_version)) return true;
	return false;
}

The $wpmu_version was a way in WPMU <= 2.9.2 to determine if it was a WordPress MU install and the is_multisite() || VHOST is a way to determine if it’s a WordPress > 3.0 installation.

For example, with ComicPress we use it to make sure we’re pointing to the right spot to find the comics.

if (comicpress_this_is_multisite()) { $path_to_use = get_option('fileupload_url'); }

Of course we could also do:

$mu_path = get_option('fileupload_url');
if (!empty($mu_path)) $path_to_use = $mu_path;

But it’s not as reliable.

└ Tags: Multisite, WPMU
 Comment 

BuddyPress Revisited Part 1.

May07
by Philip M. Hofer (Frumph) on May 7, 2010 at 12:25 pm
Posted In: Wordpress

WordPress evolves so do the plugins and theme’s that work with it. Remembering that I like to go back and revisit things that I have said I didn’t like in the past. When BuddyPress first came out it was horrible, function rewrites for core code, remapping that shouldn’t have been done and everything was really a mess of non-integrated crap.

↓ Read the rest of this entry…

└ Tags: BuddyPress
1 Comment
  • Page 23 of 30
  • « First
  • «
  • 21
  • 22
  • 23
  • 24
  • 25
  • »
  • Last »

Recent Posts

  • The Proginator – Chapter 1-17
  • The Proginator – Chapter 1-16
  • The Proginator – Chapter 1-15
  • The Proginator – Chapter 1-14
  • The Proginator – Chapter 1-13

Recent Comments

  • Philip M. Hofer (Frumph) on ComicPress 2.9 CSS Overview – Part 1 – Entity List
  • James Duran on ComicPress 2.9 CSS Overview – Part 1 – Entity List
  • Philip M. Hofer (Frumph) on Understanding do_action() and add_action() – Revisited
  • sandeep on Understanding do_action() and add_action() – Revisited
  • Philip M. Hofer (Frumph) on ComicPress 4.0 soon to be released.

Categories

  • Articles
  • Blog
  • Chapter 1
  • Comic Easel
  • ComicPress
  • Easel
  • FAQ
  • Guide
  • Information
  • Proginator World 323
  • Prologue
  • Uncategorized
  • Wordpress

©2008-2021 Frumph.NET | Powered by WordPress with ComicPress | Subscribe: RSS | Back to Top ↑