@thomasd Hello, it would be easier with a link to your page than the link to AppDrag library. What is the code you use to demonstrate it?
Posts made by Wassim
-
RE: jQueryLoaded doesn't always trigger.
-
RE: DNS FOR LEMLIST
@katya-nakache hi, it seems good to me. How much time did you wait before check ? DNS propagation isn't instant.
-
RE: Mobile version of my image gallery
@mj-lamouret well the same should fit, but set it up with a different ratio and remove the padding from your section to have some space no?
-
RE: URL to trigger an event in AppDrag
@ed-low you can add a Javascript Embed Code => inside you ready you URL parameter and then call the native AppDrag Function
showUserInterface()
that will open the screen you screenshot. -
RE: Shipstation integration
@christopher-rodriguez hello, I don't think we will integrate it. Maybe you can check how to integrate it on any website and do the custom integration on your website?
-
RE: Mobile version of my image gallery
@mj-lamouret yes it seems normal to me to keep the ratio and fill between the padding of your page.
A simple trick is to have a second slideshow only visible on mobile while the existing will only be visible on desktop and tablet landscape. It gives you more control on aspect ratio. -
RE: Mobile version of my image gallery
@mj-lamouret hi, maybe you can share the appearance you have on mobile devices? On my end it looks correctly.
-
RE: Cache isn't working?
@thomasd hello,
- What AppDrag component are you referring to ? A website page ? A Cloud API Function ? Which method (GET/POST) ?
- How do you define the cache?
- What do you see in the response headers for the cache duration?
-
RE: SEO and appdrag url, issue on google Analytics
@kevin-jourdan hi, what is the issue you have from AppDrag exactly?
Your Google analytics with the .html extension can be because :
- manual links pointing to your page with the .html
- links from other websites/social medias pointing to your website with the .html
From what I see, AppDrag link your pages without the .html extension and the canonical URL doesn't contain the .html extension.
-
RE: domain register issue
@mohan-mishra are you looking for the way to connect a domain bought from your AWS account?
You can find useful information here https://support.appdrag.com/cat/Domains -
RE: I duduplicate the button and paste the new download
@stephanie-akoun hello, can you provide a link to the page and a screenshot of which buttons you're talking to?
-
RE: Length of texts in the heading of the navigation bar
@MJ-LAMOURET hello, it's corrected. Thank you for sharing the issue with us!
-
RE: Length of texts in the heading of the navigation bar
@mj-lamouret hi, this happens only with the icons. Unfortunately I haven't found the solution yet, I'll do my best to fix it soon.
-
RE: The article variation doesn't appear
@marc-lamouret hello!
Thank you for finding it, we've rewritten this part to avoid this issue on AppDrag Shops. It's now working as expected on your page
-
RE: Tabs Section Not Working
@kirk-brown it does meet all your requirement.
Add the jQuery code into a jQuery source code and the CSS into a CSS source code.
-
RE: Page element showing on published page but not on builder page
@naomi-crain excellent thanks for telling me
-
RE: Tabs Section Not Working
@kirk-brown hi, I think your tabs are wrongly configured. But as you can't have no tabs opened I would recommend you to code your entire system :
1 - create the buttons without the tabs plugin
2 - on each button add a classmy-tab-button
and a custom attributedata-area="main-line"
with the appropriate area inside.
3 - create one row per area and add the classmy-tab-content
and a custom attributedata-area="main-line"
with the appropriate area inside.
4 - on your button go to trigger => javascript code => and add this code$('.my-tab-button').click(function () { $(".my-tab-content").removeClass("opened"); $(".my-tab-content[data-area='"+$(this).attr("data-area")+"']").addClass("opened"); });
5 - add the following css
body:not(.pagebuilder-edition) .my-tab-content:not(:opened) { display:none; }
Note that the
body:not(.pagebuilder-edition)
is just to still see your items while you're in the pagebuilder.Wish you'll do it successfully
-
RE: Using MySQL variables in the "New Query" executor
@nicolas-flam hi, I think you should provide some context :
- what is your query?
- what is your project?