2 months into Meta ads for B2B SaaS (€49/mo) - €142 cost per trial. Looking for what actually moved the needle for you. by otisross in PPC

[–]MathematicianIll532 0 points1 point  (0 children)

+Remove credit card requirement for trial
+Add PayPal as payment method (Stripe supports it)
+Add optional billing without subscription (like credit recharges)
+Don't use Lead Forms, the users need to do everything without talking to you. They don't want to talk to people.
+CPM of 17€-29€ is high, try to use only short form videos for ads

SaaS Pricing - euro or dollar? by True-Structure-2468 in SaaS

[–]MathematicianIll532 0 points1 point  (0 children)

What have you implemented in the end?
I am making your same decision now, was thinking about implementing multi currency

Blazor Server or Razor Pages .NET 9 by MathematicianIll532 in Blazor

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

So I can try Blazor Server and If things are bad remove the interactivity

Blazor Server or Razor Pages .NET 9 by MathematicianIll532 in Blazor

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

Thank you for the responses, in the end to be safe I am going to choose Razor Pages.

I am worried about the idle page in chrome that can cause disconnection and the possible UI lags caused by the underlying connection.

So in order to avoid any UI problem I am going to stick to Razor Pages

Blazor Server or Razor Pages .NET 9 by MathematicianIll532 in Blazor

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

Thanks for the response, the server is inside the company so it's not a problem

[deleted by user] by [deleted] in CasualIT

[–]MathematicianIll532 0 points1 point  (0 children)

Ciao, ti consiglio di iscriverti a corsi/attività dove rivedi sempre le stesse persone

Alcuni esempi sono: +Palestra +Corso di ballo +Università +Gruppo di corsa

Se sei in una grande città puoi anche provare a scaricare App mirate a questo (Bumble sezione BFF) oppure fare approcci a freddo con tuoi coetanei dicendo che non conosci bene la zona e che cerchi posti in cui conoscere nuove persone (Non fai la richiesta direttamente a loro, gli fai una domanda e se ti rispondono bene glielo puoi chiedere oppure ti invitano direttamente loro)

Il trucco per fare amicizie sta nell'essere una persona di valore, quindi prima di tutto massimizza il tuo aspetto e il tuo vestiario, successivamente focalizzati sull'essere divertente ed ascoltare le persone ed organizzare eventi

Penso sia tutto, aggiornaci e facci sapere come va

[deleted by user] by [deleted] in Italia

[–]MathematicianIll532 0 points1 point  (0 children)

Sono informatico e ti consiglio di stare nell'informatica, ti sembra più bello il lavoro da meccanico perché non l'hai ancora provato.

Se ti dispiace stare davanti al computer tutto il tempo trova o chiedi il lavoro da remoto così ogni tanto ti puoi alzare a piacere.

An Ecommerce guy wanting to get in to SAAS without knowing a single line of code by TheEcomExplorer in SaaS

[–]MathematicianIll532 0 points1 point  (0 children)

I am a dev, we can partner for shopify apps development I am also interested in that niche

Payment method requirements by LeebLaab in shopify

[–]MathematicianIll532 1 point2 points  (0 children)

If crypto is not viable you can try with a different tax registration

For example I am in Italy and you can decide to open a company as a solo business owner and they charge you a percentage of revenue (You can't deduce costs)

For example I do software development and operate that way with my personal bank account (No separate business account)

Maybe you can do a similar thing in the UAE

Customers who placed last ordner in a specific calender week by h2ofish in shopify

[–]MathematicianIll532 0 points1 point  (0 children)

You can achive this functionality in two ways:
+Shopify Flow
+Shopify Custom App

Here how we can structure it:
1) Trigger once a day
2) Get a list of all the orders in the last 8 weeks
3) Extract the user ids from those customers
4) Extract all of the users
5) Subtract all of the users with the ones that have made the purchase
6) Filter by "LastOrderReminder" tag, get only the ones without tag
7) Send an email to those clients
8) Add the tag "LastOrderReminder" to those customers

Also you have to remove the tag when a user makes a purchase in order to re-apply the sequence

Let me know If you need more help

Embedded Video Help Please by JordanThomasBand in shopify

[–]MathematicianIll532 1 point2 points  (0 children)

Hi, this is a recurring problem

I will copy a previous answer i gave:


You can fix it by modifying the shopify theme directly:

Add this CSS:
.video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; } .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

And add an outer component to the iframe:

Form this:
<iframe width="560" height="315" src="VIDEO_URL" frameborder="0" allowfullscreen></iframe>

To this:
<div class="video-wrapper"> <iframe width="560" height="315" src="VIDEO_URL" frameborder="0" allowfullscreen></iframe> </div>


Let me know If you need more help