hapu
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] Paketdienstleister DatenweitergabeHabe es jetzt so gel?st:
/* Daten an Versanddienstleister*/ /*Spalte Daten an DHL in Bestellübersicht*/ function mb_set_order_note_column( $columns ) { $columns['parcel_delivery'] = __('Daten an Versand','TEXTDOMAIN'); return $columns; } add_filter( 'manage_shop_order_posts_columns', 'mb_set_order_note_column', 99 ); /*Notiz ausgeben*/ function mb_show_order_note_columns( $column_name, $post_id ) { switch ( $column_name ) { case 'parcel_delivery': $order = new WC_Order( $post_id ); $delivery = get_post_meta( $post_id, '_parcel_delivery_opted_in', true ); if ( $delivery == "yes" ) { echo "Ja"; } if ( $delivery == "no" ) { echo "Nein"; } break; } } add_action( 'manage_shop_order_posts_custom_column' , 'mb_show_order_note_columns', 10, 2 );
Thank you!
I have another question
I use buddyboss theme and platform. is it possible to add the subject line into message text field too?
or subject is shown instead of text if i click on the message picture?
Best regards
HaPuForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Pay for Listing with myCred-PointsYeah! Thats it!
THXForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Pay for Listing with myCred-PointsHi Greg,
the plugins you told already working.
How to explain….
When a customer have to choose a Listing (premium or free) there will always be the main currency (like € or $) to pay.
I tried:
add_action( ‘wp_head’, function () { ?>
<style>.single.post-68.span.woocommerce-Price-currencySymbol{
display:none !important;
}but it seems not to work…
Cheerz
hapu</style>
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Compatability with Buddyboss Platform Pluginthx
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Compatability with Buddyboss Platform PluginHello, does it work with BuddyBoss Platform/Theme?
Best regards
Viewing 6 replies - 1 through 6 (of 6 total)