yewbeng0104
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Mobile view Shop ColumnThat is true. I change to Storefront it can become 1 column in mobile view.
In the other hand, when I change to Astra theme, I use the code below, it can display 1 column in mobile view. However, wish can get advice from you:
@media screen and (max-width: 768px) { .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product { width: 100% !important; } }
Thank you.
Solved
Forum: Plugins
In reply to: [WooCommerce] Print the chosen Shipping Method at Checkout PageSolved.
Forum: Plugins
In reply to: [WooCommerce] Product Description at Checkout Pagesolved
Forum: Plugins
In reply to: [Code Snippets] Add the JQuery code below in Snippetssolved
Forum: Plugins
In reply to: [WooCommerce] Product Description at Checkout PageIt is ok, thank you very much!
Forum: Plugins
In reply to: [WooCommerce] Product Description at Checkout PageHi,
Thank you for your guideline.I not very understand. But when i try other code, the “description title” and “description value” can be separate to two line. The mention code is look like this:
add_filter( ‘woocommerce_cart_item_name’, ‘customizing_cart_item_data’, 10, 3);
function customizing_cart_item_data( $item_name, $cart_item, $cart_item_key ) {
// The label
$label = __( ‘Description’, ‘woocommerce’ );// Get the product description
$description = $cart_item[‘data’]->get_description();// For product variations when description is empty
if( $cart_item[‘data’]->is_type(‘variation’) && empty( $description ) ){
// Get the parent variable product object
$product = wc_get_product( $cart_item[‘data’]->get_parent_id() );
// Get the variable product description
$description = $product->get_description();
}if( ! empty( $description ) ){
$item_name .= ‘<p class=”item-description” style=”margin:12px 0 0;”>
‘.$label.’: <br>’.$description.’
</p>’;
}
return $item_name;
}===============================================
However, the code above will merge all “description value” into same line… Thus we do not use it… The result look like this:
Description:
1.Statement of Income and Expenses (Profit & Loss Statement);2.Balance Sheet;3.Schedule of Fixed Assets;4.Summary of Financial Information5.Form PThank you very much for the replies!
Forum: Plugins
In reply to: [WooCommerce] Product Description at Checkout PageHi,
Thank you for the replies!
For your information, I copy the code above from this article:
https://stackoverflow.com/questions/46732243/add-product-description-to-cart-items-in-woocommerceThank you!
Forum: Plugins
In reply to: [WooCommerce] Checkout Url with auto loginThank you very much for the suggestion!
Hi,
At the capability menu, I press save. This can refresh.
Solved.
The problem solved.
Hi,
thank you for your replies!
“WCFM Stripe integration never redirect users to any other pages, users may insert CC details from payment page itself.”
I not sure what is CC details and how to insert it?“screen recording for you payment processing”, please refer to screenshot below:
Step 1:
https://drive.google.com/file/d/1mNzZ0TbpBJTH6rFYCnn1rxe1LUIaAKcp/view?usp=sharing
Step 2:
https://drive.google.com/file/d/13amCh2F8pxrjepOEVxJDpn14aenFnlF9/view?usp=sharing
Step 3:
https://drive.google.com/file/d/10D18TqyvMNEmEg_lFu4TIGPDEEhbqnUf/view?usp=sharingThank you!
Hi,
Do you think that the Variable Subscription can help solve the issue above?
Hi,
1. Yes, this is processing payment during membership signup.
2. I think is Stripe SCA otp, but not very sure.
Thank you for your replies!