shaile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: "more" – tag in a single postFind the code the_content(); and replace it with
echo substr(get_the_content(), 0, 200);
/* 200 is the limit of the text */and paste this
< a href=”<?php echo get_permalink($post->ID); ?>”><?php _e(‘more..’);?>< /a>for more link..
Forum: Fixing WordPress
In reply to: changing my usernameGo to your datbase find the table wp_users edit user_login and update it…
Forum: Hacks
In reply to: How to display different featured image in category view and post view?Install Multiple Post Thumbnails
and paste this code in your function.php
/* Add secondary thumbnail (featured image) in page */ $thumb = new MultiPostThumbnails(array( 'label' => 'Secondary Image', 'id' => 'secondary-image', 'post_type' => 'page' ) ); /* Add secondary thumbnail (featured image) in posts */ $thumbPost = new MultiPostThumbnails(array( 'label' => 'Secondary Image', 'id' => 'secondary-image', 'post_type' => 'post' ) );[Please post code or markup snippets between backticks or use the code button.]
and the find secondary image area …like
http://example.com/?attachment_id=721
and upload the second image..
Forum: Fixing WordPress
In reply to: How to redirect a certain linkForum: Your WordPress
In reply to: my siteWow!….
fantastic…
great background image and header banner 🙂I like it .
need to change
http://www.screencast.com/users/shailemartin/folders/Default/media/204f3b9f-53c6-401e-9c57-dd8622010da4Export data base from old and open the sql file on any editor find old ulr and replace all old url to new url ….
Go to dash board of your bolg find Setting->Permalink and update it
Forum: Installing WordPress
In reply to: can't login to site, issues with styles being loadedyou need to remove space with url from table wp_option field name siteurl and home….
You can find the error in source code …..
Ctrl+u and search style.css.
<link rel=”stylesheet” href=”http://www.moko.com.php5-21.ord1-1.websitetestlink.com /wp-content/themes/coaster/style.css” type=”text/css” media=”screen” />
<link rel=”pingback” href=”http://www.moko.com.php5-21.ord1-1.websitetestlink.com /xmlrpc.php” />
Remove the space between websitetestlink.com /wp……….
Forum: Fixing WordPress
In reply to: How do you shift website content to the right?Your Wlcome Hulbert….:)
Forum: Meetups
In reply to: Burlington Vermont, WP MeetupHi guys
I am shaile from India .I am a wordpress developer .
I’m interersted to Burlington nice to meet you…:)Forum: Meetups
In reply to: Hyderabad, India – General InterestHi Friends,
This is Shaile from Delhi .
I am a wordpress developer glad to meet you……………:)Forum: Fixing WordPress
In reply to: How do you shift website content to the right?hi ,
Open master.css and change style on line no 77
#content {
float: left;
margin-left: 53px;
width:620px;
}Forum: Fixing WordPress
In reply to: Category Permalink not workingHi,
Have you uploaded .htaccess…?And also need to see your permalink on page or post…
Forum: Hacks
In reply to: Changing anchor of categorie linksok you can use
$category = get_the_category() ;
echo “KEYWORD”.$category;Forum: Hacks
In reply to: Changing anchor of categorie linkshi
Go to your theme and find content.php then find $categories_lists
and replace $categories_lists to ‘KEYWORD categorie’.(If theme is twentyeleven)
But if it is twentyten then find loop.php then find get_the_category_list( ‘, ‘ ) and replace get_the_category_list( ‘, ‘ ) to ‘Keyword’ ;Forum: Fixing WordPress
In reply to: I upgraded and it killed my siteDO you have a backup of your data base ..??
if yes then downlaod your wp version from
http://wordpress.org/download/release-archive/and import the data base again .
and then follow the step to upgrate your wp;