shaile
Forum Replies Created
-
Forum: Installing WordPress
In reply to: After import from Blogger Comments not visableIs the post coming form any category ?
Forum: Installing WordPress
In reply to: just updated to 3.3.1 still cannot see dashboardGr8…you are always welcome.
Enjoy!!! 🙂Forum: Installing WordPress
In reply to: just updated to 3.3.1 still cannot see dashboardOhh Sorry to hear that..:(
Try this..
1- Take your database backup.
2-Backup of wp-content folder.
3-Install a fresh wordpress.
4-Replace wp-content folder.
5-Update your old databse.
Please notice each steps so that you can find where is the problem.
Thankss
Forum: Installing WordPress
In reply to: want to create wordpress website with domain name mebepizza.comDownload wordpress3.3.1 and install it.
then download a new theme as per your requirement and install it .
Forum: Installing WordPress
In reply to: just updated to 3.3.1 still cannot see dashboard1- Rename wp-admin and wp-includes folder .
2-Download fresh wordpress .
3-copy all files and folders excluding wp-content.
4-Paste in your root folder.
5-find the dashboard and update the wordpress….
oprc . co .sg /wp-admin/upgrade.php?_wp_http_referer=%2Fwp-admin%2F
enjoy……….
Forum: Fixing WordPress
In reply to: Comment FormForum: Installing WordPress
In reply to: Error establishing a database connectionUrl Please…
Forum: Themes and Templates
In reply to: Unique header image for each page;Theme DelicateUse feature image as header image and find the image with page id .
1- Feature Image
<?php $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); if ( $images ) { $total_images = count( $images ); $image = array_shift( $images ); echo $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' ); }2-Title
<?php the_title();?>3- Content
<?php the_content();?>4- Comments
<?php comments_number( 'no responses', 'one response', '% responses' ); ?>./@@@@@@@@@@@@@@@@@@@@@ Code /
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Installing WordPress
In reply to: installationunzip your folder(wordpress) and put it into root folder and run it on the browser..
Eg: localhost/wordpress/
Forum: Fixing WordPress
In reply to: Move WP from sub dir to rootU need to update your all url in database ….
Install any shopping cart plugin …:)
Like..http://wordpress.org/extend/plugins/paypal-donations/Forum: Themes and Templates
In reply to: adding .php files to custom pageyou can also try <?php include(‘footer.php’);?>
Forum: Fixing WordPress
In reply to: New clean install but missing default header imagesRemove this <img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” /> if you don’t want an image but if you want to display the image you need to upload a image from your dashboard
or from ftp http://www.allat39.co.uk/wp-content/themes/twentyeleven/images/headers/lanterns.jpg
if this image already exist in this folder then you have to make it 777 from your ftp…