Ankit Puri

Amazon India launched a new feature called #AmazonCart and it allows the users to add products to the cart using Twitter and check out later.

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Sitemeter problem with referrer url with WP? #45155
    Ankit Puri
    Participant

    @Kagey10

    Can I have your Blog or Site URL so that I can see what’s the issue.

    in reply to: Place ads on a wordpress blog? #45230
    Ankit Puri
    Participant

    There is minimum criteria but the only thing is you need to have any approved account.
    If you blog is quite old and get some traffic
    you can apply for google adsense
    http://www.adsense.com

    in reply to: Help needed: Migrating from Blogger to WordPress #45437
    Ankit Puri
    Participant

    Peter
    You can use wordpress import feature to import all your blogspot posts to wordpress then all you need to do is set 301 perma redirection and change your permalinks to match with blogspot.

    The permalink structure will be like this /%year%/%monthnum%/%postname%.html

    This are the codes you need to add on your blogspot blog template for 301 perma redirection

    after <blogger> add

    <MainOrArchivePage>
    <script language=”javascript”><!–
    var blog_root=http://www.shoutmeloud.com/;
    document.location.href=blog_root;
    //–></script>
    </MainOrArchivePage>

    <ItemPage>
    <script language=”javascript”><!–
    var process_page=”http://www.shoutmeloud.com/bloggerposts.php”;
    var newpage=process_page;
    var oldlink=”<$BlogItemPermalinkUrl$>”;

    newpage+=”?p=”+oldlink;
    newpage=newpage.toLowerCase();
    document.location.href=newpage;
    //–></script>
    </ItemPage>

    and after <head> add

    <meta http-equiv=”refresh” content=”0;url=http://www.yourdomain.com/” />

    Now create a bloggerposts.php on the root of your wordpress directory and add this code it, replace yourdomain with your blog name

    <?php

    require($_SERVER[‘DOCUMENT_ROOT’].’/wp-blog-header.php’);
    $search_link = $_GET[‘p’];
    $vars = explode(‘/’, $search_link);
    $num = count($vars) – 1;
    $filename = $vars[$num];
    $slug = str_replace(“.html”, “”, $filename);

    $SQL = “SELECT posts.* FROM $wpdb->posts AS posts WHERE posts.post_name = ‘$slug’ LIMIT 1”;
    $posts = $wpdb->get_results(“$SQL”);

    if ($posts) {
    foreach ($posts as $post) {
    $found_link = get_permalink($post->ID);
    }
    }
    else
    {
    $found_link = “http://www.shoutmeloud.com/&#8221;;
    }

    ?>

    <html>
    <head>
    <title>Redirecting…</title>
    <script language=”javascript”><!–
    document.location.href=”<?php echo ($found_link); ?>”;
    //–></script>

    <meta http-equiv=”refresh” content=”2;url=<?php echo ($found_link); ?>”>

    </head>
    <body>
    <h1>Redirecting…</h1>
    <p>You can also proceed immediately to “><?php echo ($found_link); ?>.</p>
    <p>The main blog URL is http://www.yourdomain.com/.</p>
    </body>
    </html>

    I hope this will help you.

    in reply to: How to add money in PayPal account? #45451
    Ankit Puri
    Participant

    Ryan you can ask for IFCA code from back and this way you can link your bank account to your paypal.
    Though I’m unsure this way will you be able to make online payment, but this way you will be able to transfer money to your ban account.

Viewing 4 posts - 1 through 4 (of 4 total)