Robin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: CSS changes appear in Opera Browser but not Firefoxto me the site opens exactly same in firefox, chrome, opera
can you point out the css changes you made which you think are not updating?
can you pastebin your css ( changes )
i quickly went through your css from all the 3 browsers and they are sameForum: Fixing WordPress
In reply to: CSS changes appear in Opera Browser but not Firefoxcan you post your link
Forum: Fixing WordPress
In reply to: display random posts on index.php instead of latest@alchmyth i did add the codex for is_home
and than just updated the code what fonglh wrote
Forum: Fixing WordPress
In reply to: display random posts on index.php instead of latestyup
you can add the_content()
or the_excerpt()this was just a reference guide to put you on track
Forum: Fixing WordPress
In reply to: display random posts on index.php instead of latest<?php $posts = get_posts('orderby=rand&numberposts=5'); foreach($posts as $post) { ?> <li> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php the_title(); ?> </a> </li> <?php } ?>Forum: Fixing WordPress
In reply to: display random posts on index.php instead of latesti just gave you a reference of how to do it, you have to call that in a loop
<?phpif (is_home() ) {
Your code page loop
}
?>Forum: Fixing WordPress
In reply to: display random posts on index.php instead of latestyou will use that in your functions.php file
if(is_home())
and the code which fonglh gaveForum: Fixing WordPress
In reply to: redirecting to home page! please helpcheers
Forum: Fixing WordPress
In reply to: Navigation Menu in Cloned blog links back to old blogcool
Forum: Fixing WordPress
In reply to: redirecting to home page! please helpok got it yup
<meta http-equiv=”refresh” content=”120; url=http://www.abinashmohanty.com” />
this is redirectingForum: Fixing WordPress
In reply to: redirecting to home page! please helpSorry it doesnt redirect for me, i kept to your post for good 10 min
Forum: Fixing WordPress
In reply to: Navigation Menu in Cloned blog links back to old blogbackup before doing so though
Forum: Fixing WordPress
In reply to: Navigation Menu in Cloned blog links back to old blogso which ever the database is setup for your cloned site, use a DB script to search and replace
Forum: Fixing WordPress
In reply to: Navigation Menu in Cloned blog links back to old blogi havnt used installatron but does this mean that both your site are using same database ?
Forum: Fixing WordPress
In reply to: Navigation Menu in Cloned blog links back to old blogyou would have to update site_url on phpmyadmin did you do a proper search and replace on your DB ?