₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,468 members, 8,422,224 topics. Date: Sunday, 07 June 2026 at 09:48 PM

Toggle theme

Prime007's Posts

Nairaland ForumPrime007's ProfilePrime007's Posts

1 2 3 (of 3 pages)

PhonesRe: All Blackberry And Htc Problems Post Here For Solution by Prime007: 2:53am On Jun 05, 2013
My BB Curve has developed a fault. The screen just turned white and since then I can't use the phone! What can I do?
BusinessRe: Making It Big On Fiverr (Q&A thread) by Prime007: 8:52pm On Apr 04, 2013
eedriyz: Have you sent me your email?
Send it to kmarx101 at yahoo dot com

Thanks
BusinessRe: Making It Big On Fiverr (Q&A thread) by Prime007: 5:16am On Apr 04, 2013
Can I get a copy of this e-book? Sounds interesting

eedriyz: About to sleep! I just wanted to update you guys on the package I talked about. It's an ebook, not just an ebook, but probably the best fiverr ebook. I explained how to complete 10 different gigs which are real and proven profitable gigs on fiverr. I had to share so many stuffs for free in the ebook and I think it is worth N20k. I've been working on that ebook since February and I spents hours online researching, testing and trying several stuffs.
I'm back on my phone but here are few things I could remember in the ebook.
How to create a fiverr account and add quality gigs
Different ways to get ebooks to sell.
Article writing gigs and how to complete them (I shared an ebook on common English mistakes and corrections).
Social bookmarking gigs and how to complete them.
How to create ecovers (ebook covers).
Youtube services and how to provide them.
Keyword research and how to go about them.
Twitter services to provide.
Selling traffics on fiverr.
Video presentations and how to create and sell them on fiverr.
Squidoo and fiverr. And more
Also shared how to outsource jobs on fiverr (the process of hiring people to do ur fiverr gigs for u, while you make profits).
And how to resell services on fiverr.
I also shared how to make money buying fiverr gigs.
And how not to get banned on fiverr. And much more.
The bonus guide is a paypal account opening guide. 15 copies will be given away to Nairalanders before I decide on what to do with it.
Thanks
WebmastersRe: What Is Wrong With Building 5 Page Websites For 5,000? I Do by Prime007: 11:17pm On Mar 15, 2013
soloqy: @darkhand, Its not fear, people are *amazed* at the offer grin .
There are levels, and there are people that cant be bothered with the so-called competition you are offering cause they dont fish in the same waters as you.
Go ahead on fivver .. No one here will stop you wink
Hahahaha, look at this clown. You are sooo clueless its unbelievable. Better grow some balls and stop trying to grow a brain.
BusinessRe: Have You Ever Withdrawn Your Funds From Fiverr by Prime007(op): 10:59pm On Mar 15, 2013
dav8id: Level 1 seller, withdrawal should nt be ur problem.coz u're qualify to apply for fiverr revenue card and make ur withdrawal.. Alternative , paypal is also another mode of withdrawing..
Thanks, I just wanted to hear from others who have done it. If there are any pitfalls etc. Just share knowledge.
WebmastersRe: What Is Wrong With Building 5 Page Websites For 5,000? I Do by Prime007: 3:11am On Mar 15, 2013
I have never seen a thread so full of fear. The idea of cheap websites has scattered some peoples brains. Na wa oh!!. Is it that you guys can't compete or what?
chuchutech can't leave the thread, just in case people come for the cheap websites. In fact I will start offering a gig on fiver, two or three page website for $5. Then I will point people from here to my gig.
BusinessHave You Ever Withdrawn Your Funds From Fiverr by Prime007(op): 2:45am On Mar 15, 2013
Hello members,

I want us to talk about fiverr. The microjob site. I recently started offering some gigs on the website and I seem to have had some luck. My gigs became popular and now I want to withdraw my funds. Have any 0of you withdrawn your funds? What are the do’s and don’ts?

Lets share knowledge, oh by the way I am a level 1 seller.
WebmastersRe: Urgent Help Needed With Wordpress by Prime007(op): 4:22am On Jan 23, 2013
Thank you all for your replies. The facts are:

1. I don't have a blog yet.

2. Whatever WordPress theme I choose, to achieve what I want requires me to amend the loop sequence in the index.php file.

3. To have WprdPress display posts as a 2 column grid is petty straight forward. This requires only the addition of 4 lines to the Wordpress loop code.
for example : <?php if ($col == 1) echo "<div class="row">"; ?>

4. The problem really is how to have the script display a single post from a specified category, before starting the grid. This works irrespective of theme (the loop is in the same place in every theme)

This is how the WordPress website itself explains it:

"Leaving all formatting and CSS issues aside, let us assume we want to have two lists of posts. One which would list the most recent posts (the standard 10 posts most recently added), and another which would contain only one post from the category ‘featured’. Posts in the ‘featured’ category should be shown first, followed by the second listing of posts (the standard). The catch is that no post should appear in both categories.

Step 1. Get only one post from the ‘featured’ category.
<?php $my_query = new WP_Query('category_name=featured&posts_per_page=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<!-- Do stuff... -->
<?php endwhile; ?>

In English the above code would read:
Set $my_query equal to the result of querying all posts where the category is named featured and by the way, get me one post only. Also, set the variable $do_not_duplicate equal to the ID number of the single post returned. Recall that the Do stuff line represents all the formatting options associated for the post retrieved.
Note that we will need the value of $do_not_duplicate in the next step to ensure that the same post doesn't appear in both lists.

Step 2. The second loop, get the X latest posts (except one).
The following code gets X recent posts (as defined in WordPress preferences) save the one already displayed from the first loop and displays them according to Do stuff.
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue;?>
<!-- Do stuff... -->
<?php endwhile; endif; ?>

In English the above code would read:
Get all posts, where a post equals $do_not_duplicate then just do nothing (continue), otherwise display all the other the posts according to Do stuff. Also, update the cache so the tagging and keyword plugins play nice. Recall, $do_not_duplicate variable contains the ID of the post already displayed.

The End Result
Here is what the final piece of code looks like without any formatting:
<?php $my_query = new WP_Query('category_name=featured&posts_per_page=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>
<!-- Do stuff... -->
<?php endwhile; ?>
<!-- Do other stuff... -->
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; ?>
<!-- Do stuff... -->
<?php endwhile; endif; ?>

The end result would be a page with two lists. The first list contains only one post -- the most recent post from the 'feature' category. The second list will contain X recent posts (as defined in WordPress preferences) except the post that is already shown in the first list. So, once the feature post is replaced with a new one, the previous feature will show up in standard post list section below (depending on how many posts you choose to display and on the post frequency). This technique (or similar) has been used by many in conjunction with knowledge of the Template Hierarchy to create a different look for home.php and index.php. See associated resources at the bottom of this page."


What I wanted was someone who could simplify this, especially the "do stuff" part , which is where the post formatting is inserted.
WebmastersRe: Urgent Help Needed With Wordpress by Prime007(op): 9:09pm On Jan 22, 2013
This is sad. I always thought this board was a place to come for assistance. The truth is what I want is common. The complete customized website is sold for $20, I am sure none of you would accept such a "paltry" amount for your "skills". I hope that there may still be some kind and helpful people around.
WebmastersRe: Urgent Help Needed With Wordpress by Prime007(op): 9:17pm On Jan 21, 2013
Thanks for the offer. I am looking for help on a specific problem. If you can do it, please post the code here.
WebmastersUrgent Help Needed With Wordpress by Prime007(op): 10:39am On Jan 19, 2013
Hi,

I need some help from the "gurus" and "guruesses" (is there such a word?). I have been trying to edit a WordPress theme and got stuck.
I wanted to edit the way the theme looked by having a slideshow at the top of thehomepage and the next posts on the same page displayed in a 2 column form, like a grid.

Now I was reading about the loop and how to use either multiple loops or nested loops to do this, but frankly I got lost. Can anyone please assist with the code to do this?

I know you guys are good, so please help a brother out.
WebmastersRe: Do You Want A Free Website? by Prime007: 10:42am On Nov 28, 2012
For your business in the box, do you provide coaching? If I need any help will you provide it?
PhonesRe: Airtel BB Plan Rocks On Pc by Prime007: 10:11am On Nov 26, 2012
zangiff: yea, go to ur setting...locate the configuration and use internet.ng.airtel.com...password as *99#...you are good to go
Can anyone help me out with the way to configure my nokia to work with the airtell bis on my laptop ? THANKS
ComputersRe: Etisalat Blazing With Tunnelguru by Prime007: 9:57am On Nov 26, 2012
Can I have the info? As someone said "inbox me" here - dcards28 at gmail dot com
BusinessRe: Which Best Article Writing Site Can I Join To Earn Money from Nigeria by Prime007: 10:56pm On Aug 29, 2012
No one can tell you this, you need to decide which one is good for you. Each website or service has it's own pros and cons. Try as many as you can till you find the ones that fit.

What I can advise you is to first find A RELIABLE way to change whatever Paypal you earn or you will find that you work and the exchanger is the one that spends your money. Really it's that bad.
BusinessRe: How Long Will It Or Normally Take These Day? by Prime007: 3:33am On Aug 23, 2012
legalwealth: This is somehow helpful but well understood.

Can you plz break it down a bit.Thanks
When a wire is sent there are a number of steps involved.
1. The sender (Mr. A) asks his bank (bank A) to send a wire for say $100
2. Mr. A gets from his bank a confirmation email / note that the wire has been sent.
3. Bank A sends a wire to Bank B ( this is an intermediary bank called a correspondent bank) to credit the account of your bank "GTB” with them.
4. Bank B credits GTB’s account and tells them “this money is for Legalwealth and gives your account details.
5. GTB credits your account in your local branch.

Now if this is taking to long, you can trace where the money is by asking Mr. A for the confirmation email or note his bank gave him. It will have all the details needed to ask your bank for the money. If they still cannot find the money, then Mr. A’s bank can do what is called a trace. Banks charge for a trace.
BusinessRe: How Long Will It Or Normally Take These Day? by Prime007: 7:47pm On Aug 22, 2012
There are 2 answers to this. The first is the Nigerian answer which is “Ol boy these things can delay oh. Let us hope “. Then there is the educated answer, which is 48 hours. Why 48 hours? Because banks use, “swift” telegraphic transfers. The day the person in the USA orders the wire, the banks correspondent bank gets the money. The correspondent bank has a grace period of a day, maybe two to wire the money to a bank in your country.
If in fact there is a wire let the sender email you a copy of the wire instructions his bank gave him. This will contain all the info (swift numbers, transfer numbers etc) that identify the transaction. Take this to your bank and ask what is happening to your money. As a last resort people do what is called a trace. This is the sender’s bank demanding from the correspondent bank an account of the money they asked them to forward to you. It used to be the practice in some banks here in Nigeria for wires to arrive and the bank will just sit on it till the owner “shows his or her face”.
AdvertsRe: Unbelievable But TRUE ... by Prime007: 6:39pm On Aug 03, 2012
Interesting. Let us have more info please.
WebmastersRe: Need Help To Collect My Paypal Earnings by Prime007(op): 4:52pm On Jul 20, 2012
Thanks for the warning, will watch my back.


Excelboi: Op my friend, just be careful on using anonymous pals you met online and withdraw into the account, all the best.
WebmastersRe: Need Help To Collect My Paypal Earnings by Prime007(op): 4:43am On Jul 20, 2012
Bunp.
AdvertsRe: How Can I Collect My Paypal Earnings? by Prime007(op): 4:40am On Jul 20, 2012
Bump
WebmastersRe: Need Help To Collect My Paypal Earnings by Prime007(op): 11:38pm On Jul 16, 2012
Dual Core: How much are you looking at pulling out each time, at what intervals and for how long?
$100 to $200 per week
WebmastersRe: Need Help To Collect My Paypal Earnings by Prime007(op): 4:01pm On Jul 16, 2012
Thanks for the info but these are content creation sites like iwriter & co.


Dual Core: If you are talking about Freelancing sites, most of them support the Payoneer Mastercard and will ship one to your doorstep from South Africa at no cost and in a timely manner. I think you should get that.
WebmastersNeed Help To Collect My Paypal Earnings by Prime007(op): 10:39pm On Jul 15, 2012
I am a writer and write for some websites on the Internet. They insist on only paying to a Paypal account. I am looking for someone with a Paypal account to help me out so I can collect my earnings.

If you can help please contact me through this email optimus.prime32@yahoo.com
AdvertsHow Can I Collect My Paypal Earnings? by Prime007(op): 10:16pm On Jul 15, 2012
I am a writer and write for some websites on the Internet. They insist on only paying to a Paypal account. I am looking for someone with a Paypal account to help me out so I can collect my earnings.

If you can help please contact me through this email optimus.prime32@yahoo.com
FamilyRe: What Makes A Good Choice Of Husband? by Prime007: 10:38am On May 24, 2012
All men are good husband material. It is women who keep a home together or let it fall apart. The real question is are any of the posters here worth having in a home? Also what to look for in a woman that will point to the fact that she is the type to build a home.
FamilyRe: What Would You Advise Him To Do? by Prime007: 10:29am On May 24, 2012
I can see why the husband would be bitter, that kind of info is very important.

@john
Maybe they don't really think she is a woman.
PhonesRe: Nokia Care @ Nigeria: by Prime007: 10:20pm On May 12, 2012
Hi,

I have a problem with my Nokia c3, I mistakenly deleted my laptop from the active devices list,
since then the phone has refused to recognize any active device. Since the active device is used to browse,
I can no longer use the phone as a modem.

Any help on rectifying this? I don't even know if this is a hardware or software problem.

1 2 3 (of 3 pages)