[php]<move element="page.main.title" destination="product.info.main" before="-"/>[/php]
[php]<move element="page.main.title" destination="product.info.main" before="-"/>[/php]
app/design/frontend/Vendor/theme_name/Magento_Catalog/page_layout/catalog_product_view.xml
<move element="product.info.details" destination="product.info.main" after="product_options_wrapper_bottom"/>
magento 2 installation digitalocean lamp #bookmark
apt-get update apt-get install git wget wget -O /usr/local/bin/composer http://getcomposer.org/composer.phar chmod +x /usr/local/bin/composer
cd /var/www/html download and upload magento file https://www.magentocommerce.com/download upload and unzip tar xjf file.tar.bz2 cd /var/www/html/theory composer install
chown -R root:www-data /var/www/html/theory find /var/www/html/theory -type f -print0 | xargs -r0 chmod 640 find /var/www/html/theory -type d -print0 | xargs -r0 chmod 750 chmod -R g+w /var/www/html/theory/{pub,var}
chmod -R g+w /var/www/html/theory/{app/etc,vendor}
DATABASE
https://www.digitalocean.com/community/tutorials/a-basic-mysql-tutorial
mysql -u root -p
SHOW DATABASES;
CREATE DATABASE database name;
DROP DATABASE database name;
GRANT ALL PRIVILEGES ON databasename.* TO 'databaseuser'@'localhost' IDENTIFIED BY 'passwordfordatabase';