Abdulhakim
Forum Replies Created
-
Wow it worked. Thank you very much for your support!
Hi Kluver!
This worked perfectly thank you very much for your help I really appreciate it much! God Bless You!
Hello!
I need your help on this Sir. I created a custom field that will show the First, Middle and Last Name and it worked:
<div class=”centered”>
<?php
$user_id = $this->order->get_user_id();
if ( !empty($user_id) ) {
$meta_key1 = ‘first_name’; // change this to your meta key / custom field name
echo get_user_meta( $user_id, $meta_key1, true );
}
$user_id = $this->order->get_user_id();
if ( !empty($user_id) ) {
$meta_key2 = ‘middle_name’; // change this to your meta key / custom field name
echo get_user_meta( $user_id, $meta_key2, true );
}
$user_id = $this->order->get_user_id();
if ( !empty($user_id) ) {
$meta_key3 = ‘last_name’; // change this to your meta key / custom field name
echo get_user_meta( $user_id, $meta_key3, true );
}
?></div>But how do i put a space in between them?
I found it. I just made a CSS.Thank you!
https://www.w3schools.com/cssref/pr_text_text-transform.aspHello! I think i found it now. Thank you for the “small snippet code” hint. i used this code on my custom template and it worked: <?php $this->billing_address(); ?>. Can you instead help me on how to make the value of the “billing address ()” on UPPERCASE?
Hello Kluver!
I wanted to modify the entire packing slips to show also in big font the first, middle and last names of the “person who ordered”. Yes i made a custom template same as what was instructed on the website of WP Overnight.