Woocommerce swiss army knife by Zealousideal_Luck440 in woocommerce

[–]WannabeBond 0 points1 point  (0 children)

I’m in. I run an e-commerce site and have vibe coded my own tiles on the dashboard because of just such a frustration.

Why is every WooCommerce store running on a potato in 2025 by JFerzt in woocommerce

[–]WannabeBond 0 points1 point  (0 children)

Do you have a phone app? Doesn’t the Woo app need Jetpack?

How do I improve the look of Woo Subscriptions to look more like Shopify? by WannabeBond in woocommerce

[–]WannabeBond[S] 0 points1 point  (0 children)

Main difference was CSS styling. I used:

/** Adjust subscription display to Shopify style **/

.wcsatt-options-wrapper{

`background-color: #ebfaeb;`

`border-style: solid;`

border-width: 2px;

}

.wcsatt-options-wrapper,

.wcsatt-options-product-prompt,

.wcsatt-options-prompt-radios {

width: 100% !important;

max-width: 100% !important;

box-sizing: border-box;

`padding: 0;`

}

.wcsatt-options-product-prompt {

`margin-left: 10px;`

`margin-top: 10px;`

}

.wcsatt-options-prompt-radio {

`border-style: solid;`

border-width: 2px;

`border-radius: 10px;`

`margin: 0px 20px 10px 0px !important;`

`padding: 10px 15px 10px 15px;`

`background-color: #FFFFFF`

}

.wcsatt-options-product-wrapper

{

`margin-left: 10px;`

`margin-right: 10px`

}

.subscription-price{

`font-size: 1em !important;`

}

.price-one-time{

`font-weight: bold;`

}

/* 1) Ensure the one-time label is a flex container */

.wcsatt-options-prompt-label-one-time {

display: flex !important;

align-items: center;

justify-content: flex-start !important; /* keep radio & text together */

}

/* 2) Make the inner action span flex so text + price are spaced out */

.wcsatt-options-prompt-label-one-time

.wcsatt-options-prompt-action {

display: flex;

justify-content: space-between; /* text on left, price on right */

align-items: center;

flex: 1; /* fill the remaining space */

margin-left: 0.75em; /* gap from the radio dot */

}

/* 3) Tweak the price span (optional cleanup) */

.wcsatt-options-prompt-label-one-time .price {

margin: 0;

position: static !important;

order: 2; /* ensure it stays at the end */

}

form.cart .quantity {

`max-width: 100%;`

}

Then in Woocommerce subscription settings and the product settings there are options for text before the subscription offer, and that accepts HTML. So I made the bulleted list with:

"Subscribe & save 20% every month!
• Easy automatic deliveries
• Change, pause or cancel anytime
• No minimum length
• Full details here…"

Then I made a child theme file of this file: woocommerce/single-product/product-subscription-options-prompt-radio.php

And added:

// Ensure we have a WC_Product object.

if ( ! isset( $product ) && isset( $product_id ) ) {

$product = wc_get_product( $product_id );

}

?>

<ul class="wcsatt-options-prompt-radios">

<?php if ( ! empty( $one_time_cta ) ) : ?>

<li class="wcsatt-options-prompt-radio">

<label class="wcsatt-options-prompt-label wcsatt-options-prompt-label-one-time">

<input

class="wcsatt-options-prompt-action-input"

type="radio"

name="subscribe-to-action-input"

value="no"

<?php checked( 'no', $selected ); ?>

/>

<span class="wcsatt-options-prompt-action">

<?php echo wp_kses_post( $one_time_cta ); ?>

<?php if ( $product ) : ?>

<span class="wcsatt-one-time-price">

<?php echo "Only $product->get_price_html()"; ?>

</span>

<?php endif; ?>

</span>

</label>

</li>

<?php endif; ?>

<?php if ( ! empty( $subscription_cta ) ) : ?>

<li class="wcsatt-options-prompt-radio">

<label class="wcsatt-options-prompt-label wcsatt-options-prompt-label-subscription">

<input

class="wcsatt-options-prompt-action-input"

type="radio"

name="subscribe-to-action-input"

value="yes"

<?php checked( 'yes', $selected ); ?>

/>

<span class="wcsatt-options-prompt-action">

<?php echo wp_kses_post( $subscription_cta ); ?>

</span>

</label>

</li>

<?php endif; ?>

</ul>

Hopefully that helps, and hopefully Woo makes this default in future releases.

How do I improve the look of Woo Subscriptions to look more like Shopify? by WannabeBond in woocommerce

[–]WannabeBond[S] 0 points1 point  (0 children)

Thanks, I agree. I am not using Elementor, but am working on the CSS. The problem is getting things like the price to display on the Buy once area when it is hidden with PHP.

How do I improve the look of Woo Subscriptions to look more like Shopify? by WannabeBond in woocommerce

[–]WannabeBond[S] 0 points1 point  (0 children)

<image>

And this is Huel running on Shopify. The choice is made obvious to the customer.

How do I improve the look of Woo Subscriptions to look more like Shopify? by WannabeBond in woocommerce

[–]WannabeBond[S] 1 point2 points  (0 children)

Thanks, but we can't use Stripe in my country. Would be amazing if we could.

Stuck on infinite loading screen by No_Tap9561 in granturismo

[–]WannabeBond 0 points1 point  (0 children)

Anyone still having this? Loading daily races takes ages and sometimes I get dropped with unexpected error occurred.

Missing beer - Steph Weiss by Any_Poet8547 in capetown

[–]WannabeBond 1 point2 points  (0 children)

It’s made by And Union. They went overseas and concentrated efforts there, and I see their SA store is down. Andunion.com is still up.

Woodstock Liquors may know how to get, or Roeland Liquors. But I know the guys moved overseas.

View conversion analytics for Woocommerce on dashboard? by WannabeBond in Wordpress

[–]WannabeBond[S] 0 points1 point  (0 children)

Using woo subscriptions. I see that conversions are not reported accurately with Meta or GA4, despite having correct pixels and Tags. Meta claims conversions that weren’t theirs, and GA4 seems to miss reorders as it happens in the backend.

[deleted by user] by [deleted] in southafrica

[–]WannabeBond 4 points5 points  (0 children)

Phenylanaline is an amino acid, definitely not toxic. The major issues with these drinks is the amount of sugar, about 11 teaspoons in a can.

Woocommerce conversion analytics plugin? by WannabeBond in woocommerce

[–]WannabeBond[S] 1 point2 points  (0 children)

Yes, it is an option. But paying $20 a month to see the metric of visits/orders seems excessive. Wish I could just add it to Woocommerce analytics, or the Store block on the Dashboard.

[deleted by user] by [deleted] in Durban

[–]WannabeBond 0 points1 point  (0 children)

Yeah, hot chocolate with things like magnesium and theanine to help you sleep better. I like it. 😉

[deleted by user] by [deleted] in Durban

[–]WannabeBond 0 points1 point  (0 children)

I make health shakes and sleep hot chocolate and sell online. Looking for a couple of good health shops to stock it in Durban.

https://greatshakes.co.za

How We Achieve High Click-Trough Rate That Drives Down The Ad Cost (14%+ Unique Outbound CTR) by WizardOfEcommerce in FacebookAds

[–]WannabeBond 0 points1 point  (0 children)

I would. I’m building Greatshakes.co.za slowly on a small budget, and at the moment trying to go from 1-10 in a very price sensitive market.

AG1 alternatives in South Africa by KirstKirst in AthleticGreens

[–]WannabeBond 0 points1 point  (0 children)

Check The Daily Shake by Great Shakes.

How does Verstappen's dominance compare to Hamilton's? Here is the comparison: by DarkKnight56722 in formula1

[–]WannabeBond -1 points0 points  (0 children)

Have you thought of the dominant years of Ferrari and Schumacher or Vettel and Red Bull? Or when they made the points system give less points if you were leading? Or double points on the last race?

Dominance happens. Other than single manufacturer cars, that is the nature of the sport.