HEX
Server: LiteSpeed
System: Linux vps30244.sdns.vn 3.10.0-1160.21.1.el7.x86_64 #1 SMP Tue Mar 16 18:28:22 UTC 2021 x86_64
User: admin (1001)
PHP: 7.4.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/hcb48/public_html/wp-content/themes/flatsome/inc/shortcodes/ux_payment_icons.php
<?php

function ux_payment_icons( $atts ) {
	extract( shortcode_atts( array(
		'link'   => '',
		'icons'  => get_theme_mod( 'payment_icons', array( 'visa', 'paypal', 'stripe', 'mastercard', 'cashondelivery' ) ),
		'custom' => get_theme_mod( 'payment_icons_custom' ),
	), $atts ) );

	// Get custom icons if set.
	if ( ! empty( $custom ) ) {
		return do_shortcode( '<div class="payment-icons inline-block">' . flatsome_get_image( $custom ) . '</div>' );
	} elseif ( empty( $icons ) ) {
		return false;
	}

	if ( ! is_array( $icons ) ) {
		$icons = explode( ',', $icons );
	}

	ob_start();

	echo '<div class="payment-icons inline-block">';
	foreach ( $icons as $key => $value ) {
		echo '<div class="payment-icon">';
		get_template_part( 'assets/img/payment-icons/icon', $value . '.svg' );
		echo '</div>';
	}
	echo '</div>';

	$content = ob_get_contents();
	ob_end_clean();

	return $content;
}

add_shortcode( 'ux_payment_icons', 'ux_payment_icons' );