/** * When a formidable form submitted, add form's connected product to cart. */ add_action('frm_after_create_entry', 'ff_take_user_to_wc_checkout_for_payment', 20, 2); function ff_take_user_to_wc_checkout_for_payment($entry_id, $form_id) { $linked_products = get_posts([ 'post_type' => 'product', 'post_status' => 'publish', 'numberposts' => 1, 'meta_key' => '_attached_formidable_form', 'meta_value' => $form_id, 'cache_results' => false, ]); if (empty($linked_products)) { return; } $product_id = $linked_products[0]->ID; if (!function_exists('WC') || !WC()->session) { return; } if (method_exists(WC()->session, 'set_customer_session_cookie')) { WC()->session->set_customer_session_cookie(true); } WC()->cart->empty_cart(); $entry = FrmEntry::getOne($entry_id, true); $form_data = $entry->metas; $addon_total = 0; foreach ($form_data as $value) { if (is_string($value) && strpos(trim($value), '$') === 0) { $price = floatval(str_replace(['$', ','], '', $value)); $addon_total += $price; } } WC()->session->set('addon_total', $addon_total); WC()->cart->add_to_cart($product_id, 1, 0, [], ['addon_total' => $addon_total]); if (empty($_POST['frm_ajax'])) { wp_safe_redirect(wc_get_checkout_url()); exit; } } /** * When an item is added to the cart, remove other products. */ add_filter( 'woocommerce_add_to_cart_validation', 'ff_keep_only_one_product_in_the_cart', 10, 3 ); function ff_keep_only_one_product_in_the_cart( $valid, $product_id, $quantity ) { if( ! empty ( WC()->cart->get_cart() ) && $valid ) { WC()->cart->empty_cart(); } return $valid; } /** * Disable add to cart confirmation message. */ add_filter( 'wc_add_to_cart_message_html', '__return_false' ); /** * Redirect user to checkout page after adding a product to cart. */ add_filter ('add_to_cart_redirect', 'ff_redirect_to_checkout'); function ff_redirect_to_checkout() { global $woocommerce; $checkout_url = $woocommerce->cart->get_checkout_url(); return $checkout_url; } /** * Calculate formidable add-on prices and add them to the total price in WC checkout. */ add_action('woocommerce_before_calculate_totals', 'ff_apply_addon_total_to_cart_price', 10, 1); function ff_apply_addon_total_to_cart_price($cart) { if (is_admin() && !defined('DOING_AJAX')) { return; } foreach ($cart->get_cart() as $cart_item) { if (!empty($cart_item['addon_total'])) { $base_price = $cart_item['data']->get_price(); $addon_price = floatval($cart_item['addon_total']); $cart_item['data']->set_price($base_price + $addon_price); } } } /** * Use different Authorize.net accounts in checkout. */ add_filter( 'option_woocommerce_authorizeaim_settings', function( $woocommerce_authorizeaim_settings ) { global $woocommerce; if ( function_exists( 'is_checkout' ) && function_exists( 'get_field' ) && is_checkout() ) { foreach ( $woocommerce->cart->get_cart() as $cart_item ) { $product_id = $cart_item['product_id']; $api_login_id = get_post_meta( $product_id, 'api_login_id', true ); $transaction_key = get_post_meta( $product_id, 'transaction_key', true ); if ( !empty( $api_login_id ) && !empty( $transaction_key ) ) { $woocommerce_authorizeaim_settings['login_id'] = $api_login_id; $woocommerce_authorizeaim_settings['transaction_key'] = $transaction_key; break; } } } return $woocommerce_authorizeaim_settings; } ); /** * When placing a new WC order by submitting formidable, * set order's customer detail according to the submitted information. */ add_action( 'woocommerce_new_order', 'ff_update_customer_data', 10, 2 ); function ff_update_customer_data($order_id,$order){ $postdata = $_POST; $email = $postdata['la_email']; $username = $postdata['la_email']; $args = array( 'user_email' => $email, 'display_name' => $postdata['la_first_name'], 'first_name' => $postdata['la_first_name'], 'last_name' => $postdata['la_last_name'] ); $userdata = wc_create_new_customer($email,$username,'',$args); $userdata = json_decode(json_encode($userdata), true); if(isset($userdata['errors'])){ $customer = get_user_by('email',$email); if($customer){ $user_id = $customer->ID; } }else{ $user_id = $userdata; update_user_meta($user_id, "first_name",$postdata['la_first_name']); update_user_meta($user_id, "last_name",$postdata['la_last_name']); } $address = array( 'first_name' => $postdata['la_first_name'], 'last_name' => $postdata['la_last_name'], 'email' => $email, 'phone' => $postdata['la_ower_phone'], 'address_1' => $postdata['la_buisiness_adddress_1'], 'address_2' => $postdata['la_buisiness_adddress_2'], 'city' => $postdata['la_buisiness_adddress_city'], 'state' => $postdata['la_buisiness_adddress_state'], 'postcode' => $postdata['la_buisiness_adddress_zipcode'], 'country' => 'US' ); $order = new WC_Order($order_id); $order->set_customer_id($user_id); $order->set_address($address, 'billing'); $order->set_address($address, 'shipping'); $order->save(); } /** * Link formidable entry with woocommerce order. -- ⇩⇩⇩ -- */ // 1. Store formidable entry ID in the customer session. add_action( 'frm_after_create_entry', function( $entry_id, $form_id ) { WC()->session->set( 'frm_entry_id', $entry_id ); }, 20, 2 ); // 2. Set formidable entry id from session to the order as an order meta. add_action( 'woocommerce_checkout_create_order', function( $order, $data ) { if ( $entry_id = WC()->session->get( 'frm_entry_id' ) ) { $order->update_meta_data( '_frm_entry_id', $entry_id ); } }, 10, 2 ); // 3. Display the link to the formidable entry on the order details page. add_filter( 'woocommerce_order_item_display_meta_key', function( $display_value, $meta ) { if ( $meta->key == '_formidable_form_data' ) { $display_value = __( 'Formidable Entry', 'formidable-woocommerce' ); } return $display_value; }, 10, 2 ); Name Change Archives - Tue, 07 Jan 2025 16:30:25 +0000 en-US hourly 1 https://wordpress.org/?v=6.8.5 https://dev.fastfilings.pomdev.net/wp-content/uploads/2020/09/cropped-icon2-32x32.png Name Change Archives - 32 32 Three Ways to Officially Register Your Business Name https://dev.fastfilings.pomdev.net/3-ways-to-officially-register-your-business-name/ Tue, 07 Jan 2025 16:29:52 +0000 https://dev.fastfilings.pomdev.net/?p=18458 Three Ways to Officially Register Your Business Name Failing to properly register a company name can lead to serious consequences that impact your business’s success and credibility. Imagine investing time, money, and effort into building your brand, only to find out that another business has a similar name—or worse, that someone else has already trademarked […]

The post Three Ways to Officially Register Your Business Name appeared first on .

]]>

Failing to properly register a company name can lead to serious consequences that impact your business’s success and credibility. Imagine investing time, money, and effort into building your brand, only to find out that another business has a similar name—or worse, that someone else has already trademarked it. 

Without formal registration of your business name, you run the risk of getting tangled up in legal disputes, fines, and even the forced closure or rebranding of your business. Such conflicts can also cause confusion among customers, damaging your reputation and making it harder to market your products or services.

To avoid these problems, it’s essential to know how to register a business name and perform thorough searches beforehand. Most states offer online databases where you can check for name availability before filing your company name registration. At the federal level, the U.S. Patent and Trademark Office (USPTO) provides a searchable database for existing trademarks, ensuring no overlap with nationwide protections. In addition, searching domain name registrars and social media can help verify if your desired business name is available for online use.

Get Help with Business Filings!

Need help with your business filings?
Seller’s Permit and Resale Certificate

Where do you register your business name? The process varies depending on your needs. Registering your name as part of forming a business structure (LLC or corporation) protects it at the state level, while filing for a DBA (“Doing Business As”) allows you to operate under a different name when needed. For the broadest protection, registering a trademark with the USPTO ensures exclusive nationwide rights to your business name.

Properly registering your business name protects your brand, prevents costly conflicts, and ensures your company’s legal compliance. By taking the right steps early, you can confidently build your business without fear of unexpected setbacks. Below, the FastFilings team covers what you need to know about registering your business name, and when you’re done checking that out, explore our B2B filing services.

Three Ways to Officially Register Your Business Name

Get Help with Business Filing Services!

Need help with your business filings?

The post Three Ways to Officially Register Your Business Name appeared first on .

]]>
6 Steps to Changing Your Business Name https://dev.fastfilings.pomdev.net/how-to-change-your-business-name/ https://dev.fastfilings.pomdev.net/how-to-change-your-business-name/#respond Sat, 25 Nov 2023 18:45:20 +0000 https://dev.fastfilings.pomdev.net/?p=12411 Embarking on the journey of changing your business name can be an exciting step towards new horizons. It’s a process that many businesses undergo for a variety of reasons. A common motivation for a company name change is the desire to rebrand the business to reflect a new direction, mission, or range of offerings. Similarly, […]

The post 6 Steps to Changing Your Business Name appeared first on .

]]>
Embarking on the journey of changing your business name can be an exciting step towards new horizons. It’s a process that many businesses undergo for a variety of reasons. A common motivation for a company name change is the desire to rebrand the business to reflect a new direction, mission, or range of offerings. Similarly, when a business changes hands, the new owners may want a fresh name to signal a change in management or a new vision for the company.

Understanding the distinction between a legal entity name and a “Doing Business As” (DBA), or “trade name,” is critical in this process. The legal entity name is the official name of the business as registered with the state and other government agencies. It’s the name under which you file your taxes and conduct legal activities. On the other hand, a DBA allows a business to operate under a name different from its legal name.

Establishing a DBA can often be a simpler and less cumbersome process than changing the legal entity name, especially when the aim is to merely alter the business’s front-facing brand identity rather than its underlying legal structure. DBAs are filed with a state or country agency, not the IRS, and in many cases are required to be unique within the jurisdiction.

It’s important to remember that renaming a company isn’t a uniform procedure—it can vary considerably from state to state. The details of the process can depend on several factors, including the location of the business and the legal structure it operates under. That’s why it’s highly advisable to consult with the relevant state agency to ensure you’re following the correct procedures for your area and business type, avoiding any potential legal or operational hiccups down the line.

FastFilings is a privately owned business-to-business company that offers a variety of filing services and document assistance, helping businesses smoothly apply for seller’s permits, certificates of good standing, and other important documents. Check out our handy infographic below on changing your business name.

Steps to Changing Your Business Name Infographic

The post 6 Steps to Changing Your Business Name appeared first on .

]]>
https://dev.fastfilings.pomdev.net/how-to-change-your-business-name/feed/ 0
Top 5 Reasons People Legally Change Their Names https://dev.fastfilings.pomdev.net/reasons-people-legally-change-their-names/ https://dev.fastfilings.pomdev.net/reasons-people-legally-change-their-names/#respond Tue, 06 Jul 2021 21:44:13 +0000 https://dev.fastfilings.pomdev.net/?p=4926 Your name is something that follows you every day of your life. So what if you want to change yours? You aren’t alone! There are many different reasons people change their name.  One of the top reasons why people change their name is simply because they don’t like their current name. Believe it or not, […]

The post Top 5 Reasons People Legally Change Their Names appeared first on .

]]>
Your name is something that follows you every day of your life. So what if you want to change yours? You aren’t alone! There are many different reasons people change their name

One of the top reasons why people change their name is simply because they don’t like their current name. Believe it or not, not liking your name is one of the valid reasons to change your name. Some change it because their name is hard to pronounce. Others prefer to be called by a nickname or their middle name.

Another reason to change your name is due to a marriage or divorce. Name changes are part of the legal process when your marital status changes. Maybe you want to hyphenate your name with your new spouse, or maybe you want to go back to your old last name after getting divorced.

Name changes can also apply to children. Certain life circumstances, such as the child being adopted by a relative or step-parent, can warrant a name change. Parents may also want to change their child’s last name after getting married.

People want to feel comfortable with their name! This is why so many transgender people choose to change their first name to one that best aligns with their gender identity. A name change enables that person to enter a new phase of their life, or it’s a celebration of their transition.

Some first and last names are deeply rooted in history. In fact, some names are associated with a particular heritage. People can change their name if it doesn’t reflect their genetic heritage. Names can also be changed if you’re experiencing discrimination because your name is linked to a certain ethnicity.

Changing your name is a legal process that requires filing paperwork with the proper agencies. FastFilings makes the process much less cumbersome with an easy-to-use online tool that takes just a few clicks. Visit FastFilings.com today and change your name to one that you love! Read on for more information about name changes.

Why Do People Change Their Legal Name Infographic Changing Your Legal Name

The post Top 5 Reasons People Legally Change Their Names appeared first on .

]]>
https://dev.fastfilings.pomdev.net/reasons-people-legally-change-their-names/feed/ 0
Can You Change Your Name Before Your Divorce Is Final? https://dev.fastfilings.pomdev.net/changing-your-name-before-your-divorce-is-final/ https://dev.fastfilings.pomdev.net/changing-your-name-before-your-divorce-is-final/#respond Thu, 08 Apr 2021 20:39:22 +0000 https://dev.fastfilings.pomdev.net/?p=4100 Going through a divorce can be a rather stressful period in your life. Many people want to revert to their maiden name or surname. Some people want to change their name before their divorce is finalized rather than waiting to have their divorce decree in hand. Changing your name before divorce is possible in many […]

The post Can You Change Your Name Before Your Divorce Is Final? appeared first on .

]]>
Going through a divorce can be a rather stressful period in your life. Many people want to revert to their maiden name or surname. Some people want to change their name before their divorce is finalized rather than waiting to have their divorce decree in hand.

Changing your name before divorce is possible in many states. So, if you want to change your name and do not want to wait for your divorce judgment, you can, in most cases.

 

Why You May Want to Change Your Name Before Your Divorce Is Final

Several different situations can arise during the course of your marriage that ultimately led to the divorce proceeding. Some women do not want to continue to use their husband’s last name while waiting for their divorce decree. For same-sex couples that took the surname of their partner, they, too, often want to change their name back to their pre-married name.

Another reason people change their name before divorce is it helps them to start to reestablish their own identity. Reclaiming your surname allows you to take the first step to become yourself again by unburdening yourself from using your spouse’s last name.

In other cases, even if you salvage your relationship and marriage, you still may want to establish your independence from your spouse. Changing your name back to your surname can be very empowering.

 

How Can You Change Back to Your Surname?

Changing your surname back is not as difficult as you may think. You can take care of many name changes yourself. However, there are certain legal requirements to make it official. The first step is to file a petition for the name change with help from your family law divorce lawyer.

Some courts will approve your request to change your name before your divorce is final. Others may require you to wait until you receive your divorce decree. If you do not want to wait, or if you have not officially filed for divorce, the process is a bit different, but still possible.

It is no different than when you filed the documents to change your name to your spouse’s surname when you got married. However, you may still want to get help with the process, as the application can be rather long and require a lot of documentation, such as your marriage license, divorce court order, birth certificate, and other legal documents.

Once your petition is filed with the court, you will be given a hearing date. At your hearing, you may be asked why you want to change your name. Once the name change goes through, your next priority is to change your name on your driver’s license and social security card.

To change the name on your driver’s license, take certified copies of your court order to your DMV. To change the name on your social security card, you will need to file a name change application with the social security administration and supply the appropriate documentation.

As funny as this may sound, some states will require publication of your name change in local newspapers before granting you the order for your name change.

 

Can You Use Your Maiden Name While Waiting for Your Court Order?

Changing Your Maiden NameYou can start using your maiden name at any point you want. However, it will not be legal until receiving the official court order. Yet, there are several things you can change your name on without this order, such as:

  • Magazine Subscriptions
  • Email Accounts
  • Social Media Accounts
  • Utilities
  • Newspaper Subscriptions
  • Streaming Services

Some credit cards will also allow you to change your name without an official court order. For other financial accounts and bank accounts, you will often have to wait until you get the name change order.

 

Can You Change Your Name Before Divorce Online?

It is understandable you already have a lot on your plate with your divorce proceeding. Not to mention, many people are not entirely sure of the process or their state’s requirements for changing their surname.

Luckily, you are in the right place. At FastFilings, we can help file your application to change your name before your divorce. We will work with you each step of the way to help you restore your name without any stress or hassles.

To find out more about changing your name, get started online today! You may also contact us through our website support if you have further questions or require assistance.

The post Can You Change Your Name Before Your Divorce Is Final? appeared first on .

]]>
https://dev.fastfilings.pomdev.net/changing-your-name-before-your-divorce-is-final/feed/ 0
Just Married – a Guide to Marital Name Change https://dev.fastfilings.pomdev.net/a-guide-to-marital-name-change/ https://dev.fastfilings.pomdev.net/a-guide-to-marital-name-change/#respond Thu, 04 Feb 2021 19:07:45 +0000 https://dev.fastfilings.pomdev.net/?p=3864 While you may not have taken your spouse’s name when you were married, you may wish to do so now. Our guide will show you how to change your name after marriage, but be warned that this is the old-school way, so it will take some time. Have Your Marriage License Handy Your marriage license […]

The post Just Married – a Guide to Marital Name Change appeared first on .

]]>
While you may not have taken your spouse’s name when you were married, you may wish to do so now. Our guide will show you how to change your name after marriage, but be warned that this is the old-school way, so it will take some time.

Have Your Marriage License Handy

Your marriage license is really the master document when it comes to officially changing your name for:

  • Social security cards
  • Passports
  • Driver’s licenses and registrations
  • The IRS
  • Voter registrations

Note that you’ll need certified copies of your marriage license if you didn’t request them when applying for your original license. To obtain certified copies, contact the office where your marriage license was filed.

How to Change Your Name After Marriage

Below are the steps you’ll need to take to change your name:

Social Security Card

You’ll keep your social security number but will need a new card. You’ll have to complete the application in hard copy and then send it by regular mail with a certified copy of your marriage certificate to your nearest Social Security Administration office.

You can also visit your local social security office and complete and submit the paperwork there. Expect to wait 10 business days or fewer for your new card.

Passport

If your passport was issued less than one year ago, you can change your name without paying a fee. If issued a year or more ago, you’ll need a name change and new book, so expect to pay over $100 if this is your situation.

Mail your application and include a certified copy of your marriage license with the following completed documents:

  • Form DS-82
  • A check for the fee, payable to the U.S. Department of State
  • A recent photo of you in color that meets the requirements for passport photos
  • Your current passport

You should receive your passport between four and six weeks after you apply.

Driver’s License

Name Change After Getting MarriedYou’ll have to visit your local DMV to change your name on your driver’s license, but make sure you do this at least 24 hours after updating your Social Security card. This will allow your new name to be in the system. Bring your:

  • Receipt from the Social Security Administration office or your new card
  • Your current driver’s license
  • Proof of address, such as utility bill or insurance papers
  • Certified copy of your marriage license

You may also need a new photo. Be prepared to stand in line, and expect to wait up to several days for processing, depending on your state.

The IRS

The good news is that you won’t have to wait in any lines or send any documents to the IRS to change your name. However, you’ll want to ensure you’ve changed your name on your Social Security card before you file your taxes, as this will help avoid red tape at tax time.

Voter Registration

Depending on your state, the process for how to change your name after marriage will differ. If your state offers online registration, you should be able to update your name in this way. If not, you’ll need to download and complete the form and send it by mail.

You may also be able to accomplish this over the phone, but be sure it’s completed at least 30 days before any election, as it can take some time.

After you’re finished changing your name with the offices above, be sure to do so on social media, bank accounts, credit cards, and other government agencies.

A Fast and Painless Way to Change Your Name

Not into standing in line, waiting on the phone or filling out endless forms? There’s a much easier way to get your name changed, and that’s with FastFilings’s name change service. We prepare all government documents for you; just sign and wait! It really is that easy, and you can get started right now.

The post Just Married – a Guide to Marital Name Change appeared first on .

]]>
https://dev.fastfilings.pomdev.net/a-guide-to-marital-name-change/feed/ 0
How to Change a Name Back After a Divorce https://dev.fastfilings.pomdev.net/how-to-change-a-name-back-after-a-divorce/ https://dev.fastfilings.pomdev.net/how-to-change-a-name-back-after-a-divorce/#respond Tue, 02 Feb 2021 16:52:41 +0000 https://dev.fastfilings.pomdev.net/?p=3848 As someone whose marriage recently ended, you may have searched online using the term  “How to change my name back after a divorce,” only to find the answers to be more confusing than they were helpful. This post will reveal how to quickly and easily revert to your maiden name following divorce. How Many Options […]

The post How to Change a Name Back After a Divorce appeared first on .

]]>
As someone whose marriage recently ended, you may have searched online using the term  “How to change my name back after a divorce,” only to find the answers to be more confusing than they were helpful. This post will reveal how to quickly and easily revert to your maiden name following divorce.

How Many Options Are There to Change Your Name?

There are three ways that a person can change back to their maiden name after a divorce:

  • Request the change during divorce proceedings.
  • Amend the divorce decree.
  • File a name change petition.

Although all three ways are legal and perfectly acceptable, you may wish to take a more independent and quicker route to change your name. Where this is the case, a name change petition can be the ideal option.

What Is a Name Change Petition?

A name change petition is a formal request to change your name. You obtain and complete forms, sign them, and then file them with your court clerk.

What Information Do You Need for the Name Change Petition?

In order to fill out the form correctly and completely, you will need a few pieces of information. In the case of how to change your name back after divorce, you will need your:

  • Final divorce decree
  • Birth certificate
  • A driver’s license or social security card

Depending on from which state you’re making the request, you may have to complete other steps, such as obtaining a court order and placing a notice in your local paper. Some states require that you appear before a local court to finalize the name change.

It’s always a good idea to check with your state’s laws to ensure you’re taking the required steps to change your name successfully.

Do You Have to Wait Until Your Divorce Is Finalized?

No; you can request to have the provision for a return to your maiden name included as part of the divorce decree before it has been finalized. In fact, many people make a name change request while they’re still married or only separated.

Is the Name Change Process Confusing?

The process to return to your maiden name can be confusing if you’ve never gone through it before or if there are a lot of steps. As well, you want to ensure that you’ve included all of the required information; otherwise, your approval may take longer to process.

Ways to Get Help Filing a Name Change

One way to ensure you’ve included all of the information is to have someone confirm this for you.

Ask a Friend

While a friend may be able to do this, they may not have sufficient knowledge about the process to ensure you’re providing what you should be.

Hire a Lawyer

A lawyer can also help you ensure all required information is included, but this may not be a convenient option for you.

Find an Expert

Did you know that you can get your documents checked and filed with the right people on your behalf? You can, with FastFilings. We examine your name change petition and any additional documents to ensure all your forms are complete, error-free, and ready to send. Then, we’ll mail your documents and forms directly to issuing offices so there’s as little of a wait as possible.

The post How to Change a Name Back After a Divorce appeared first on .

]]>
https://dev.fastfilings.pomdev.net/how-to-change-a-name-back-after-a-divorce/feed/ 0
California Marriage Name Change Checklist https://dev.fastfilings.pomdev.net/california-marriage-name-change-checklist/ https://dev.fastfilings.pomdev.net/california-marriage-name-change-checklist/#respond Thu, 07 Jan 2021 15:33:25 +0000 https://dev.fastfilings.pomdev.net/?p=3259 If you’re newly married in the sunshine state of California, you may be experiencing the post-marriage administration blues. The marriage name change process is famously confusing, frustrating, and time-consuming, and, most of all, not what you need during your honeymoon period. That’s why we’ve created this handy California Marriage Name Change Checklist, which splits out […]

The post California Marriage Name Change Checklist appeared first on .

]]>
If you’re newly married in the sunshine state of California, you may be experiencing the post-marriage administration blues. The marriage name change process is famously confusing, frustrating, and time-consuming, and, most of all, not what you need during your honeymoon period.

That’s why we’ve created this handy California Marriage Name Change Checklist, which splits out what legal, financial, and digital documents need a name change after marriage. First, you’ll tackle your legal paperwork and learn what documents are needed and how to change them.

Next, it’s time to identify which financial institutions need to know your good news (i.e., credit card companies, loan providers, employers, etc.) and how you should notify them.

Finally, you’ll find some handy tips on how to change your name on digital platforms such as email addresses, autofill, and social media accounts.

We want to stress that the devil is in the details when it comes to name changes, so be sure to check all our handy icons below to make sure you don’t miss a beat. Armed with this handy checklist, you’ll be answering to your new name in no time at all!

California Marriage Name Change Checklist Infographic

 

The post California Marriage Name Change Checklist appeared first on .

]]>
https://dev.fastfilings.pomdev.net/california-marriage-name-change-checklist/feed/ 0