在網站的右下角呈現一個浮動加入Line的圖片

這個語法也可以延伸做優惠活動廣告

function custom_wc_customizations() {
    // Check if WooCommerce is active
    if ( class_exists( 'WooCommerce' ) ) {
        // Check if not on cart or checkout page
        if ( ! is_cart() && ! is_checkout() ) {
            echo '<style>
                #fixed-image {
                    position: fixed;
                    bottom: 90px;
                    right: 10px;
                    z-index: 9999;
					width: 60px;
                }
				@media (max-width: 768px) {
                    #fixed-image {
                        width: 40px;
                    }
                }
            </style>';
            echo '<a href="https://line.me/R/ti/p/yourid"><img id="fixed-image" src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/LINE_New_App_Icon_%282020-12%29.png/240px-LINE_New_App_Icon_%282020-12%29.png" alt="line"></a>';
        }
    }
}
add_action( 'wp_head', 'custom_wc_customizations' );
瀏覽次數:42