Insert carousel app in shopify site - carousel

I have the carousel app but do not know how to insert it in my shopify site. I do not know html and am trying to insert it on a page I created using their easy to use software. Please help.

Related

How to modify product page using Theme and Asset api for a shopify App

I am creating a Shopify app that will insert a trust seal or badge on the product page. However, there is difficulty in implementing it since there is no clear documentation or tutorials on how to do it. What I want to achieve is to place an image (trust badge) somewhere before or after the Add to cart button. This is a public app, so modifying the theme through Shopify API themes/assets is the only option to do it dynamically.
Shopify is really new to me. I just studied it for 3 weeks, maybe someone who has prior experience in implementing this would help me.
Please refer to the image for reference.
Thank you in advance! :-)

Additional Script in shopify Checkout thank you page

I am building a shopify app and I am unable to figure out how can I add additonal script shown in image to track orders in shopify checkout. I want to do with shopify python api. Please help! here is the script image that I want to add https://i.imgur.com/FYYDTea.png

How to make a shopify app/theme extension which would get displayed in the brand's store UI?

We have an application which integrates with Shopify Clothing stores. We run our application in an iframe inside the shopify store where it interacts with the store's user.
Right now this application gets integrated with Shopify manually by inserting our script tag inside the store's product page. Can someone tell me how I can do this using a shopify app or theme extension?
Edit after David's answer
Is it also possible for me to get information about standard buttons in the theme like the Add to Cart button or Change Variants input. Ideally I would like to get the selector for these.
You would create a Shopify App that asks for permission to write ScriptTags. The Apps simply installs a script tag pointing to your App. So when the merchant installs your App, they get the script tag. Depending on what your App does in that iframe, you may need your Shopify App to provide other support, but that is not detailed in your OP, so I leave it at that.

Where the captcha code is located in shopify?

I want to display captcha on the same page under the contact form. But I can't able to find where it is located in Shopify liquid code.
If you are familiar with liquid code editing, you could try below solution.
https://community.shopify.com/c/Shopify-Design/Adding-Google-reCaptcha-v3-to-the-Shopify-contact-form/td-p/467787
If you are not familiar with editing code, you will have to use an app from shopify app store.

How to add content on shopify pages with an app

Completely new to shopify app development, I looked around the documentation but I did not find any hint about creating an app that add external content to pages (homepage or product pages or every pages) as countdown apps do on every pages or on product pages.
Any help on it could be a great service !
It is really simple these days:
create an App, install it in shop
in app configuration, add an App Proxy
add a JS callback to the App Proxy using a Script Tag (or however you like)
have your App return either a full Liquid string response, or JSON
render response to JS callback in theme
So you can play with this more ways than you can shake a stick. You can return Liquid with your tags so that the web theme designer people can take advantage of what is special about your App. You can just return JSON and template the results into DOM as per the usual pattern.