Frumph
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with my "Featured Image" thumbnail… and your settings -> media have them set to being square and checkmarked to crop dimensions to exact sizes?
Forum: Fixing WordPress
In reply to: functions.php problemWhat PHP version are you running?
This bit of code:
! empty ( $item->attr_title ) // Avoid redundant titles and $item->attr_title !== $item->title and $attributes .= ' title="' . esc_attr( $item->attr_title ) .'"';Might not be compatible with older versions of PHP. Which is why it worked on one machine and not another.
My parser is also is reading the proper amount of { and }’s as well
Forum: Fixing WordPress
In reply to: Blank Main Page and all of the aboveWhat you have here is a problem with your current theme where there’s a bit of code out of place and the PHP error is not displaying. So, those changes you made? there’s something that became incomplete.
So what you need to do first of all is get your site up, even if it’s not with the same theme, do that by renaming the theme’s directory name so that it reverts to the default theme. (or change the theme in the wp-admin if you’re able)
Then edit your theme that is causing the issue and see what is wrong php wise there, if your hosting has a php error log, that would tell you.
Forum: Plugins
In reply to: [Comic Easel] Incompatible with Ares themeIt states in documentation that any themes that utilize the ‘featured image’ as the header will not work. Since it uses featured-image as the comic.
Forum: Fixing WordPress
In reply to: Conditional Statement for a Custom Post Type Categoryglobal $post; if (($post->post_type == 'myposttype') && is _category('slug-name-of-cat')) { }Forum: Fixing WordPress
In reply to: trouble after header resizeThere’s more to that error that you didn’t paste, like undefined function, or something, can you paste the whole error please?
Forum: Fixing WordPress
In reply to: Conditional Statement for a Custom Post Type CategoryIs this for your archive.php file?
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined method wpdb::get_charset_collateDownload the latest copy of WordPress in zip format
unzip the files onto your harddrive in a directory
FTP into your site
delete the /wp-admin and /wp-includes directories
ftp over that fresh copy of WordPress having it recreate those directories you deleted
… do NOT delete the /wp-content directory and verify that all the .php files in the root installation are the ones used for wordpress and not have any erroneous extra files there, visually scan the wp-content/uploads directory that way as well
While FTP’ing into your hosting, you can “rename” the plugins directory to plugins-old which will make them not load without losing them, to see if one of them is an issue as well.
Forum: Themes and Templates
In reply to: [Platform] Custom Header Image in Platform?.. It says in the description that on the theme’s download page that custom headers are available, have you gone to the wp-admin -> appearance -> custom header and tried adding one?
Forum: Themes and Templates
In reply to: List child pages error.. generally this code is used on pages only and not blog posts, so make sure there is an if (is_page()) { wrapped around it?
Forum: Themes and Templates
In reply to: pinboardI doubt you will get someone to walk you through things without expecting compensation.
That being said: http://jobs.wordpress.net/
The forums are pretty much handled by non-payed obliging support people who jump in to answer questions as they can.
Forum: Themes and Templates
In reply to: Language files in a themeOpen the functions.php file of the theme and look for this function:
load_theme_textdomain(It should look like this (with different info)
load_theme_textdomain( 'easel', get_template_directory() . '/lang' );^ the /lang or whatever it is in the theme you are using would be the directory that the language files go into
If that isn’t in your theme then there isn’t any default support for languages in it
Forum: Hacks
In reply to: Update Display NameWell this is how I do display name
if(get_query_var('author_name') ) { $curauth = get_user_by('slug', get_query_var('author_name')); } else { $curauth = get_userdata(get_query_var('author')); }if($curauth->display_name) $authorname = $curauth->display_name; elseif($curauth->user_nickname) $authorname = $curauth->nickname; elseif($curauth->user_nicename) $authorname = $curauth->user_nicename; else $authorname = $curauth->user_login;.. Just to make sure that I have $authorname covered
Forum: Hacks
In reply to: Update Display NameI don’t know how either, (on the top of my head) .. how about just giving them a note about logging them off and log them off making them login again.
Forum: Hacks
In reply to: Update Display Nameyes, absolutely retrieve the data again (AFTER UPDATING) because you need to set the internal variables