Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    1. Home
    2. Ed Low
    3. Topics
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 29
    • Best 3
    • Groups 0

    Topics created by Ed Low

    • E

      SOLVED URL to trigger an event in AppDrag
      Cloud CMS (Pagebuilder, Blog, Shop, Newsletters, Code Editor) • • Ed Low

      4
      0
      Votes
      4
      Posts
      622
      Views

      Wassim

      @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.

    • E

      SOLVED Can we modify the email sent to customers or the page displayed after they purchase a product?
      Cloud CMS (Pagebuilder, Blog, Shop, Newsletters, Code Editor) • • Ed Low

      2
      0
      Votes
      2
      Posts
      385
      Views

      Wassim

      @ed-low hi, the user receives two emails :

      the Stripe Receipt (it's the one we see in your screenshot) an order confirmation sent by AppDrag
      You can only customize the logo from your shop Settings and Stripe settings.
      You can also add a hook to send an additional customized email.

      If you need other email 100% customized without those ones sent, consider building a custom shop.

    • E

      How do I write my own SQL query that takes the form inputs as parameters?
      Cloud CMS (Pagebuilder, Blog, Shop, Newsletters, Code Editor) • • Ed Low

      5
      0
      Votes
      5
      Posts
      433
      Views

      Wassim

      @ed-low you can do it using JS select 2 inputs. (but that's an HTML/JS question, not AppDrag related)

      Then you can use any source to call your Cloud API Function instead of setting a source type "field" you would use a "formula" and call a function you created to get the value of your custom input.

    • E

      How to add a wishlist button for my product
      General Discussion • • Ed Low

      1
      0
      Votes
      1
      Posts
      976
      Views

      No one has replied

    • E

      Shop to sell digital photos
      Cloud CMS (Pagebuilder, Blog, Shop, Newsletters, Code Editor) • • Ed Low

      7
      0
      Votes
      7
      Posts
      566
      Views

      Wassim

      @ed-low until now nope.

    • E

      How to Export/Migrate Registered User Information from SHOP?
      General Discussion • • Ed Low

      1
      0
      Votes
      1
      Posts
      182
      Views

      No one has replied

    • E

      How to access database for your customers, products and orders? (Shop Dashboard)
      General Discussion • • Ed Low

      3
      0
      Votes
      3
      Posts
      266
      Views

      E

      @Joseph-Benguira Okay, I see. Thanks! May i know whether it is possible to export all my customer information using Shop API?

    • E

      How to allow fullscreen for youtube video embedded in iFrame? (AppDrag)
      General Discussion • • Ed Low

      2
      0
      Votes
      2
      Posts
      191
      Views

      No one has replied

    • E

      Form redirect
      How-to, Tutorials • • Ed Low

      4
      0
      Votes
      4
      Posts
      396
      Views

      E

      I manged to get it work with the simple steps you provided. Thank you very much!

    • E

      Abandoned Cart
      Features requests • • Ed Low

      3
      1
      Votes
      3
      Posts
      272
      Views

      Nazem SAMAD

      Hi AppDrag community !

      Yes, indeed, I would be glad to have this feature on AppDrag 😉

      Have a nice day,

    • E

      Ecommerce Login
      Cloud CMS (Pagebuilder, Blog, Shop, Newsletters, Code Editor) • • Ed Low

      5
      0
      Votes
      5
      Posts
      368
      Views

      E

      Awesome! Thank you for the help

    • E

      Toggle with JavaScript code
      General Discussion • • Ed Low

      6
      0
      Votes
      6
      Posts
      326
      Views

      Wassim

      @Ed-Low said in Toggle with JavaScript code:

      var service1Sub = document.getElementById("service1-sub");
      if (service1Sub.style.display === "none") {
      service1Sub.style.display = "block";
      } else {
      service1Sub.style.display = "none";
      }

      Did you change anything between your answer and now? It works well on my end now.