Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    1. Home
    2. Wassim
    3. Best
    • Profile
    • Following 0
    • Followers 9
    • Topics 11
    • Posts 835
    • Best 154
    • Groups 1

    Best posts made by Wassim

    • New permissions for project sharing

      Hello,

      You can now share projects to specific pages, blog and shop categories.

      More info here :

      https://changelog.appdrag.com/features/new-permissions-for-project-sharing

      share update.jpg

      share update2.jpg

      posted in Announcements
      Wassim
      Wassim
    • RE: Would be awesome with PWA option for the pagebuilder

      +1 We agree, added to the list! 😊

      posted in Features requests
      Wassim
      Wassim
    • RE: Header Overlay

      Hello,

      From an AppDrag point of view what I would do is :

      • a first section with the logo + menu
      • in this menu => edit => desktop design => check "keep the topbar transparent until the user scrolls" and ""Fixed on Top"
      • build a second section that contains the "gradient" background image
      • on this section => edit => separator => bottom => and add the white diagonal
      • then add in this section the title + text + buttons on the left and the image on the right
      posted in How-to
      Wassim
      Wassim
    • Buttons reordering

      You can now reorder your buttons in a buttons container
      https://changelog.appdrag.com/features/multiple-buttons-reorder

      posted in Announcements
      Wassim
      Wassim
    • RE: What is AI, PK, UQ when creating new column?

      Is this a conspiracy?

      alt text

      posted in Cloud Backend (Cloud DB
      Wassim
      Wassim
    • RE: Hidden input fields?

      @ThomasD said in Hidden input fields?:

      s there any built in way to have input fields hidden on the front-end but shown in the admin site editor?

      Hello,

      There's a non builtin way but very easy to do.

      Add a class throught the identification brush named "hidden-live"

      Then drop a CSS embed code and inside do this

      body:not(.pagebuilder-edition) .hidden-live {
        display:none;
      }
      

      As in the pagebuilder, the body has the class "pagebuilder-edition" you can differentiate it with this simple css.

      posted in Cloud CMS (Pagebuilder
      Wassim
      Wassim
    • RE: Asset Manager: Folders

      Hi,

      As requested, this feature is now live.

      More info here :
      https://changelog.appdrag.com/features/asset-manager-folders

      posted in Features requests
      Wassim
      Wassim
    • New feature - Reuse your Cloud API functions as your templates

      Hello,

      You can now add a category to your Cloud API Functions, by doing this they will be available in the list of your templates when you create a new function. (They will be available in all your projects and shared projects)

      https://changelog.appdrag.com/features/reuse-cloud-api-functions-as-templates

      posted in Announcements
      Wassim
      Wassim
    • RE: API calls per minute

      @Daniel-Mulroy yes, @Joseph-Benguira meant Request Per Minutes. It hurts for the king of high RPS infrastructures to switch to speak about RPM instead of RPS 😀

      posted in Cloud Backend (Cloud DB
      Wassim
      Wassim
    • RE: URL Parameters - remove anchor

      Hi,
      Links with an empty anchor which previously lead to :

      details.html?anchor=&id=1001686
      

      Now lead to :

      details.html?id=1001686
      
      posted in General Discussion
      Wassim
      Wassim
    • RE: store() function

      Hello Daniel,

      Sure, let me explain to you how store function works on AppDrag.
      First of all it is used to read and write to the local storage and to fallback on cookies if local storage isn't available on a device/browser.

      The prototype is : store(key, value, onlyCookie);

      To write to the local storage (with cookie fallback) :

      store("name", "John Doe");
      

      To get a value from the local storage (or cookie if it fell back) :

      store("name"); // returns "John Doe";
      

      You can force to use cookies only with the optional third parameter.

      To write a cookie :

      store("name", "John Doe", true);
      

      To Read a cookie (note that we use undefined because we want to get a value and don't want to write anything :

      store("name", undefined, true); // returns "John Doe";
      
      posted in Cloud CMS (Pagebuilder
      Wassim
      Wassim
    • RE: [Feature Request] Warn before deleting columns with data in CloudDB

      This feature has been added it will be released during the day

      posted in Features requests
      Wassim
      Wassim
    • RE: Table Column Default Value

      Hey,
      Very interesting topic. Until now we only allow computed default values on date&time columns, the rest are treated as string.
      So using UUID will result in "UUID" instead of a beautiful "1231203210-01232193219-12032139". I add it to our improvement list to decide if it is treated as a computed value or as a defined value (string).

      posted in Cloud Backend (Cloud DB
      Wassim
      Wassim
    • RE: Copy and Paste API functions between Projects

      Hi,

      What about "Download ZIP archive" and "Restore"? I think that would suit well your use case.

      2f926932-5cf6-47d0-a9bb-fbe101268237-image.png

      posted in General Discussion
      Wassim
      Wassim
    • RE: Whitelabel login is showing Appdrag chat bubble

      Thank you for the report. You're right it appeared with our move to community.
      It has been corrected, sorry for the inconvenience.

      posted in Cloud CMS (Pagebuilder
      Wassim
      Wassim
    • RE: Modal: Close button

      Hey Thomas, you're welcome,

      While checking how to implement it, I noticed that you have the close button as soon as you set a title.

      If you just want the close button without a title you can trick it using a space character title.

      posted in Features requests
      Wassim
      Wassim
    • RE: Admin VS front-end input inconsistencies...

      Hey Thomas,

      Great news, this is now available :

      ba076907-2c01-4fd0-8151-3beee702db57-image.png

      posted in Cloud Backend (Cloud DB
      Wassim
      Wassim
    • RE: Copy and Paste API functions between Projects

      Great, you're welcome 🙏

      posted in General Discussion
      Wassim
      Wassim
    • RE: Sticky Navbar

      Hello,

      Double click on your menu
      9c3a9400-4c41-4b39-92ef-ac9433b61f95-image.png

      Desktop design

      Scroll down an check fixed on top
      0023e0af-55ea-4433-be54-97841c67d4bd-image.png

      posted in Cloud CMS (Pagebuilder
      Wassim
      Wassim
    • RE: Drop shadow on images / icons

      Hey,

      You can now enable shadow on icons and images (natural size not background image of course)

      🎄 Merry Christmas

      posted in Features requests
      Wassim
      Wassim