Title: Danechello's Replies | WordPress.org

---

# Danechello

  [  ](https://wordpress.org/support/users/danechello/)

 *   [Profile](https://wordpress.org/support/users/danechello/)
 *   [Topics Started](https://wordpress.org/support/users/danechello/topics/)
 *   [Replies Created](https://wordpress.org/support/users/danechello/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/danechello/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/danechello/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/danechello/engagements/)
 *   [Favorites](https://wordpress.org/support/users/danechello/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [How to delete my posts or atleast remove my domain name from them?](https://wordpress.org/support/topic/how-to-delete-my-posts-or-atleast-remove-my-domain-name-from-them/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/how-to-delete-my-posts-or-atleast-remove-my-domain-name-from-them/#post-2175669)
 * Hi Alchymyth, Sorry about my late reply I was on holiday for the week.
 * Thank you so much for this very much appreciated!!! I will be more careful next
   time.
 * All the best,
 * Dan
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [How to delete my posts or atleast remove my domain name from them?](https://wordpress.org/support/topic/how-to-delete-my-posts-or-atleast-remove-my-domain-name-from-them/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/how-to-delete-my-posts-or-atleast-remove-my-domain-name-from-them/#post-2175537)
 * Thank you for your comments alchymyth I understand what you are saying but you
   must appricated my situation!
 * I made the naive mistake of not realising all this would come up so easily on
   search engines. My problem is I created this site for a client so I need to sort
   this out.
 * If you check out this post. Someone had exactly the same problem as me and a 
   moderator sorted it out for them. So if there is any moderators who could please
   help me I would be very, very grateful!! – [http://wordpress.org/support/topic/how-to-delete-topic-on-this-forum?replies=15&#8243](http://wordpress.org/support/topic/how-to-delete-topic-on-this-forum?replies=15&#8243);
 * Best,
 * Dan
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Delete page titles from body of text?](https://wordpress.org/support/topic/delete-page-titles-from-body-of-text/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/delete-page-titles-from-body-of-text/#post-1920240)
 * Sorted now so thanks allot for you help guys!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can anyone please help with a few changes I need to make? Thanks](https://wordpress.org/support/topic/can-anyone-please-help-with-a-few-changes-i-need-to-make-thanks/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/can-anyone-please-help-with-a-few-changes-i-need-to-make-thanks/#post-1920239)
 * You sir are a legend. Everything is solved now so thanks allot for your help!!!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can anyone please help with a few changes I need to make? Thanks](https://wordpress.org/support/topic/can-anyone-please-help-with-a-few-changes-i-need-to-make-thanks/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/can-anyone-please-help-with-a-few-changes-i-need-to-make-thanks/#post-1920237)
 * The title is finally gone so thank you so much!!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Delete page titles from body of text?](https://wordpress.org/support/topic/delete-page-titles-from-body-of-text/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/delete-page-titles-from-body-of-text/#post-1920100)
 * Hey, thanks allot for the reply. I removed the code but unfortunately it didn’t
   work… any more ideas?
 * Here is my page.php code –
 *     ```
       <?php
       /**
        * The template for displaying all pages.
        *
        * This is the template that displays all pages by default.
        * Please note that this is the WordPress construct of pages
        * and that other 'pages' on your WordPress site will use a
        * different template.
        *
        * @package WordPress
        * @subpackage Twenty_Ten
        * @since Twenty Ten 1.0
        */
   
       get_header(); ?>
   
       		<div id="container">
       			<div id="content" role="main">
   
       <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
   
       				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
   
       					<div class="entry-content">
       						<?php the_content(); ?>
       						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
       						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
       					</div><!-- .entry-content -->
       				</div><!-- #post-## -->
   
       				<?php comments_template( '', true ); ?>
   
       <?php endwhile; ?>
   
       			</div><!-- #content -->
       		</div><!-- #container -->
   
       <?php get_sidebar(); ?>
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Change font](https://wordpress.org/support/topic/change-font-3/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/change-font-3/#post-1920036)
 * Thanks so much James I managed to change it!
 * Just to be cheeky and ask another favor… You wouldn’t by any chance know how 
   to get rid of the titles that I have in my main body of text on each page (except
   the home page), whilst still keeping the titles of the pages on the menu bar 
   at the top?
 * My site is – [http://www.mysite.co.uk](http://www.mysite.co.uk)
 * Also yeah I heard about my changes being wiped when I upgrade. I will do what
   you said soon but I really need my site up and running atm.
 * Thanks
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can anyone please help with a few changes I need to make? Thanks](https://wordpress.org/support/topic/can-anyone-please-help-with-a-few-changes-i-need-to-make-thanks/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/can-anyone-please-help-with-a-few-changes-i-need-to-make-thanks/#post-1920019)
 * Thanks so much Ganners!
 * 1. I deleted the code you suggested to remove the entry title from the body. 
   But unfortunately nothing changed? Nothing was messed up either…
 * 2. If fixed so thanks!
 * 3. My problem is that I would like the text about each person on the left and
   the photo of them on the right but wordpress only lets me put the image above
   or below a line of text… Do you think there might be a way of putting the image
   behind the text?
 * Many thanks again!!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Please help!](https://wordpress.org/support/topic/please-help-106/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/please-help-106/#post-1917483)
 * Problem solved! Thank you so much!!!!!
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Help please!](https://wordpress.org/support/topic/help-please-56/)
 *  Thread Starter [Danechello](https://wordpress.org/support/users/danechello/)
 * (@danechello)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/help-please-56/#post-1905772)
 * I’m not sure how I missed that…
 * Thanks allot

Viewing 10 replies - 1 through 10 (of 10 total)