wppizza / markup / cart / cart.checkout_button.php

Checkout button in main cart widget

If you just want to change the text itself, instead of using filters, set it in Wppizza -> Localization.

CSS Targeting

  • paragraph element class: .wppizza-checkout-button

if you simply want to edit some styles/layout (text-sizes, color, margins, paddings etc etc ) it is strongly recommended to use css instead of filters/actions. Please refer to Modify Styles/Layout

Filters available

apply filters by adding them to your child-theme’s functions.php (notes regarding functions.php).

  • filter name: wppizza_filter_maincart_checkout_button_markup
    purpose: modify the html markup of the html as required

    @param: $markup array (array of markup elements)
    @return: array

  • examples:

    
    
    add_filter('wppizza_filter_maincart_checkout_button_markup', 'prefix_filter_cart_checkout_button_markup');
    function prefix_filter_cart_checkout_button_markup($markup){
    
    	/* 
    		notes: 
    		use print_r($markup) to view array keys with their respective markup
    		use global $wppizza_options; to access all options/settings/localization strings etc set in the plugin 
    	*/
    
    	/* example: adding a paragraph AFTER input element using standard php concatenation */
    	$markup['checkout_button'] .= '<p>more text after</p>'; 
    
    	/* example: adding a paragraph BEFORE input element  using standard php concatenation */
    	$markup['checkout_button'] = '<p>more text before</p>' . $markup['empty_cart_button']; 
    
    	/* example: adding a paragraph AFTER input element using wppizza array_splice helper function */
    	$splice_after['myprefix_paragraph'] = '<p>more text after</p>'; 
    	$markup = wppizza_array_splice($markup, $splice_after, 'checkout_button' );
    
    	/* example: adding a paragraph BEFORE input element  using wppizza array_splice helper function */
    	$splice_before['myprefix_paragraph'] = '<p>more text before</p>'; 	
    	$markup = wppizza_array_splice($markup, $splice_before, 'checkout_button' , true);
    
    
    	/* example: using actions of another plugin that by default outputs html to add it after the input element*/
    	ob_start(); # start buffering
    	do_action('other_plugin_output'); # run action of other plugin that outputs things
    	$buffer= ob_get_contents(); # capture buffer in variable
    	ob_end_clean(); # clean buffer			
    	$markup['checkout_button'] = $markup['checkout_button'] . $buffer; # add buffered output after end of span
    
    return $markup;
    }
    		

Actions available

  • none

Editing files directly

ensure you have also read the Modify/Edit Templates

basepath: [plugin-path]/wppizza/templates/markup

filepath: [plugin-path]/wppizza/templates/markup/cart/cart.checkout_button.php

Modules used in file

  • none

Module used by file(s)

  • [basepath]/cart/cart.container.php