• Resolved giriga

    (@giriga)


    Hi, on my site I would like to add a promotional message above the cart, I am attaching an image as an example that I found (see photo)

    Immagine.jpg

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @giriga – this can be done with a PHP snippet, although it will still take a little bit of work to show exactly what you’re wanting. Here’s how you can display a line of text above the Add to Cart button:

    add_action( 'woocommerce_before_add_to_cart_button', 'woo_before_add_to_cart_button' );
     
    function woo_before_add_to_cart_button(){
    	echo '<div id="before_a2c_container">Your promotional message text.</div>';
    }

    You could then style this how you’d like using the before_a2c_container id property with CSS.

    – Joey

    Thread Starter giriga

    (@giriga)

    thanks for the reply, can you tell me where to write all this?

    Plugin Support Thu P. a11n

    (@thup90)

    Hi there,

    You could add the snippet using the Code Snippets plugin: https://wordpress.org/plugins/code-snippets/

    Plugin Support fevered – a11n

    (@fevered)

    Hey there, since we haven’t heard back from you I’ll mark this thread as resolved now. If you have any further questions, I recommend creating a new thread.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘enter promotion’ is closed to new replies.