\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } College – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Tue, 23 May 2023 01:15:53 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Financial tips for recent college graduates https://cbomo.com/apiclick-aspxreffexrssaidtid646c13c868d8419eab61a1fef68b54fburlhttps%3a%2f%2fwww-wlwt-com%2farticle%2fmoney-monday-financial-tips-for-recent-college-graduates%2f43966022c8398235884169981915/ https://cbomo.com/apiclick-aspxreffexrssaidtid646c13c868d8419eab61a1fef68b54fburlhttps%3a%2f%2fwww-wlwt-com%2farticle%2fmoney-monday-financial-tips-for-recent-college-graduates%2f43966022c8398235884169981915/#respond Tue, 23 May 2023 01:15:53 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid646c13c868d8419eab61a1fef68b54fburlhttps%3a%2f%2fwww-wlwt-com%2farticle%2fmoney-monday-financial-tips-for-recent-college-graduates%2f43966022c8398235884169981915/ [ad_1]

Money Monday: Financial tips for recent college graduates



IS OFFICIALLY BEHIND US AND MANY YOUNG ADULTS ARE NOW ENTERING THE REAL WORLD. SOME OF THEM MAY BE FINANCIALLY INDEPENDENT FOR THE FIRST TIME IN THEIR LIVES, BUT FINANCIAL RESPONSIBILITY IS NOT SOMETHING THAT’S NECESSARY, ONLY TAUGHT IN COLLEGE. AND SO TO HELP US BREAK ALL OF THAT DOWN, WE ARE JOINED BY FINANCIAL ADVISOR JARRETT BUTTERWORTH FROM NORTHWESTERN MUTUAL. GERRI, THANKS SO MUCH FOR JOINING US HERE. ABSOLUTELY. THANKS FOR HAVING ME, JARED. LET’S GET RIGHT TO IT. WHAT DO YOU EXPECT RECENT GRADUATES TO EXPERIENCE AS THEY ENTER THE REAL WORLD? YEAH, THAT’S A GREAT QUESTION. I’LL JUST SAY THERE’S GOING TO BE A LOT OF CHANGE GOING FROM BEING IN COLLEGE TO THE REAL WORLD. ONE THING IS THE MOST IMPORTANT. IT’S GOING TO BE HAVING A CRUCIAL AND IMPORTANT SET OF YOUR FINANCES. I THINK THAT’S ONE THING THAT WHEN YOU’RE IN COLLEGE, YOU DON’T REALLY THINK ABOUT. THERE’S A LOT OF FOCUS ON GOING THROUGH SCHOOL AND PASSING CLASSES, BUT HAVING A REALLY GOOD HOLD ON YOUR FINANCES. SOME THAT’S GOING TO SET THEM APART. YEAH. AND JARED, WHAT SHOULD RECENT GRADS KNOW ABOUT FINANCIAL PLANNING? THEY’RE STARTING OUT SO EARLY IN THEIR LIVES AND CAREER, BUT THEY STILL HAVE TO THINK AHEAD. YEAH, THERE’S A COUPLE OF REALLY SMALL THINGS THAT ARE ABLE TO HELP COLLEGE STUDENTS PREPARE FOR THE REAL WORLD, SUCH AS BUDGETING AND JUST HAVING AN EMERGENCY FUND. SOME OF THE THINGS THAT WE DON’T REALLY THINK ABOUT WHEN WE’RE INCURRING THIS TYPICAL COLLEGE EXPENSES. SO THOSE ARE TWO AREAS THAT I WOULD DEFINITELY FOCUS ON IF YOU’RE COMING RIGHT OUT OF COLLEGE. WE ALSO KNOW THAT THE FEDERAL STUDENT LOAN REPAYMENT IS EXPECTED TO COME BACK OVER THE SUMMER. WHAT ARE MAYBE SOME STRATEGIES THAT KIDS CAN USE AS THEY’RE GRADUATING TO REALLY TACKLE THAT? BECAUSE THAT’S LIKE A HUGE, YOU KNOW, PAYMENT THAT THEY’RE LOOKING AT AND COULD LINGER FOR YEARS, IF NOT DECADES, IF THEY DON’T GET ON TOP OF IT. ABSOLUTELY. AND IT’S A REALLY STRESSFUL SUBJECT, I WOULD SAY, FOR MOST FOLKS ABOUT TO GRADUATE COLLEGE AND I WOULD SAY ONE THING YOU NEED TO FIGURE OUT IS WHETHER YOU HAVE PRIVATE OR FEDERAL STUDENT LOANS FIRST TO START, BECAUSE THERE IS TYPICALLY A SIX MONTH GRACE PERIOD FOR THOSE FEDERAL STUDENT LOANS FOR YOU TO FIGURE OUT, HOW AM I GOING TO PAY THESE? WHAT’S THE BEST STRATEGY THERE? AND SO ONE THING THAT I WOULD FOCUS ON IS HOW CAN WE ACTUALLY PAY THOSE DOWN THE MOST EFFECTIVE WAY? SO HAVING A GOOD IDEA, AN INTEREST RATE, THE LOAN TYPE AND THE COMPANY THAT YOU’RE DOING WITH IS GOING TO BE REALLY IMPORTANT. YEAH. AND I THINK ALSO, TOO, A REMINDER FOR THOSE GRADUATES, KEEP YOUR EXPENSES LOW AS LONG AS YOU CAN, ESPECIALLY WHEN YOU’RE FIRST STARTING OUT. JARED NOW, HOW CAN GRADUATES PROTECT THEMSELVES FINANCIALLY AFTER THEY GRADUATE COLLEGE? THEY MAY NOT THINK THEY HAVE ANYTHING TO PROTECT. RIGHT. ABSOLUTELY. AND I WOULD SAY THE FIRST PLACE TO START IS JUST WITH THAT EMERGENCY FUND. THERE IS GOING TO BE A LOT OF EXPENSES THAT POP UP THAT WEREN’T ON THE COLLEGE CAMPUS WITH YOU. IF YOUR CAR BREAKS DOWN, IF SOMETHING HAPPENS IN THE SHORT TERM, I WANT TO MAKE SURE THAT I HAVE AT LEAST SIX MONTHS OF MY FIXED EXPENSES SAVED UP IN CASH. IF THAT OCCURS, I’M GOING TO NOT GO INTO BAD CREDIT CARD DEBT OR ANY BAD DEBT. I’M GOING TO BE ABLE TO PAY IT IN CASH, NOT HAVE TO WORRY ABOUT IT AGAIN OUTSIDE OF THAT, IF IT’S EVEN LONGER TERM, THERE’S DISABILITY AND LIFE INSURANCE TO MAKE SURE THAT FAMILY, LOVED ONES AND OTHER DEBTS ARE TAKEN CARE OF BECAUSE IT’S SO EASY. SOMETIMES YOU THINK THAT FIRST JOB IS THE ONE, YOU PLANNED IT AND THEN YOU GET THERE. YOU’RE LIKE, OH, MAYBE I DON’T WANT TO DO THIS. OR THEY DECIDED, MAYBE YOU’RE NOT THE BEST FIT. SO IT’S GREAT JUST TO BE, AS YOU SAID, LOW OVERHEAD AND PLANNING FOR THE FUTURE. JARED, THANKS SO MUCH FOR BEING WITH US. JURORS. GERARD BUTLER, WORTH FROM NORTHWESTERN MUTUAL, WE

Money Monday: Financial tips for recent college graduates

College graduation season is officially behind us and many young adults are now entering post-grad life with questions about how to handle their finances.Some of them may even be financially independent for the first time in their lives.However, financial responsibility isn’t something that is necessarily taught in a college classroom.On Monday, WLWT was joined at 4 p.m. by financial advisor Jared Buttelwerth from Northwestern Mutual, who broke down some of those questions young people may have.See the full interview in the video player above.

College graduation season is officially behind us and many young adults are now entering post-grad life with questions about how to handle their finances.

Some of them may even be financially independent for the first time in their lives.

However, financial responsibility isn’t something that is necessarily taught in a college classroom.

On Monday, WLWT was joined at 4 p.m. by financial advisor Jared Buttelwerth from Northwestern Mutual, who broke down some of those questions young people may have.

See the full interview in the video player above.

[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid646c13c868d8419eab61a1fef68b54fburlhttps%3a%2f%2fwww-wlwt-com%2farticle%2fmoney-monday-financial-tips-for-recent-college-graduates%2f43966022c8398235884169981915/feed/ 0
7 Best Side Hustles For College Students — Step By Step Guide https://cbomo.com/7-best-side-hustles-for-college-students-step-by-step-guide/ https://cbomo.com/7-best-side-hustles-for-college-students-step-by-step-guide/#respond Tue, 09 May 2023 21:37:44 +0000 https://cbomo.com/7-best-side-hustles-for-college-students-step-by-step-guide/ [ad_1]

Even a beginner can start these side hustles online

DataDrivenInvestor

Finding a legitimate side hustle for college students can be challenging. I have been through this and that’s why, this article will help you find the best side hustles for college students.

It’s frustrating and confusing… Isn’t it?

That’s why I started a blog to help students, housewives and beginners to make money online from the comfort of their homes.

5 Best Side Hustles For College Students
Side Hustles For College Students. Image Created Using Canva

Every student can start at least one side hustle from my list. No matter who you are or what you are studying at college, you can start easily.

Best 5 Side Hustles For College Students

I’m sure you are excited to learn more but please don’t skip any part of this article if you really to make money in your free time.

Let’s quickly start with the easiest method.

1. Start A Faceless YouTube Channel — No Skills Required *

Yes, generally you know that you need to have good skills in video editing, marketing skills and knowledge or skills to share in the form of video content.

But there is a way, which makes money on YouTube even if you don’t have any skills at all and you can just follow the easy process.

— No video editing skills are required.
— No comedy, technical, entertainment or any other skills are required to create video content about that.

Yes, That’s a possible and legitimate way for you.

How you can start?

Follow the steps given below to start side hustles as a college student:

Step1: Go to the GhatGPT website and type the prompt like any of these:

Write a 5 minutes video script about "5 best places to travel in the world"

Or

Write a 5 minutes video script about "Why Egypt is quite famous for Mummy"

Yes, likewise you can instruct the ChatGPT to write a video script for your YouTube video on your desired topic.

Step 2: Signup to the Pictory.ai website.
They offer a free trial as well to test their services. This website will create a video with video over from your script created in step 1.

Pictory
Text to video converter. Image source: Pictory.ai

Follow the steps:

  1. Login to the Pictory.ai website.
  2. Paste the video script.
  3. Select the right AI video for your video.
  4. just drag n drop or delete to change any image in the video.
  5. Let the site create your video and download it to publish on your YouTube channel.

That’s it. Without any video editing or other necessary skills, you can recreate and publish good trending videos on YouTube to make money online.

This article can help you further more to build and grow your YouTube channel quickly.

Wonderful, this was just one easy Side Hustles For College Students like you and I’m going to share more.

Stick with the post until you find the best for yourself. It will take less than 20 mins to learn and start, don’t hurry.

2. Write Online To Make Money (Free Method)

Yes, If you believe that you are good at writing about anything that people may love to read to solve any problem.

That’s it, you can earn online.

I write on my personal blog about SEO, digital marketing, and different ways to make money online.

College students like you search on Google and land on my website to find the best resources to learn and earn for free.

But, It also makes me money in many ways.

  1. I can monetise my blog with ads to earn.
  2. Sell courses on my blog.
  3. Promote products or services to make money when readers like to purchase any promoted products.

There are many ways to make money on your personal blog.

This article can help you build your personal blog and start making money in your free time as a college student.

Though, this is just one way to more money as a writer.

Even if you don’t want to create your own blog, you can join these free blogging websites and write to make money.

  1. Medium
  2. Newsbreak
  3. HuffPost
  4. Vocal Media
  5. Can find writing gigs at Fiverr, Upwork, and freelancer.com and other freelancing websites.

Opportunities are endless and you can start to make money as a writer.

3. Start Affiliate Marketing Without Money

This method may look unrealistic but it has great potential. If you are a college student trying to start a side hustle, this is the best to go with.

Free — Free — Free !! it’s a 100% free method.

Though there are many paid and free ways to make money online as an affiliate marketer, I’ll share the best free ways to earn.

Affiliate marketing is basically a good way to promote, generate sales or complete certain actions for the business (online sites) to make money in the form of commission.

Above article can help any college student to start his side hustle to make extra money online as an affiliate marketer.

Follow the simple steps:

  1. Join a good affiliate network website.
  2. Build a good landing page around the products you want to promote for making money.
  3. Go to QUORA or Medium and publish high-value content.
  4. Add the product link to the Medium post or answers you are writing on Quora.
  5. It will bring free traffic to the affiliate landing page and help you generate sales.

The more actively you do, the more sales you can generate and it will account for 1000s of dollars in earnings every month.

This article can help you understand it better.

This free QUORA method can help you generate a good number of visitors to your website (affiliate page) and make you money.

If you want to learn 10 other ways to make money as an affiliate marketer, you can visit my website to discuss this in detail.

👉 My website: Learn And Make Money Online.

4. Freelancing

For one who has 2 to 4 hrs daily, freelancing can be a good Side Hustles For College Students. Yes, it’s almost free to start and makes you a decent amount of money online.

What NOT, If you can make $10 to $200 per hour.

No, I’m not joking. I have been a freelancer ever since I was in the third year of my engineering course at a reputed college.

Mani Pathak Freelancer
Reference: My Freelancer Profile. Image By Author

Though it was not easy to find my very first online freelancing project, if you give up too soon, it’s better you forget about it.

Trust me, I going to make it as easy as possible for you.

Problems you may face:

  • Don’t to where to find projects.
  • How much you should charge your clients?
  • Which skills do you require?
  • How a fresher can start freelancing?
  • How to make a high-rated freelancer?

I have written several posts to help college students, housewives and beginners to start freelancing.

You can refer to these posts to make money as a freelancer.

Fiverr, Upwork and freelancer.com are among to top freelancing websites where you can start making money while studying in college.

As a freelancer, you can find all kinds of work that don’t even require any deep technical knowledge.

Such as:

  • Data entry operator work
  • Virtual Assistant work
  • Web designing work
  • Content writing
  • Customer support
  • Video editing

And much more. There are 200+ kinds of work which you can do as a freelancer.

Please keep in mind, a good freelancer needs patience, hard work and the right knowledge to make any money.

Must read the ARTICLE I have shared above to understand and make money like a pro freelancer.

5. Teach Online

What could be better for college students to teach junior students and make money as a teacher?

You earn respect, make a good amount of money and it helps you to keep your knowledge on track over a long period of time.

You can’t believe what I’m today because I tried so many things as a college student to make some extra cash to help myself.

Now, fortunately, I’m feeling really happy to help you guys.

Initially, In my college days, I had thought of teaching online back in 2013–14 and It really worked.

After a month of research online I found two good sites to make make money online.

  1. SNAPQ — Not sure if they are still operating.
  2. Chegg- It still allows you to earn money as a teacher.
Chegg — Help students to earn money online
Image Source: Google.

Not much but, I was making $100 to $150 every month as a teacher.

Back then, It was not till now huge but at least, I was making some money to help myself with extra expenses.

Today, you can make even more as a teacher.

  1. Help students to do their homework and make money.
  2. Sell online courses in the subject where you are a master.
  3. Give personal one-to-one coaching.
  4. Create and sell eBooks at Amazon.
  5. Join a primary school as a part-time faculty.

What’s more, opportunities are endless.

A passionate college student can also start a Side Hustles on these two awesome websites to earn a decent amount of money.

  1. Skillshare
  2. Udemy
Sell courses at Udemy
Image Source: Udemy

As you can see in the above image, you can create and sell video courses on Udemy.com to make $500 to $50,000+ per month.

You can follow the same process for Udemy and Skillshare websites. For now, I’m going to share a step-by-step guide for selling courses on Udemy.

Follow the steps shared below to start today.

  1. Go to Udemy for the teacher website (here).
  2. Create your profile by entering the basic details and educational background.
  3. Create a video course on the topic you like and successful on the platform and you can make it better.
  4. Upload the course and keep it low-priced for some time to get good reviews to build trust.
  5. Once you have a good number of subscribed learners and review the course, you can increase the price.
  6. Promote the course with paid ads or at Medium to make a decent amount of sales every month.

Earn $1000 or more every month this way.

Not just that, any college student can just take live classes online to make money for sure.

Top 5 Platforms where you can teach live to earn money:

For college students struggling to start a side hustle for making good money online, here are the top 5 websites you can signup for.

  1. Preply
  2. Kajabi
  3. Tutorme.com
  4. Cuemath
  5. Tutor.com

I’m sure this will help any college student to start a side hustle in no time and you can earn a decent amount of money.

💡Please keep in mind:

  • You need to dedicate at least 1 to 2 hrs daily.
  • It’s either free or requires less than $20/m to start.
  • Must have a smartphone or PC with a good internet connection.
  • It can turn into a million-dollar business.

Bonus Side Hustle For Collge Students:

You are not alone, every year millions of college students across the globe search for the best side hustle for college students and end their struggle with disappointment.

That’s why, I tried to make this post as better can it can be.

Though, it can be easy if you have the right piece of information that very few people are talking about.

Let’s find one more good side hustle for college students as a bonus tip for you. Please #CLAP and share this post to help others.

6. Become A Social Media Influencer

College students are quite serious these days about social media and making a decent amount of money from it.

Yes, but this can be a side hustle for any college student. Let me explain it.

How to start?

To become a social media influencer, you need to have a good number of social media followers on any SM platform like Facebook, Instagram and others.

Now, this looks a little hard to do.

But trust me, it is much easier to do that than you college degree with Good marks.

Instagram Influencer Marketing — College Students Side Hustle
Photo by Erik Lucatero on Unsplash.

Before you learn how to do this, let me share how it will make you a good amount of money.

  1. You sell change brands to promote their business on your account.
  2. You can easily earn from a creator programme or selling your own courses.
  3. You can help others to grow their account followers and earn money.
  4. Collaborate and build your own brand.
  5. Sell digital or Amazon products to your followers.

There are many ways to make money if you have good numbers of loyal followers if you can become after reading this great helpful article.

But, This is the big challenge.

I mean, a huge number of followers.

That’s what, I will discuss now.

Follow the steps given below.

  1. Create a Facebook page, Instagram business account or any social media profile.
  2. Find what’s the trending posts, articles or videos that are getting more attention on the selected platform.
  3. Make similar or better content and publish.
  4. Keep posting on a daily basis.
  5. Interact with your followers and readers.
  6. Initially, you can run ads to grow it.
  7. Many platforms like to publish multiple times a day.
  8. This way, you will get more reach on the platform and more followers.

Sounds good, why don’t you try this?

Here is another good article published in “Search Engine Journal” which can help you grow your social media following.

The more followers you have the better deals you can crack and make a boatload of money as an influencer.

7. Travel Planner Side Hustle For College Students (Reseller)

This is slightly off the topic but this method can make a huge amount of money even if you are just a college student.

But how That’s is going to happen?

Well, I will discuss this here in detail, just stick with this post.

Photo by Luca Bravo on Unsplash

In my opinion, more than anyone else college student use to have a good amount of time to travel but this business is not just limited to students.

To start this side hustle, you need to follow the most effective way that can start to make $100 to $5000 from the very first month.

Follow the steps:

  1. Build a simple tour and travels website. If you hire someone, it will cost just $250 or less for a basic one. (Hire a freelancer.)
  2. Ask the designer/developer to create the best tour packages.
  3. Find a few local tour and travel companies and evaluate the tour packages.
  4. Re-sell (List) the at a higher price on your website.
  5. Partner with respective companies or local providers so that your customers can’t lose trust.
  6. Promote your website and tour package in your college, local community and online with the help of paid ads. Also, you can promote in Facebook groups to generate new bookings.
  7. On behalf of customers, book orders on respective vendors or suppliers you have partnered with at a lower cost.
  8. Keep the profit.

It’s it cool?

I know, it looks very difficult but all the methods, I have shared above are intended to make a good amount of money in the long run.

These side hustels can turn into a full time online business if you do passionately and that’s why it’s worth to take some pain.

Hope you found great value in this post.

10 Easy offline side hustles for college students:

I have 100s of ways to make money online but, may you just want to make money offline?

Why not, things are quite easy and make upfront money.

Try my 10 small side hustles for college students which you can start any time. There is no same until you find making money is more valuable than anything,

  1. Drive Uber.
  2. Mow Your Neighbor’s Lawns.
  3. Support at the nearby shop owner.
  4. Design websites for local business owners.
  5. Provide pet care services to neighbours.
  6. Re-sell goods in your free time.
  7. You can be a waiter.
  8. Provide home tuition services.
  9. Perform ART on the Street.
  10. Evaluate yourself and cash out your expertise in the local market.

There is nothing to leave your dream to start a side hustle. I got my first online income after trying for early 2 months.

But, It worked and now it is quite easy for me.

That’s why, I have shared my best expertise to help you learn and easily start your side hustle as a college student.

Takeaway For You

I’m happy that you are trying to start a side hustle as a college student, but please keep in mind, making money online requires passion and a skillset.

Maybe you will not make money from the first day but if you keep husting, you will learn some really crazy and futuristic things which can make you money even in the future.

Creating videos with the Pictory.ai website and publishing them on various platforms like Facebook, YouTube and others are among the best and most secure ways to make money online.

It’s an easy and 100% safe way that can make you money for sure. All you need is time and patience to start this side hustle for money.

This can be a passive source of income and even if you are not a college student, you can easily try this.

If you want to learn more awesome things with me, please subscibe and follow me at Manipathak.com

[ad_2]

Source link

]]>
https://cbomo.com/7-best-side-hustles-for-college-students-step-by-step-guide/feed/ 0