This file contains hidden or 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_action( 'woocommerce_thankyou', 'cartimize_thank_you_custom_block_details', 100, 100000000000 ); | |
function cartimize_thank_you_custom_block_details(){ | |
?> | |
<section class="woocommerce-block"> | |
<h2>Title goes here</h2> | |
<div> | |
Content goes here | |
</div> | |
This file contains hidden or 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 | |
add_filter( 'cartimize_get_billing_checkout_fields', 'custom_cartimize_checkout_billing_fields', 100, 1 ); | |
function custom_cartimize_checkout_billing_fields( $fields ){ | |
if (isset($fields['billing_neighborhood']) && isset($fields['billing_neighborhood']['is_hidden'])) { | |
unset($fields['billing_neighborhood']['is_hidden']); | |
$fields['billing_neighborhood']['required'] = true; |
This file contains hidden or 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
#include<stdio.h> | |
#include<conio.h> | |
#include<string.h> | |
#include<stdlib.h> | |
struct medical | |
{ | |
char tb[45]; | |
char cn[45]; | |
int quan; | |
float price; |
This file contains hidden or 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
package com.gabesechan.android.reusable.receivers; | |
import java.util.Date; | |
import android.content.BroadcastReceiver; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.telephony.TelephonyManager; | |
public abstract class PhonecallReceiver extends BroadcastReceiver { |