This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Enable error reporting | |
error_reporting(E_ALL); | |
ini_set('display_errors', 1); | |
$google_redirect_url = 'REDIRECT_URL'; | |
//start session | |
session_start(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_output_related_products_args', 'wc_change_number_related_products' ); | |
function wc_change_number_related_products( $args ) { | |
$args['posts_per_page'] = 1; | |
$args['columns'] = 4; //change number of upsells here | |
return $args; | |
} |