Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. David Alimi
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    David Alimi

    @David Alimi

    11
    Reputation
    23
    Posts
    4
    Profile views
    0
    Followers
    1
    Following
    Joined Last Online
    Website appdrag.com/

    David Alimi Follow

    Best posts made by David Alimi

    • How to create one-to-one and one-to-many relationship between fields from different tables

      Hello,

      Here is a new article to make the best use of data types: linked field(s) by value or by reference.

      https://support.appdrag.com/doc/One-to-one-and-one-to-many

      Thanks !

      posted in How-to
      David Alimi
      David Alimi
    • RE: JUST THE FOOTER FOR LANDING PAGES

      Hi @Katya-Nakache ,

      Really good idea,

      In the meantime you can copy your footer section and paste it into the new page (the page for which you only want the footer).

      Thank you and have a nice day πŸ™‚

      posted in Features requests
      David Alimi
      David Alimi
    • RE: TRANSLATE WEBSITE

      @stephanie-AKOUN said in TRANSLATE WEBSITE:

      Hello, I want to translate my site into two Hebrew and English languages I can’t get there can you help me?

      Hi StΓ©phanie,
      You can follow this article : How do i translate my website.
      Don't hesitate to contact us for anything you might need.

      posted in General Discussion
      David Alimi
      David Alimi
    • RE: can we fetch our blog posts with the searchbar discussed in the new docs?

      Hello @Linda-MacDonald ,

      In order to retrieve the blog articles you must use the blog's REST API, I just wrote an article to make it easier for you πŸ™‚
      You can find it here

      Once your blog posts are in your table, all you have to do is follow the article on the searchbar πŸ™‚

      Don't hesitate if you have other questions.

      Have a nice day

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: Downloadable or printable product feature

      Hi @Dorothy-Sarigumba-0,

      Hope that helps you, here is a tutorial to automate the sending of a digital product :

      Let me know if you have any other questions and if we can improve the documentation.

      Thank you and have a nice day

      posted in Features requests
      David Alimi
      David Alimi
    • RE: TRANSLATE WEBSITE

      Hi @Lora-Alexander,

      When you create an account with appdrag you have 5000 characters available which can be estimate as 800 words or 1.5 pages single-spaced

      After that, you can buy translation credits in your payment section :

      alt text

      Thanks

      posted in General Discussion
      David Alimi
      David Alimi
    • RE: can we fetch our blog posts with the searchbar discussed in the new docs?

      Hello @Linda-MacDonald,

      First of all, this is an example of what you receive from the API :
      alt text

      So we need to use "imageURL" and not 'image',
      Then, as you can see we will receive an incomplete link, so what you need to do is to add this below your variable let PublishDate :

                  let image = articles[i].imageUrl;
                  image = '//cf.appdrag.com/APPID/'+ image
      

      APPID : You can find the APPID of your project at the top right of your API function screen by clicking on 'Configure' :

      alt text

      Then, execute and you will see your images in your database πŸ™‚ :

      alt text

      Don't hesitate if you've got other questions.
      Thanks & Have a nice day πŸ™‚

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: BUG IN LOGO SIZES

      @Katya-Nakache

      Re: BUG IN LOGO SIZES

      Hi Katya,
      A little tips to improve ux when you display phone numbers.
      Clicking on the phone number can directly open the phone call option :

      1. Create a button to display your number :
        Screen Shot 2021-01-07 at 15.37.23.png

      2. In the 'Link' option, write your number like this :
        Screen Shot 2021-01-07 at 15.37.07.png

      And so when the user clicks on the number the application is automatically triggered:
      tel.jpeg

      posted in General Discussion
      David Alimi
      David Alimi
    • RE: Feed Carousel with data from Cloud Backend?

      Hello @Daniel-Mulroy,

      Indeed the plugin does not manage the data coming from the backend.
      I will write an article to write a carousel using these data asap.

      Thanks and have a nice day πŸ™‚

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: Change many things at the same time

      Hi,

      In addition to Wassim's answer, you can check the tutorial in order to configure predefined value for all your elements.

      Don't hesitate if you have any further questions and if we can improve the documentation.

      Thank you and have a nice day πŸ™‚

      posted in General Discussion
      David Alimi
      David Alimi

    Latest posts made by David Alimi

    • RE: API Visual Insert - Results

      Hello @Dick-Honing,

      I suppose your function is of type node and I need more information about your function

      But a general example would be like this
      var query = INSERT INTO users SET name='${name'};SELECT LAST_INSERT_ID();;

      Thank you and have a nice day πŸ™‚

      posted in General Discussion
      David Alimi
      David Alimi
    • RE: API Visual Insert - Results

      Hello @Dick-Honing,

      You can use "SELECT LAST_INSERT_ID();"
      The LAST_INSERT_ID() function returns the AUTO_INCREMENT id of the last row that has been inserted or updated in a table.

      Documentation MySQL here.

      I hope I answer your question well.

      Thank you and have a nice day πŸ™‚

      posted in General Discussion
      David Alimi
      David Alimi
    • RE: API Input Parameters naming convention

      Hi @Dick-Honing,

      Did you try to remove the input parameter 'phone1' and add it again and then click to 'Try'.

      I hope I answer your question well.

      Thank you and have a nice day πŸ™‚

      posted in General Discussion
      David Alimi
      David Alimi
    • RE: save as pdf

      Hello @Henrik-Riccius,

      You can follow this tutorial here to make a 'Dowload PDF' button.

      I hope I answer your question well.

      Thank you and have a nice day πŸ™‚

      posted in How-to
      David Alimi
      David Alimi
    • RE: can we fetch our blog posts with the searchbar discussed in the new docs?

      Hello @Linda-MacDonald,

      I just modified the article to use the BLOG API with a search bar even more easily only in the front-end.

      PS: No need to use the backend anymore πŸ™‚
      You can find the article here.

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: can we fetch our blog posts with the searchbar discussed in the new docs?

      Hi @Linda-MacDonald,

      In our example, the user enters the word 'what' in the search bar and we search if it exists only in our titles (and our output is only the title of the article found).
      However, you can also search if this word exists either in the title or in the description, and in this case you can select in the output ('title' and 'description')

      If you want to search only in titles but want to receive the title + description, it's up to you to choose the output columns you want to receive.

      Here is an example :

      alt text

      alt text

      I hope I answer your question well.

      Thank you and have a nice day

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: Feed Carousel with data from Cloud Backend?

      Hello @Daniel-Mulroy ,

      Thing promised thing due :), Here is the article.
      I hope that answers what you are looking for.

      Do not hesitate if you have questions.

      Thanks and have a nice day

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: Feed Carousel with data from Cloud Backend?

      Hello @Daniel-Mulroy,

      Indeed the plugin does not manage the data coming from the backend.
      I will write an article to write a carousel using these data asap.

      Thanks and have a nice day πŸ™‚

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: can we fetch our blog posts with the searchbar discussed in the new docs?

      @Daniel-Mulroy πŸ™‚

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi
    • RE: can we fetch our blog posts with the searchbar discussed in the new docs?

      Hello @Linda-MacDonald,

      First of all, this is an example of what you receive from the API :
      alt text

      So we need to use "imageURL" and not 'image',
      Then, as you can see we will receive an incomplete link, so what you need to do is to add this below your variable let PublishDate :

                  let image = articles[i].imageUrl;
                  image = '//cf.appdrag.com/APPID/'+ image
      

      APPID : You can find the APPID of your project at the top right of your API function screen by clicking on 'Configure' :

      alt text

      Then, execute and you will see your images in your database πŸ™‚ :

      alt text

      Don't hesitate if you've got other questions.
      Thanks & Have a nice day πŸ™‚

      posted in Cloud CMS (Pagebuilder
      David Alimi
      David Alimi