stillesbunt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: rss feed not validHi James,
thanks for your answer. As I mentioned, I am not a coder, so I copied my index.php to be on the save side. At the moment, it looks like this:
<html>
<head>
<meta name=”verification” content=”92718abe2c567f575cb7b209e038154a” />
</head>
<html>
<?php
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*//**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . ‘/wp-blog-header.php’ );Could you tell me, what I need to change please? As I said, I do not want to make a mistake.
Thank you so much,
LillyForum: Fixing WordPress
In reply to: Verifying zanox in wpThanks so much! Just what I need.
Forum: Fixing WordPress
In reply to: Header image in blog post gone twenty tenThanks for the fast answer! So, concerning the featured image – I never did anything different with my latest post, than before. So this is strange.
Concerning the changes to the header.php – I found this snippet:
<?php
// Check if this is a post or page, if it has a thumbnail, and if it’s a big one
if ( is_singular() && current_theme_supports( ‘post-thumbnails’ ) &&
has_post_thumbnail( $post->ID ) &&
( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘post-thumbnail’ ) ) &&
$image[1] >= HEADER_IMAGE_WIDTH ) :
// Houston, we have a new header image!
echo get_the_post_thumbnail( $post->ID );
elseif ( get_header_image() ) : ?>
<img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />You think the changes should be made here?
Thanks again for your help!
LillyForum: Themes and Templates
In reply to: Help with child theme functions.phpok thanks so much. just one last theme related question if i may: is it a bad idea to update to newer wp versions in the future. i mean do I risk “losing” my child theme layout or shouldn’t that be a problem?
thanks for your help
Forum: Themes and Templates
In reply to: Help with child theme functions.phpI just discovered that the jquery pin it plugin works fine on firefox but not on safari (my browser). hmm.
Forum: Themes and Templates
In reply to: Help with child theme functions.phpi have akismet. seems to work as far as I can tell. do not use jetpack. whats that for?
Forum: Themes and Templates
In reply to: Help with child theme functions.phpneither works. tried the jquery and the pin it button by dan gavin. no success!
Forum: Themes and Templates
In reply to: Help with child theme functions.phpdid not work. i just switched to the twenty ten but the plugin still won’t work. any ideas?
Forum: Themes and Templates
In reply to: Help with child theme functions.phpthen all my layout changes are gone! or did you mean just to test if the problem is solved then?
Forum: Themes and Templates
In reply to: Help with child theme functions.phpI now have a functions.php. thats great! however, I still do not get some plugins to work for example the jQuery Pin It Button plugin. also tried other pin it plugins – no change. the pin it button does not show. I assumed this was due to my lack of a functions.php …
Forum: Themes and Templates
In reply to: Help with child theme functions.phpok, done! whats next?
Forum: Themes and Templates
In reply to: Help with child theme functions.phpjust to be clear – do I first delete the old twenty ten folder in my conent/themes folder?
Forum: Fixing WordPress
In reply to: "Fatal error .." can't login to wp or show my page!Ok, now I got the plugin to run on my site! Was my mistake. Thanks for all your advice!
Have a nice day.
Forum: Fixing WordPress
In reply to: "Fatal error .." can't login to wp or show my page!as I said (see above) your advice solved the header problem. thanks again!
in my “child theme” there is no functions.php right now. Still it is running. I followed an advice of another wp support forum thread where it said to delete it and then start from scratch with an empty functions.php. That is what I did. So I currently have an empty fuctions.php.
The header is fixed. So all I need to get fixed now is the plugin (Related Post Thumbnails Plugin) that still does not work now. It is installed and activated, still I don’t see it on my site.
Forum: Fixing WordPress
In reply to: "Fatal error .." can't login to wp or show my page!ok, thanks. i will try following the link.
i did only changes in the style.css except one or two little changes in the header.php.
yes the current functions.php file is the new version. But I deleted it in my “child theme”. Can copy it back in from the new version of the parent theme. the only problem I am anticipating then is, that my blog will look like it did before I deleted the functions.php. Not so good.
Do you think, having the new version of the parent theme’s functions.php will solve my plugin problem?
Thanks