No content to show

User Activity

Otherwise, to add code, you can try the theme application extension for new themes (2.0). https://shopify.dev/docs/apps/online-store/theme-app-extensions ScriptTag is now an alternative for old themes.
you can try setting the display_scope attribute of the script tag to all ("display_scope": "all") then detect and run the code on front store order confirmation page with javascript. 
Hello, For security reasons, only the order confirmation page (last page) is allowed to load script-tags.
Hello,maybe specifying and allow that the iframe is from the same origin by adding "allow-same-origin" <iframe src="about:blank" srcdoc="..." allow-same-origin></iframe> or replacing about:blank with an empty html file<iframe src="empty_html_file.htm...
your mobile may have been switched to power saving mode (which disables certain features of the device)
if when you insert the parameters (hmac...) in all the links you use in the application to navigate between views does not work. <a href="{{route('view', ['shop' => $shop, 'hmac' => $hmac])}}">click</a>  You can also store the parameters in the datab...
Is the shop and hmac parameters passed correctly when the button is clicked?Is the middleware assign to the route of the button clicked?
using session you can try something like this    public function handle($request, Closure $next) { $shop = $request->input('shop'); $hmac = $request->header('X-Shopify-Hmac-SHA256'); if(!$this->validHmac($hmac, $reques...
Hello,With Laravel you can also try middleware to store data in a variable accessible across multiple views.
Hello,you can retrieve the theme code (GET) and modify it (PUT) by adding the noscript tag here or create a script tag (POST) and add the noscript tag (with javascript) when installing the application here
Hello,There are product review apps that dohttps://apps.shopify.com/search?locale=fr&q=Product%20Reviews
it's on your Shopify partner account (Apps->Your app->Client credentials)then to access the API:https://www.shopify.com/partners/blog/17056443-how-to-generate-a-shopify-api-token
I contacted shopify who advised me to reply to their email (Your app will be delisted...) to tell them about my problem and that they would investigate on their side. If we are several to answer the mail for this same problem, it will certainly have ...
the only change I made in relation to this problem is to go through Cloudflare. So I deactivated Cloudflare and change dns to return to the initial state but nothing changed, I still have the status "Action required".
Hello,Shopify asks me to install a SSL certificate for my applications otherwise they will be removed from the app store but my applications are hosted on a server with a Let's Encrypt (TLS1.3) ssl certificate. On sslshopper.com everything is ok. Doe...
This widget could not be displayed.
This widget could not be displayed.
This widget could not be displayed.
This widget could not be displayed.
Helpful From
Likes given to