Wednesday 18 April 2018

Access Localhost in Mobile or any another device

your laptop or PC and Mobile should be connected to same network

Write "ipconfig" in CMD
Find IPV4 Address in PC or laptop

Copy paste that IPV4 Address in mobile

If you are having access denied issue then do as follows:
Path >> C:\wamp64\bin\apache\apache2.4.27\conf\extra\httpd-vhosts (For wamp server)
File name: httpd-vhosts.conf


# Virtual Hosts
#
<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
     Options FollowSymLinks  // Copy This Code
       AllowOverride All   // Copy This Code
       Require all granted  // Copy This Code
  </Directory>
</VirtualHost>


 then restart your Wamp

Access that Address in Mobile Again :)
Thank You

Infinite scroll on collection page in Shopify

 Hello, Collection page structure is as followed {% paginate collection.products by 48 %} <div class="collection-content"> ...