Squarespace have awesome powerful feature to manage images using gallery feature. There is lot of flexible option to present images into different layout. Show images into masonry view is a passion. There is no inbuilt option for show images into masonry view. Here is the following steps to show your gallery images into Masonry view:- 1. Create a gallery page and upload your all images. 2. After uploading all images. Now time to show your all images using Squarespace Gallery Block. You could select your existing gallery page and select gallery type Grid. Now you could there is all gallery images showing. 3. Here is the following code you have to add into Advanced => PAGE HEADER CODE INJECTION of page setting to show your images in Masonry view. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/masonry/4.2.2/masonry.pkgd.js"></scrip...
Here is the following steps to create secondary menu into Squarespace website. 1. Enable Developer Mode a) First, Login into your Squarespace admin panel using /config at end of your website URL. like- https://your-domaine.com/config b) Navigate to Settings=>Advanced=> Developer Mode and enable developer mode. c) Now you will get details of your Squarespace SFTP account. Configure these details with your Filezilla or any other server connecting tool. 2. Menu Registration a)Please open template.conf file and find the navigations into JSON array. b) Apend your menu name and title into Navigation JSON array as given below. { "title": "Primary Navigation", "name": "topnav" }, c) Now update file on server and you could see new menu register into your Squarespace website under Pages section. 3. Display Menu You have successfully reg...
GENERATE EXCEL FILE USING PHP AND MYSQL Here is the following code to generate excel file. <?php $dbhost= "Mysql server name"; //your MySQL Server $dbuser = "Username"; //your MySQL User Name $dbpass = "password"; //your MySQL Password $dbname = "database name"; //your MySQL Database Name of which database to use this $tablename = "table"; //your MySQL Table Name which one you have to create excel file // your mysql query here , we can edit this for your requirement $sql = "Select * from $tablename "; //create code for connecting to mysql $Connect = @mysql_connect($dbhost, $dbuser, $dbpass) or die("Couldn't connect to MySQL:<br>" . mysql_error() . "<br>" . mysql_errno()); //select database $Db = @mysql_select_db($dbname, $Connect) or die("Couldn't select database:<br>" . mysql_error(). "<br>" . mysql_errno()); //execute query $resu...
Comments
Post a Comment