REST API Google Sheet & Wordpress | Crocoblock JetEngine

Поделиться
HTML-код
  • Опубликовано: 24 ноя 2024

Комментарии • 103

  • @rozuja
    @rozuja 2 дня назад

    U just won a subscriber man!!! 3 videos now just sawn and worked!!! Managin APIS its insane...!!!

  • @rafinhaprado
    @rafinhaprado Год назад +4

    So helpful! Thank you so much, this opens up so many possibilities with Crocoblock. I had to follow you in both my accounts to not miss any new videos! You are a star. Greetings from Brazil.

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад

      Thank you, another Sheet to Wordpress Tutorial is coming in few days :)

  • @ajlg-vzla
    @ajlg-vzla 8 месяцев назад +1

    Hi!
    Thanks for your tutorial!
    Do you happen to know how to implement a search filter on that table that actually works? i've been trying for sometime now but i believe i have an error on the variables im setting on the filter.
    Thanks!

    • @MoxetKhanPK
      @MoxetKhanPK  8 месяцев назад

      Worst case scenario, use datatable, it has pagination, search and what not.

  • @pixelharmonie-webdesign
    @pixelharmonie-webdesign 9 месяцев назад +1

    Horrey Moxet! Do you know how to filter by querys in Jetengine in your showed case? (at Timestamp 04:15)

  • @endless3171
    @endless3171 8 месяцев назад +1

    can we use this method for a dynamic chart builder. for instance, im looking for updating the values of charts from google sheets like daily or hourly updates.

    • @MoxetKhanPK
      @MoxetKhanPK  8 месяцев назад +1

      Possible, you can fetch these values to query builder than charts

    • @endless3171
      @endless3171 8 месяцев назад

      thank you i know there are multiple ways to do that it just little overwhelming. Btw big fan of your content.@@MoxetKhanPK

    • @MoxetKhanPK
      @MoxetKhanPK  8 месяцев назад

      @@endless3171 welcome 🎉

  • @matthieudondey8844
    @matthieudondey8844 5 месяцев назад

    Hi Moxet, thank you so much for your video. I'm still quite new to jet-engine. For several of my clients, I have a "numbers section" and I usually create an Options page with Jet Engine. But using a google sheet would be perfect! What would you recommend if I don't want a table but just a few numbers? Would it be possible to do Google Sheet -> Options -> Elementor display? (sorry if this is a stupid question 😅😅)

  • @pezweb
    @pezweb 3 месяца назад +1

    hi! how can u retrieve only 1 item, for example, the latest one and not the 3 of them?

    • @MoxetKhanPK
      @MoxetKhanPK  3 месяца назад +1

      You can try this code
      function getSheetDataAsJSON() {
      var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
      var range = sheet.getDataRange();
      var values = range.getValues();
      var headers = values[0];
      var lastRow = values[values.length - 1]; // Get the last row
      var rowObj = {};
      for (var j = 0; j < headers.length; j++) {
      rowObj[headers[j]] = lastRow[j];
      }
      return JSON.stringify(rowObj); // Return only the last row as JSON
      }
      function doGet() {
      return ContentService.createTextOutput(getSheetDataAsJSON())
      .setMimeType(ContentService.MimeType.JSON);
      }

    • @pezweb
      @pezweb Месяц назад

      @@MoxetKhanPK thank you!

  • @moallaacademy
    @moallaacademy Год назад

    ur tutorials are always different. I love your tutorials

  • @josephogbaji2660
    @josephogbaji2660 Год назад +1

    Thank you so much, very helpful. Please can you do this thing with CPT listing instead.

  • @bunediyo
    @bunediyo Год назад +1

    Omg. You are great bro. Really you are the best.

  • @jacobis1036
    @jacobis1036 5 дней назад

    Hi, thanks for the tutorial, could you explain how to add a search or selection filter for this table using jetsmarth filter? Is it possible?

  • @mihaiciobanu01
    @mihaiciobanu01 Год назад +2

    Great tutorial as always!
    One question: is it possible to create a form with jerformsbuilder or any other builder with REST API data, i mean populate some fields from API data and then do some calculation or get a response?
    Ex: I have a API with car details data: make, model, engine, price etc.
    I need to create a form that will populate these fields from API and then when clicked the submit to show for ex the price of a car based on selections of the fields.

  • @chetanram797
    @chetanram797 Год назад +1

    I have created a full fledged login with firebase OTP verification and used Google sheet as a database.

  • @onafetstube
    @onafetstube 8 месяцев назад

    Hi Moxet, thank you so much for your tutorials! I created a listing instead of a table. Is there a way to reverse the order of the listing? the first one before the googleSheet is shown as the first item of the listing, instead I would like the last line of the googleSheet to be shown as the first item of the listing

  • @SamWereb
    @SamWereb 11 месяцев назад +1

    00:20 Preview of a JSON script
    00:49 Create a Google Sheet
    01:45 Paste the code as an Extension
    03:14 Find the endpoint
    03:27 Connect the endpoint via REST
    03:47 Add new Query for the API data
    04:22 Create table or listing
    05:58 Display the data on a page

    • @MoxetKhanPK
      @MoxetKhanPK  11 месяцев назад +1

      Thank you, i ll add it to description

    • @SamWereb
      @SamWereb 11 месяцев назад

      Thank you for the things you publish here. You're really helped me understand JetEngine.

  • @rafinhaprado
    @rafinhaprado 9 месяцев назад

    Finally was able to use it in a project! Worked really well. Just a question: I tried to use JetSmartFilter to filter the REST API data, but I wasn't able to make it work. Would that be possible?

  • @anthonyespino7214
    @anthonyespino7214 Год назад +1

    gracias por compartir tus conocimientos amigoo. Saludos desde Perú.

  • @russcastella
    @russcastella 10 месяцев назад

    Thanks. About to play with it. What about multiple sheet tabs?

    • @MoxetKhanPK
      @MoxetKhanPK  10 месяцев назад +1

      You can add gazillion sheet as fas as you maintain the code 😁

  • @ianndellagiustina8914
    @ianndellagiustina8914 Год назад

    Hello! How are you? I really enjoyed your video on this topic, which brought me a part of something I'm developing. Can you tell me if it is possible to fetch values from a spreadsheet to make calculations through a JetEngine form? I need to create a calculator on a website, but the results must be based on data from a specific spreadsheet.

  • @alan_jonatan
    @alan_jonatan 10 месяцев назад

    Could you make a tutorial or help me to show only a range of data from said table? Thank you very much and good video!

    • @MoxetKhanPK
      @MoxetKhanPK  10 месяцев назад

      Modify the code in range section and define your own range

  • @rookiesmarts
    @rookiesmarts Год назад +1

    Nice 😃
    How can I do the opposite? Send data from Jetformbuilder to Google Sheets?

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад +1

      Already made a video, check in channel

  • @alaaabdelrahim4074
    @alaaabdelrahim4074 15 дней назад

    Hello , Great tutorial! can we use Microsoft Excel instead of Google Sheet?

    • @MoxetKhanPK
      @MoxetKhanPK  7 дней назад

      Yes we can use it but with 365 onlinr

  • @PROSIMSI
    @PROSIMSI 11 месяцев назад

    Hi, I have a question that I couldn't find an answer to anywhere. In addition to MAKE or Zapier, is it possible to insert data from Google sheet into CCT / CPT?
    It would be a really useful feature.
    Would you be able to give advice on how to achieve this?

  • @abdulhamid.469
    @abdulhamid.469 Год назад

    Thanks learn something new from you. ❤

  • @PauloSilva.desingner
    @PauloSilva.desingner 7 месяцев назад

    Hola, y si quiero que cada campo de la tabla de Google sheets la otra utilizar en campos en el front con Cpt

  • @Tim-Thompson
    @Tim-Thompson 8 месяцев назад

    Thank you Moxet. I am using the above to manage a clients big phone list. Is there a way to have multiple tabs/sheets in a single google doc, then display each sheets on a separate page? or do I need to create a separate google doc for each sheet?

    • @MoxetKhanPK
      @MoxetKhanPK  8 месяцев назад +1

      You can use 1 doc with different sheet, but either you need two .gs file or you need to optimize the code to push data to relavent end points. for example staff phone numbers has staff.gs file which push data from staff sheet to staff cct and so on.
      Alternatively you can have 1 gs file but with different data variable and end point but that would be a bit difficult to manage.

    • @Tim-Thompson
      @Tim-Thompson 8 месяцев назад

      @@MoxetKhanPK thanks fro getting back to me Moxet, do you have a video on how to do this please?

  • @theblacktrini
    @theblacktrini Год назад +1

    How do we create/update CCT items from Google Sheets data?
    I have a Google Sheets Document with data, and I want to use the data from it to create CCT or CPT items. Is this possible?

  • @Art-01
    @Art-01 Год назад

    Thank u so much. Please make more videos👍🏻🙏

  • @Sashad2003
    @Sashad2003 Год назад

    Thank you very much. Very useful tutorial 👍

  • @litefilos
    @litefilos Год назад

    ¡GENIAL, MUCHAS GRACIAS POR COMPARTIR! :)

  • @baliflorent6971
    @baliflorent6971 Год назад

    Thanks sir. I have questions:
    1- how can I load data in a jetEngine table without refresh the page? How can we do Ajax?
    2- How can I add checkboxes in a column so I can select some rows and do bulk actions ?

  • @schulleroscar2037
    @schulleroscar2037 7 месяцев назад

    Hello, is it possible that when the data is changed on the google sheet, the change is deployed on wordpress without refresh the page?

  • @techplayblog
    @techplayblog 8 месяцев назад

    awesome * 1000000000000 !!!! very useful!!
    🤩

  • @deslogsales6045
    @deslogsales6045 Год назад

    Awesome tutorial. Thanks alot

  • @firstudionl
    @firstudionl 10 месяцев назад

    Hi There, is it also possible to include cell formatting such as currency and color with this method?

    • @MoxetKhanPK
      @MoxetKhanPK  10 месяцев назад

      The more you refine the code, the more better result you can get.

  • @aliyansajid
    @aliyansajid Год назад

    Hello Abdul!
    Your tutorial are really helpful. Can you tell me that how we can you third part API? I've watched your other tutorial in which you used rapid API but he API I've is not Rapid API

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад

      It is more or less the same, you need to add credentials and fetch the requestes.

    • @aliyansajid
      @aliyansajid Год назад

      @@MoxetKhanPK I'm getting Forbidden error message upon Send Request

  • @gidioninovamedika
    @gidioninovamedika Год назад

    hi this is great tutoria; but i have question.. how to define checkbox/select/radio field from JETFORMBUILDER to not write the value on google sheet? ived tried this tutorial but using chechbox but it give me the value not the label on google sheet.. very appreciate if u can answer this thx

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад +1

      Checkboxes/select etc tend to store values not labels, if you need to store labels make sure label and value are same

    • @gidioninovamedika
      @gidioninovamedika Год назад

      @@MoxetKhanPK ahh ok thank you for the answer, your tutorial is really great..

  • @bazeto
    @bazeto 7 месяцев назад

    Oh great, thanks mate, how I can add filter to search anything in this type of data

    • @MoxetKhanPK
      @MoxetKhanPK  6 месяцев назад

      check my video about datatable in the channel

    • @bazeto
      @bazeto 6 месяцев назад

      @@MoxetKhanPK Can you please share the link, I want to show records form the same sheet by search, does it show anything from any cell if we search, I think I have to use smart filter please advice.

    • @MoxetKhanPK
      @MoxetKhanPK  6 месяцев назад

      @@bazeto ruclips.net/video/iVoWDs5S-9A/видео.htmlsi=mTtS8kcmo9CxjJ0a

  • @YasirShabbir
    @YasirShabbir Год назад

    Jazak Allah bro for your time :)

  • @SamWereb
    @SamWereb Год назад

    Thank you for this. Very useful.

  • @JubranZakri
    @JubranZakri Год назад

    Thanks for this amazing tutorial

  • @nurislam5379
    @nurislam5379 Год назад

    Wow 😱 really amazing ❤

  • @Elsteck
    @Elsteck Год назад

    Great! Thank you!

  • @wasiqkhan886
    @wasiqkhan886 11 месяцев назад

    Thank you!

  • @MrShumy92
    @MrShumy92 11 месяцев назад

    Hi, thanks for your tutorial. My goal its create a possibility to make a product table where registred user can enter a quantity of products, and to send a request to me clicking a button. How its possible to make?

    • @MoxetKhanPK
      @MoxetKhanPK  10 месяцев назад

      Yes it is possible, i already have a tutorial send elementor data to google sheet. please check that.

  • @shakibkhan1921
    @shakibkhan1921 Год назад

    Can I manage those data from a post type?

  • @visualmodo
    @visualmodo Год назад

    Excellent video :)

  • @danrh14
    @danrh14 Год назад

    Thanks for this tutorial

  • @wcamaz
    @wcamaz Год назад

    hello Moxet, I have a question that is outside the content of your video, I have many days researching and I can not find a solution, with the jetengine form plugin I will create a form that contains select type fields: city, population and neighborhood, I need that when I select a city only show the populations that correspond to them and likewise, when you select a neighborhood, show only the neighborhoods belonging to that city, can you guide me how I can achieve it.

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад

      You need to use hierarchical select, but city should have relavent population as child taxonomy.
      I am not sure about the structure of your site but it can be taxonomy or relationships.

  • @jahid7656
    @jahid7656 Год назад

    Just Boom 💥

  • @neotericangel
    @neotericangel Год назад

    What do I do if there are multiple sheets in the data?

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад

      you want to link it with 1 page or different?

  • @mayurkurhade5400
    @mayurkurhade5400 Год назад

    is it possible to create charts with the same method?

  • @DanielShuster96
    @DanielShuster96 Год назад

    Hey, do you happen to have an idea why the dates are different? For example: in sheets, the date is 02/07/2023 and in the jet, it is displayed as 03/07/2023 (adding one day). Thanks!

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад

      Im not sure i ll check it but try to set google sheet timezone to yours as well.

    • @gamingp661
      @gamingp661 Год назад +1

      Due to Time zone

  • @DanielShuster96
    @DanielShuster96 Год назад

    Thanks!

  • @nguyenthuanhuynh3173
    @nguyenthuanhuynh3173 10 месяцев назад

    How to gate date with right timezone

    • @MoxetKhanPK
      @MoxetKhanPK  10 месяцев назад

      make sure your google and wordpress timezone are matching.

  • @msandre19701
    @msandre19701 Год назад

    How to put a "delete" button to delete a row?🤔

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад

      You need to use hook which transmit the data to Google Sheet with a CCT ID & then delete it, but for sure you need Google Sheet API integrated.

    • @msandre19701
      @msandre19701 Год назад

      Thanks for the feedback...
      Could you create a video explaining how to do it?@@MoxetKhanPK

  • @boxing_mantus
    @boxing_mantus Год назад

    How can I contact you for custom work?

  • @gamingp661
    @gamingp661 Год назад

    Awesome

  • @PELLO987654321
    @PELLO987654321 10 месяцев назад

    Can this also be done with multiple sheets within one Google spreadsheet?

    • @MoxetKhanPK
      @MoxetKhanPK  10 месяцев назад

      Yes you can work with multiple sheet, different code.

    • @PELLO987654321
      @PELLO987654321 10 месяцев назад

      Can you please write the code for this? I cant figure it out :(

    • @MoxetKhanPK
      @MoxetKhanPK  10 месяцев назад

      @@PELLO987654321 paid tasks on my fiverr account

    • @PELLO987654321
      @PELLO987654321 10 месяцев назад

      @@MoxetKhanPK okay, whats your username?

  • @matiasgongorapowditch255
    @matiasgongorapowditch255 Год назад

    How do we create/update CCT items from Google Sheets data?
    I have a Google Sheets Document with data, and I want to use the data from it to create CCT or CPT items. Is this possible?

    • @MoxetKhanPK
      @MoxetKhanPK  Год назад +1

      Tutorial coming soon.

    • @anthonyespino7214
      @anthonyespino7214 11 месяцев назад

      @@MoxetKhanPK Thanks friend, we look forward to that tutorial. Greetings from Peru