programmierfrage.com
Ask a question    Sign Up Sign In
  • Train typing speed
  • About/Contact
  • Privacy Policy
  1. Home
  2. php - Custom WooCommerce message/notice at checkout

303 votes
1 answers

php - Custom WooCommerce message/notice at checkout

Get the solution ↓↓↓

I would like to display a custom message/notice at the WooCommerce checkout page for logged out users only. I would like the message to appear every time a non logged in user enters the checkout page and have a button/link inside the notice that would hide it.

Here's an example on fiverr.com:

enter image description here

How can this be achieved?


EDIT:

$('.hide-notice').on('click', function(e) {
  e.preventDefault();
  $(this).parents('.checkout-notice').slideUp("slow", function() {
    $(this).parents('.checkout-notice').remove();
  });
});
.woocommerce-info {
  padding: 20px;
  background-color: #f5f5f5;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>

<div class="checkout-notice">
  <div class="woocommerce-info">
    Custom message custom message custom message custom message.
    <a href="" class="hide-notice">Hide message</a>
  </div>
</div>

Undefined asked
2021-12-5
Write your answer



149
votes

Answer

Solution:

You can usewoocommerce_before_checkout_form to add a custom message. check the below code. code goes in your active theme function.php file.

Add CSS as per your requirement.

add_action( 'woocommerce_before_checkout_form', 'add_custom_message_to_checkout', 1 );
function add_custom_message_to_checkout() {

    if( !is_user_logged_in() ){

        echo '<div class="custom-checkout-message">This is custom checkout message. you can add CSS as per your requirement. <a href="" class="hide-me">close me</a></div>';
        ?>
        <script type="text/javascript">
            (function($){
                $('.hide-me').on('click',function(e){
                    e.preventDefault();
                    $(this).parent('.custom-checkout-message').fadeOut(300, function() { 
                        $(this).parent('.custom-checkout-message').remove(); 
                    });
                });
            })(jQuery);
        </script>
        <?php
        
    }
}

Tested and works.

enter image description here

$('.hide-me').on('click',function(e){
    e.preventDefault();
    $(this).parent('.custom-checkout-message').fadeOut(300, function() { 
        $(this).parent('.custom-checkout-message').remove(); 
    });
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="custom-checkout-message">This is custom checkout message. you can add CSS as per your requirement. <a href="" class="hide-me">close me</a></div>
Write your answer




Share solution ↓

Additional Information:

Date the issue was resolved:
2021-12-5
Link To Source
Link To Answer People are also looking for solutions of the problem: foreach() argument must be of type array|object, null given

Didn't find the answer?

Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.

Ask a Question

Similar questions

Find the answer in similar questions on our website.

50 php - Wordpress custom post status of "expired"
752 Using PHP have a MySQL statement into multiple PHP variables
501 php - Prestashop 1.6 - Show Customer Group in Account page (Front End)
785 php - How many instances of a class have been created
533 php - How to change the content of a page with javascript based on select input?
155 php - Array 2 string conversion while using CURLOPT_POSTFIELDS
940 php - How do I convert Word smart quotes and em dashes in a string?
719 php - Symfony2 Response
443 php - Get dates for specific weekdays
332 mysql - php video upload doesn't work

Write quick answer

Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.






About the technologies asked in this question

PHP

PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites. The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/


JavaScript

JavaScript is a multi-paradigm language that supports event-driven, functional, and mandatory (including object-oriented and prototype-based) programming types. Originally JavaScript was only used on the client side. JavaScript is now still used as a server-side programming language. To summarize, we can say that JavaScript is the language of the Internet.
https://www.javascript.com/


JQuery

JQuery is arguably the most popular JavaScript library with so many features for modern development. JQuery is a fast and concise JavaScript library created by John Resig in 2006. It is a cross-platform JavaScript library designed to simplify client-side HTML scripting. Over 19 million websites are currently using jQuery! Companies like WordPress, Facebook, Google, IBM and many more rely on jQuery to provide a kind of web browsing experience.
https://jquery.com/


CSS

CSS (Cascading Style Sheets) is a formal language for describing the appearance of a document written using a markup language. It is mainly used as a means of describing, decorating the appearance of web pages written using HTML and XHTML markup languages, but can also be applied to any XML documents, such as SVG or XUL.
https://www.w3.org/TR/CSS/#css


HTML

HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet. Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/



Welcome to programmierfrage.com

programmierfrage.com is a question and answer site for professional web developers, programming enthusiasts and website builders. Site created and operated by the community. Together with you, we create a free library of detailed answers to any question on programming, web development, website creation and website administration.

Get answers to specific questions

Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.

Help Others Solve Their Issues

Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.



Latest questions:

451 php - Is switch always better than a lot of elseifs?

697 How to get all product in a father_id in php mysql

407 Am I dreaming or do carriage returns prevent PHP versions from seeing a code line?

944 php - Find total number of $count++ in while loop

929 php - Show a number to two decimal places

751 ruby - XPath to select between two HTML comments is not working?

601 apache - htaccess - append html or php based on URL

838 php - Square API Create Item working code now returning an error

869 mysql - PHP - mysqli_query count always returns 1

606 php - Show an Image from controller, base_url() error

Users questions:

NEW

Rename existing images with keyword in WordPress PHP

NEW

codeigniter

NEW

Class "web_profiler.controller.profiler" does not exist after upgrading symfony 3.4 to 4.4 version

NEW

$charge = \Stripe\Charge::create(array( "amount" => 100, "currency" => "gbp", "source" => $token, "destination" => [ "amount" => 20, "account" => 'xxxxx', ], ));

NEW

Write a PHP program that will generate the JSON structure below. Second Step: Write a JAVASCRIPT program that will parse the JSON structure once the PHP program is called using AJAX. You may show your output on the body of the HTML document or in the console




PHP x 410847
Laravel x 36785
Yii x 3846
CodeIgniter x 9997
Symfony x 7793
CakePHP x 3085
Zend Framework x 1235
Phalcon x 300
FuelPHP x 47
Slim x 570
JavaScript x 36883
React x 550
Angular x 1121
Vue.js x 181
JQuery x 11108
Backbone.js x 21
Node.js x 463
Ember.js x 10
Meteor x 7
Polymer x 20
Aurelia x 1
MySQL x 39074
CSS x 2497
Bootstrap x 1603
Foundation x 84
UIkit x 4
Semantic UI x 2
Bulma x 2
Animate.css x 1
HTML x 20978



© 2021-2023 Programming problem solving site for beginners and advanced. Answers to questions related to coding.

E-mail: [email protected]

This site uses cookies. We use them to improve the performance of our website and your interaction with it. Confirm your consent by clicking OK


OK