Alexander Geilhaupt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tagebuch] remove featured image from single postsIn single.php you have to remove tho following lines 38-42:
<?php if(has_post_thumbnail()) : ?> <?php $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full'); ?> <div class="article-image"><a href="<?php echo $large_image_url[0]; ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a></div> <div class="clear"></div> <?php endif; ?>Forum: Themes and Templates
In reply to: [Tagebuch] Page and Post SideBar WidgetsHello ebiz98,
you are right. I fix this issue in the next update.
Thank you for your patience.
Forum: Themes and Templates
In reply to: [Tagebuch] Bullet pointsHello maradv,
I try to fis this issue in the next update.
Thanks for your patience.
Forum: Themes and Templates
In reply to: Twenty Eleven rendering issuesThat’s correct. So why do you not use the general settings page to change your URL after transfering it to your new url and undo
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');Forum: Themes and Templates
In reply to: Twenty Eleven rendering issuesDid you changed the URL on the settings page?
Forum: Themes and Templates
In reply to: Twenty Eleven rendering issuesBut ‘http://noseyparka.dev’ is not available. So you should use:
update_option('siteurl', 'http://noseyparka.me.uk/' ); update_option('home', 'http://noseyparka.me.uk/' );Than everything should work fine.
Forum: Themes and Templates
In reply to: Twenty Eleven rendering issuesHi mejpark,
it seems that your css files don’t load correctly:
<link rel="stylesheet" type="text/css" media="all" href="http://noseyparka.dev/wp-content/themes/np/style.css" />Maybe it should look like this:
<link rel="stylesheet" type="text/css" media="all" href="http://noseyparka.me.uk/wp-content/themes/np/style.css" />Same thing here with your js files and some plugin css:
<link rel='stylesheet' id='tfg_style-css' href='http://noseyparka.dev/wp-content/plugins/twitter-facebook-google-plusone-share/tfg_style.css?ver=3.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='NextGEN-css' href='http://noseyparka.dev/wp-content/plugins/nextgen-gallery/css/nggallery.css?ver=1.0.0' type='text/css' media='screen' /> <link rel='stylesheet' id='shutter-css' href='http://noseyparka.dev/wp-content/plugins/nextgen-gallery/shutter/shutter-reloaded.css?ver=1.3.4' type='text/css' media='screen' /> <link rel='stylesheet' id='contact-form-7-css' href='http://noseyparka.dev/wp-content/plugins/contact-form-7/styles.css?ver=3.1.1' type='text/css' media='all' /> <script type='text/javascript'> /* <![CDATA[ */ var shutterSettings = {"msgLoading":"L O A D I N G","msgClose":"Click to Close","imageCount":"1"}; /* ]]> */ </script> <script type='text/javascript' src='http://noseyparka.dev/wp-content/plugins/nextgen-gallery/shutter/shutter-reloaded.js?ver=1.3.3'></script> <script type='text/javascript' src='http://noseyparka.dev/wp-includes/js/jquery/jquery.js?ver=1.7.1'></script> <script type='text/javascript' src='http://noseyparka.dev/wp-content/plugins/nextgen-gallery/js/jquery.cycle.all.min.js?ver=2.9995'></script> <script type='text/javascript' src='http://noseyparka.dev/wp-content/plugins/nextgen-gallery/js/ngg.slideshow.min.js?ver=1.06'></script>Did you renamed your blog URL from http://noseyparka.dev/ to http://noseyparka.me.uk/ in your settings?
Regards
Alex