Zoho Creator can push Form data to Zoho CRM. Below steps tell you how to add a CRM lead from Zoho Creator Form. 1- Create a Lead Form in Zoho Creator: Create a Zoho Creator Form with the following fields. 2- Company Name (field type – Single Line) 3- Name (field type – Single Line) 4-…
Author: Vivek Pandey
Create record from creator/CRM to zoho books
Using below script you can create record in zoho books organizationID = “xxxxxx”; itemList = List(); imap = Map(); imap.put(“item_id”,”XXXXXXXX”); imap.put(“quantity”,1); imap.put(“rate”,500); itemList.add(imap); info itemList; params = Map(); params.put(“customer_id”,”XXXXXXXX”); params.put(“line_items”,itemList); res = zoho.books.createRecord(“invoices”, organizationID, params); info res; Here you can see some Example:- for each rev in Inv { pro = Add_Property[ID == rev.Property_Name];…
Install Latest CodeIgniter Using Composer
Step1- Download the composer. You can download composer here- load this Url on your Browser- https://getcomposer.org/download/ Download the setup and follow the installation instructions. Step2- Open the command prompt/terminal and run the following command- E:\xamp\htdocs>compser You will see the following results If you can see the above results, then congratulations,…
Install Latest CodeIgniter Framework
In this Article, we are going to look at how you can install CodeIgniter. You can download the latest version from the CodeIgniter website, or you can use a tool like a composer to automate the installation Step 1) Open the following URL in your browser https://codeigniter.com/ The image below shows the download link to the latest…
How to install the laravel first time on local xampp
1. For First install the composer we needs to get it download from here https://getcomposer.org/download/ 2. Once Completed installation of your composer then move step 3. 3. Open Composer in your xamp/htdocs 4. Then aaply this command-C:\xamp\htdocs>composer create-project Laravel/Laravel ProjectName 5. Go to your htdocs and open your “ProjectName” folder , and open cmd in…
Zoho Contact Support details
Either you are developing any application or planning to use zoho if you have any sort of questions then you can directly contact to respective email id of zoho support. Zoho Creator support mail- support@zohocreator.com Call common toll-free Phone Number : 1800 103 1123 then press 2 and press 3 for Zoho creator. Zoho crm…
Salesforce integration in Zoho Creator
One of the most common question. How can we connect multiple salesforce account with zoho creator. And use the salesforce account details in zoho creator. On this post you can see the solution for that. Here all the process to make connection with salesforce in zoho Creator is showing in details. Salesforce integration enables you to…
Add pagination with multiple category posts
if you want to add the pagination and fetch the post with multiple categories then you can use my following custom code inside wordpress. Here you need to pass the category name from which you want to fetch the post. Also, you need to pass the number of post which you want to display on…