In this tutorial you will learn how to add a video attribute (if you do not have a Video URL field in product options).
Enjoy Premium Magento templates at our website:
http://www.templatemonster.com/magento-themes.php?utm_source=youtube&utm_medium=link&utm_campaign=magtuts41
Subscribe Our Channel: https://www.youtube.com/user/TemplateMonsterCo/
Follow us:
Facebook https://www.facebook.com/TemplateMonster/
Twitter https://twitter.com/templatemonster
Instagram @template_monster
Pinterest https://www.pinterest.com/templatemonster/
Dribbble https://dribbble.com/TemplateMonster
LinkedIn http://www.linkedin.com/company/templatemonster-com
Views: 3997
TemplateMonster
A video showing how to set custom rewrite redirect rules inside Magento admin panel
Views: 12367
Astral Web Inc.
This tutorial will show you how to edit products and categories URLs (aliases) in Magento.
Enjoy Premium Magento templates at our website:
http://www.templatemonster.com/magento-themes.php?utm_source=youtube&utm_medium=link&utm_campaign=magtuts42
Subscribe Our Channel: https://www.youtube.com/user/TemplateMonsterCo/
Follow us:
Facebook https://www.facebook.com/TemplateMonster/
Twitter https://twitter.com/templatemonster
Instagram @template_monster
Pinterest https://www.pinterest.com/templatemonster/
Dribbble https://dribbble.com/TemplateMonster
LinkedIn http://www.linkedin.com/company/templatemonster-com
Views: 1395
TemplateMonster
https://understandinge.com/magento-tutorials/
In this Magento Basics tutorial we'll show you how to remove the category from Magento URL's/Links.
You might notice in your URL when you click on a product, that the URL has an extra path which is the category path.
This can be removed, because most customers would like to see much shorter URLs.
In your Magento dashboard, go to:
- System
- Configuration
- Go to "Catalog" section on the left hand side and click on "Catalog" underneath that section
- Expand out the tab that says "Search Engine Optimization"
- Set "Use Categories Path for Product URLs" into "No"
- Set "Canonical Link Meta Tag for Categories" into "Yes"
- Set "Canonical Link Meta Tag for Products" into "Yes" (This will limit duplicates appearing in Google)
- Press "Save Config" when you're done.
After doing these settings you need to reindex Magento.
If you don't know how to reindex Magento, you can check this separate tutorial about reindexing Magento: http://youtu.be/-g9azFicuWU
If you need a hand at any time, use the contact details below and the forums here http://understandinge.com/forum/ are always open.
See you there,
Matt & Dave
Twitter: https://twitter.com/understandinge
Homepage: http://understandinge.com/
Views: 2305
understandinge
This Magento tutorial shows how to get the main product image URL on the product detail page and then reference it in am image tag. It then shows how to add changes using Git. The film review for this video is the 80s hockey film Slapshot. Enjoy!
Views: 1464
Magento Godz
A tutorial on how to setup and add the manufacturer attribute as Brand for products in Magento. Once setup properly you can use this attribute to your advantage and associate brands to products. Once your store is setup with brands information you may use our Shop by Brand extension for further SEO gains.
You can learn more about our extension at: http://extensions.activo.com/shop-by-brand.html
Views: 22004
activowebdev
Views: 467
Alex Lukyanov
How to Write Meta Tags in Magento e-Commerce for Products & Categories. Magento product and category meta tags.
You Can reach me for Magento SEO help at [email protected]
Magento SEO
Magento on-page SEO
e-Commerce SEO
Views: 1633
TubeMint
In this video I show you how to upload multiple product images to Magento with a single click. In order to achieve this you will need to have our Bulk Images extension: http://extensions.activo.com/bulk-images-for-large-catalogs.html which is available for purchase on our Activo Extensions store: http://extensions.activo.com/ .
The key to uploading multiple images at the same time in this method is to match the image file names to the product SKU. There is also a configuration area to specify the separator. The image file names should start with the Product SKU, followed by the separator, followed by the order number of the image related to the other product images for this specific product.
This extension is successfully working on Magento stores with large catalogs, some have over 20,000 SKUs and each product have 3-5 images. Even if you have only a few hundred products, this will still save you a lot of time. The system also offers importing all images, or importing new image files only for those cases that you only uploaded 2-3 new images and do not want to update the entire set of images. This extension also works very well with CDN and stores behind caching mechanisms.
Views: 45664
activowebdev
Hi everybody, I am Cuong, Welcome back to my Magento 2 tutorial video series.
#magento2tutorial
In the previous lesson, I showed everybody, How to create multilingual in Magento 2.
If you don't learn this lesson yet, you can watch it here https://www.youtube.com/watch?v=dzqIRmbYdVc
Today, I am going to show everybody How to create multiple websites in Magento 2.
As far as we know, Magento allows us to create multiple websites using on same a backend but with difference frontends. You have multiple websites and you want to use it on same a backend, this tutorial will help you to do it working.
Before doing this practice, you need to make sure that, you have two domains pointing to same the path on your hosting.
In my localhost, I have two domains named
1. website.vn
2. website.us
Both these websites pointing to same the path /var/www/html/magento/2.2.x/2.2.5
Let's do this practice, you need to follow steps by step:
Step 1: Add a new Root Category
- Log into the backend and navigate to the Catalog → Catalog → Categories → Add Root Category
- Enter the Category Name
- Press the button Save.
Step 2: Create a new website
- Go to the Stores → Settings → All Stores → Create Website
- Enter the Web Site Information
- Press the button Save Web Site.
Step 3: Create a new Store for the second website
- Go to the Stores → Settings → All Stores → Create Store
- Enter the store information
- Press the button Save Store.
Step 4: Create Default Store View for the second website
- Go to the Stores → Settings → All Stores → Create Store View
- Enter the Store view information
- Press the button Save Store View.
Step 5: Setup the Base URL for the new website
- Go to the Stores → Settings → Configuration → General → Web
- On the top-left, in the box to view and manage the Store view, select the new website you just created. Go to the Base URLs and Base URLs (Secure) section.
- Modify to the new domain.
- Click the Save Config button.
Step 6: Set values for the MAGE_RUN_TYPE and MAGE_RUN_CODE
Open the index.php file under application root directory
Replacing this code: $bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
by these codes:
switch($_SERVER['HTTP_HOST']) {
case 'website.vn':
$mageRunCode = 'base';
$mageRunType = 'website';
break;
case 'website.us':
$mageRunCode = 'second';
$mageRunType = 'website';
break;
}
$params = $_SERVER;
$params[\Magento\Store\Model\StoreManager::PARAM_RUN_CODE] = $mageRunCode;
$params[\Magento\Store\Model\StoreManager::PARAM_RUN_TYPE] = $mageRunType;
$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $params);
Step 7: Test and See the results
Run the comment line following:
- php bin/magento cache:flush
- Go the domains website.us and website.vn
For now, I will add some products to the website.us
Yeah, it works perfectly.
For now, I will change the theme for the website.us
There is no new website displaying there.
You need to run the indexer command line now.
yeah, it is showing now.
I change the default theme to the Magento Blank.
That is the results, you have two websites with the same one backend and with two different storefronts.
Thank you for your watching. If you have any questions about this practice please feel free to leave a comment below.
Don't forget to like, comment, share and subscribe to my channel for getting the latest videos.
Please do not hesitate to contact me if you need me to join your Magento project. My rate is $25/hour in Magento 1 and $30/hour in Magento 2.
Views: 3466
Magento 2 Vlogs
*** These videos are to be used as a guide as your settings may differ from those in the videos. ***
Views: 22748
asafatmagento
Hi everybody, I am Cuong, Welcome back to my Magento 2 tutorial video series.
#magento2tutorial
Today, I am going to show everybody a best practice, How to create a custom console command in Magento 2.
Before doing this practice, we take some minutes to learn the Magento CLI, how we can use it.
You can get it here https://devdocs.magento.com/guides/v2.2/extension-dev-guide/cli-cmds/cli-howto.html
We can see it in the module named Magento_Catalog
In this practice, we will create a custom CLI command, that it allows rebuilding the product URL rewrites in the table named url_rewrite, you can find out this table in your database.
Okie, let's go.
Let's do this practice we only need to perform a few steps:
Step 1: Declaring a new module called PHPCuong_UrlRewrite
- Create the namespace PHPCuong in the path app\code.
- Create the module named UrlRewrite in the path app\code\PHPCuong.
- Create the file named registration.php in the path app\code\PHPCuong\UrlRewrite
- Create the file named module.xml in the path app\code\PHPCuong\UrlRewrite\etc
End of the step #1, I have been completed the step to create a new module called PHPCuong_UrlRewrite.
Step 2: Declaring the new CLI command
- Create the new file named di.xml in the path app\code\PHPCuong\UrlRewrite\etc
Step 3: Create the new Command class
- Create the new file named ProductRebuildUrlRewrite.php in the path app\code\PHPCuong\UrlRewrite\Console\Command
Step 4: Test and see results
Run the command lines:
php bin/magento setup:upgrade --keep-generated (Installing the new module)
php bin/magento cache:flush
php bin/magento list (Get the list of CLI commands in Magento 2)
php bin/magento catalog:product:urls:rebuild
Thank you for your watching. If you have any questions about this practice please feel free to leave a comment below.
Don't forget to like, comment, share and subscribe to my channel for getting the latest videos.
Please do not hesitate to contact me if you need me to join your Magento project. My rate is $25/hour in Magento 1 and $30/hour in Magento 2.
Get the source codes of this tutorial in the Github https://github.com/php-cuong/magento-2-rebuild-url-rewrites
Views: 470
Magento 2 Vlogs
Knowband offers Magento Product Size Chart Module which allows the store admin to create the size chart and add it to the product page on the website. The Magento size catalog helps the store admin to resolve the issues of the customers which always wants perfect size for them. The Magento Size Chart Popup extension helps the store admin to create perfect size charts accordingly. The store owner can insert images, text, guidelines and other important attributes to the size chart.
Features:
Magento Product Size chart is very easy to install and configure.
It is very easy to enable/disable the Magento size guide module.
Magento size catalog is highly customizable.
Offers simple and hassle-free implementation.
There is no technical knowledge required for implementing this functionality.
Multiple rows and columns can be added to the size charts.
The store admin can create size charts just by entering values.
There are various option to add images, guidelines or any HTML content to the size chart pop-up.
Magento Size Chart Popup Addon allows admin to set size charts in the category of products or a single product.
Magento Size Chart link Module allows admin to preview settings.
The Product size table extension is multi-store compatible.
Size Chart Popup Addon offers multi-lingual support.
Module Link: https://goo.gl/N2ZnBW
User Manual: https://goo.gl/ZiWegu
Admin Demo Link: https://mademo3.knowband.com/admin
Front Demo Link: https://mademo3.knowband.com/
Please contact us at [email protected] for any query or custom change request as per your business requirement.
Views: 132
Knowband Plugins
This is a simple video showing you how to update meta information (meta title, meta keywords, meta description) in all type of magento pages such as Home page, Category page and Product page.
Facebook Group URL: https://www.facebook.com/groups/1085436228140074/
Blog :
http://risecommerce.com/blog
Magento 2 Development Service :
http://risecommerce.com/magento-service.html
Views: 826
Rise Commerce
This extension allows Unicode UTF-8 NON-English / NON-Latin Characters to be used as URLKey of Categories, Products, CMS Pages.
also you can automatically replace old messy URL Keys, with the new URL keys generated based on product names for thousands of products just by one click
Views: 320
Magendev extensions
create module
Magento 2.1 for developers : add category eav attrubute programmatically
Url course : http://www.ibnab.com/en/blog/magento-2/magento-2-add-custom-eav-attribute-to-category-or-customer
Views: 3650
Ibnab
Product URL: http://weaveapps.com/shop/magento-extensions/multiple-horizontal-product-slider-magento-extension/
Product slider / carousel Magento extension allows you to add multiple responsive sliders on your web store any where you like. It has plenty of user friendly options to configure the sliders easily. It allows you to showcase your products filtered by any specific category or newest or most sold products etc. Users can see the products in a nice sliding manner horizontally or vertically.
Views: 1655
Weave Apps
More Information: https://www.fmeextensions.com/canonical-url-extension-magento-2.html
Magento Canonical URLs extension helps you remove duplicate content issues from your eCommerce website with the addition of canonical Meta tags. You can add tags to products, categories, and CMS pages to define its relevancy with other pages. Add canonical tags to your Storefront, store view, or a custom URL to declare the authoritative version of your webshop. The application of canonicals to pagination and layered-navigation pages further elaborates the relationship of products and categories to the search engine.
Views: 48
FMEExtensions
This video tutorial is going to show you how to manage URL Rewrites in Magento themes.
We've transcribed this video tutorial for you here: http://www.templatemonster.com/help/magento-2-manage-url-rewrites.html
Choose your Magento template now: http://www.templatemonster.com/magento-themes.php?utm_source=youtube&utm_medium=link&utm_campaign=magtuts255
More Magento Tutorials: http://www.templatemonster.com/help/ecommerce/magento/magento-tutorials/?utm_source=youtube&utm_medium=help&utm_campaign=helptuts
Subscribe Our Channel: https://www.youtube.com/user/TemplateMonsterCo/
Follow us:
Facebook https://www.facebook.com/TemplateMonster/
Twitter https://twitter.com/templatemonster
Instagram @template_monster
Pinterest https://www.pinterest.com/templatemonster/
Dribbble https://dribbble.com/TemplateMonster
LinkedIn http://www.linkedin.com/company/templatemonster-com
Views: 3141
TemplateMonster
You can automatically replace old messy URL Keys, with the new URL keys generated based on product names for thousands of products just by one click.
Views: 609
Magendev extensions
How to add product categories to your store in Magento Commerce
Log in to Magento
• Select Catalog tab and click on manage categories link.
• Enter name, URL key, description and image and other options. Click on Save button, when done. You can save the category.
• Click on category products tab. You can see all products here.
• Click on Custom design for creation of a personalized design.
Views: 1037
kvchosting
A Site Map is an essential product of any website to increase traffic which enables search engines like Google, Bing, DDG etc to crawl through your websites. By adding sitemap to your website search engines can fetch information pretty faster.
Step1:
Select Marketing from the sidebar navigation of Magento 2 admin panel.
Then Click on Sitemap under SEO & Search and choose Sitemap.
Step2 :
From the right top corner hit the Add Sitemap button
Step3 :
Then fill the filename and path for the sitemap.
then hit the save button.
Wait until the saving process gets completed.
We have successfully generated the Sitemap in Magento 2
Step 4:
To view the generated sitemap from the Link for Google column hit the latest added links.
Subscribe for more Featured Videos.
Follow our Team on
Facebook:- https://www.facebook.com/eglobeits/
Twitter:- https://www.twitter.com/eGlobeITS
LinkedIn:- https://www.linkedin.com/company/eglobe-it-solutions/
for more just log on to
https://www.eglobeits.com/magento-web-development-company
Thank You!!!
Views: 20
Magento Development Company eGlobeits
This video tutorial is going to show you how to add and manage product tags in Magento themes.
We've transcribed this video tutorial for you here: http://www.templatemonster.com/help/magento-how-to-addmanage-product-tags.html?utm_source=youtube&utm_medium=link&utm_campaign=helptuts
Choose your Magento template now: http://www.templatemonster.com/magento-themes.php?utm_source=youtube&utm_medium=link&utm_campaign=magtuts243
More Magento Tutorials: http://www.templatemonster.com/help/ecommerce/magento/magento-tutorials/?utm_source=youtube&utm_medium=link&utm_campaign=helptuts
Subscribe Our Channel: https://www.youtube.com/user/TemplateMonsterCo/
Follow us:
Facebook https://www.facebook.com/TemplateMonster/
Twitter https://twitter.com/templatemonster
Instagram @template_monster
Pinterest https://www.pinterest.com/templatemonster/
Dribbble https://dribbble.com/TemplateMonster
LinkedIn http://www.linkedin.com/company/templatemonster-com
Views: 3529
TemplateMonster
Showing how to install our latest URL SEO Pro Magento Extension. Showing the configuration options for the extension and how to use it. The advantages of this extensions is by giving the Magento store owner much more flexible control over how URLs are handled and used. The extension helps with Category and Product URLs. See more info at:
http://extensions.activo.com/url-seo-pro-for-magento.html
Views: 732
activowebdev
This video discusses SEO settings to use when setting up a Magento 2 website
We discuss
- Settings and URLs
- HTTPS and mixed content
- 301 Redirects
- Canonical
- Images and Alt Tags
- XML Sitemap
- Robots meta and Robots.txt
- Speed Optimization
- SEO Title Tag and Meta Keywords and Description
- Microdata and Rich Snippets
Views: 7342
Astral Web Inc.
http://store.ibnab.com/magento-2-extensions/magento2-category-url-use-custom-link.html
Magento 2 extension allows the site owner to create a category that links to an
support magento version 2.1 and higher
external site
intern page cms
home page
custum internal route
Magento2 Category URL Use Custom Link also backend easier to manage , easy to install , you can use as normal in categories section (see the look screenshots). we Taking into account the quality of performance
Views: 47
Ibnab
Discusses the process of uploading files within Magento using the Mageworx extension and mapping them to relevant product pages, plus how to display videos on product pages - http://www.digitalproductions.com.au
Views: 7049
ddpseo
How to create a simple downloadable product in Magento.
Views: 6458
Creare
*** These videos are to be used as a guide as your settings may differ from those in the videos. The image URLs are not static and may change therefore you may need to update the URL links in your Magento Go store should the URL change. ***
Views: 1795
asafatmagento
Landing URL:
http://en.e-abi.ee/attribute-value-adder-for-magento.html
Script:
E-Abi.ee:
Attribute Value Adder for Magento
Lets edit a product
I want to change color to Gold
Manufacturer to Libero
Problem....
There is no Golden color on the list...
Do I have to leave this page and add Golden color separately from Attribute management?
Fortunately I have Add Attribute Value module which allows me to add Golden color easily...
Look at the "Add new value..." buttons
Let's try with existing color Green,
notice the autocomplete function....
Voila!
Lets try adding new color Gold
That was very easy!
Gold color is selected.....
And it was not existing before...
Change Manufacturer to Libero and we are done!
Voila!
Wow, that was easy...
Save the product and verify...
Also works with multiselect....
Must have for every serious Magento Merchant!
Order your copy from:
http://en.e-abi.ee/attribute-value-adder-for-magento.html
Views: 560
ee abi
This video out lines how to add support for uploading other file types besides the default jpg, gif and png formats. By default Magento only allows you to upload certain file types so here we override the core supported file types and add support for PDF files so that we can upload PDF's into the Media Storage and link to those PDF's from product descriptions.
For development requests and other questions please visit us at http://www.magentomagic.com.
Views: 5132
Vector Network Solutions
This tutorial will show you how to add/change product video in Magento template(s).
Build your website with templates from TemplateMonster.com: http://www.templatemonster.com/magento-themes.php?utm_source=youtube&utm_medium=link&utm_campaign=magtuts156 Subscribe Our Channel: http://goo.gl/zjoR8Z Follow us: Facebook http://goo.gl/3yXKEu, Twitter http://goo.gl/NR5fDK, LinkedIn http://goo.gl/qDZeEO, Dribbble http://goo.gl/UwqX48, Pinterest http://goo.gl/Tp8Je5
Views: 1461
TemplateMonster
A Warm Welcome to M-Connect Media – Magento Module Development Company.
Do you know same Url create duplication issues in search engine. Keep your product URL Seo-friendly with Mconnect URL Key OPT Magento module.
Let’s configure URL-Key Opt Extension in Magento stores, go to Magento Admin Panel - Systems. In the drop down of System tab, you will find Configuration tab, click to open the Configuration settings. In the General setting drop-down menu, click on the M-CONNECT MEDIA EXTENSIONS Url-Key Opt and it will open the URL-Key Opt settings.
Go to License Key Activation tab, enter the Extension key and Serial key and hit on the Save Config button.
Next, go to Product URL Settings, set the Enable dropdown to Yes to enable the URL Key Opt extension in your Magento store.
According to your store’s requirements, set the next drop down to Yes if you want to auto rename URL-Key as product name if duplication is found.
Select Yes or No in the following drop down to auto rename UEL-Key for ‘Not Visible Individually’ products with append of corresponding Product-ID OR NOT in case if duplicates found.
In the next text box, you can define some frequent URL key appends comma separated values in the case of more than one product exists with the same name. Hit Save Config button in the top right corner!
Next Go to the mass Product Import Settings and select ‘Yes’ in the drop down labeled Enable. This executes the same function in case of mass products import as well as by just enabling from settings. Click Save Config button! Check the store to see the difference in the URL.
Liked the Mconnect URL Key OPT Magento extension? Want to know more about it? Browse https://www.mconnectmedia.com/url-key-opt.html.
Thanks,
M-Connect Media
Mconnect Magento Extensions
https://www.mconnectmedia.com/magento-extensions/
Views: 35
M-Connect Media
http://www.magazento.com/english/magento-ext/magazento-extensions/seo
Serious websites and large stores spend much time and huge amounts of money on SEO optimization to improve their websites' visibility in search results. Getting top search engine positions is a high priority for lots of stores since top positions bring potential customers.
Magento SEO ENGINE extension is a real time saver for you, if you have to improve your search engine positions. This Magento extension helps you to increase your ranking positions and reduce time spent on optimization. We highly recommend you to use this extension if you want to take a serious approach to SEO for your Magento site.
With Magento SEO ENGINE you can generate SEO and user-friendly product URL Keys based on product attributes. For example, you can set a template "[name]-[{color} color]-[categories]-[sku]" and it will be transformed into "apple-macbook-pro-ma464ll-a-15-4-notebook-pc-silver-color-computers-laptops-ma464ll-a.html". This SEO ENGINE allows you to select all products and set them a template, as well as assign different templates to different product groups with store division (different URL Key templates for different languages). Besides generation of URL Keys, this extension allows you to reach higher rankings in search engines with the help of Title, Description and Meta keywords dynamic templates. It transforms all meta information and makes your products SEO friendly just in a few minutes!
Views: 1763
Ivan Proskuryakov
Have you installed the Amazon To Magento 2 Product Importer in your Magento 2 Admin Panel? Watch the video and learn how the sellers who have installed the Amazon To Magento 2 Product Importer extension can complete the Importing of products from Amazon to Magento 2 Admin Panel and then on Magento Store using the Amazon to Magento 2 Product Importer.
Don't forget to tell how did you find the video in the comment section!
Please Like the Video, Subscribe to Our Channel and share the video.
The links mentioned in the video series can be found below:
Amazon Product Importer User Guide: https://docs.cedcommerce.com/magento-2/amazon-magento-2-product-importer-admin-guide/
For Amazon MWS Service URL: https://docs.developer.amazonservices.com/en_ES/dev_guide/DG_Endpoints.html
For AWS Endpoint URL: https://webservices.amazon.it/scratchpad/index.html#https://webservices.amazon.it/onca/xml?Service=AWSECommerceService&Operation=ItemSearch&SubscriptionId=AKIAJZU6QLEVDQO7PPJA&AssociateTag=gate08b-21&SearchIndex=All&Keywords=led&ResponseGroup=Images,ItemAttributes,Offers
To Check the Demo of the Extension Yourself, Click Here: http://demo.cedcommerce.com/magento2/marketplace-importer/admin/admin/
Haven't Purchased the Extension? Click Here: https://cedcommerce.com/magento-2-extensions/amazon-to-magento-2-product-importer
Views: 341
CedCommerce
Magento 2 Improved Configurable Product extension (https://firebearstudio.com/improved-configurable-products-for-magento-2.html) is a complete enhancement tool for your store. With B2B product matrix, dynamic attribute updates, improved SEO and advertising system.
30 days money back, 100% open source, Free installation, and consultancy!
- Product content update dynamically: page URL, product name, SKU, description & any other attribute
- Pre-defined configurable product options
- Matrix grid view for configurable products
- Adjustable price range
- Products updated dynamically at category pages
- Adjustable product page content
- Product attributes reflected in page URL dynamically
- Improved highly targeted advertising
- Full tier and group prices support
- Custom shipping message scheduled per child product
- Faster shopping with fewer add to cart steps
- Metadata dynamic updates and schema.org support
Improved Configurable Product product page: https://firebearstudio.com/improved-configurable-products-for-magento-2.html
Extension manual: https://firebearstudio.com/blog/improved-configurable-products-for-magento-2.html
FAQ: https://firebearstudio.com/blog/improved-configurable-products-for-magento-2.html#13
Demo store: http://magento2demo.firebearstudio.com/
Views: 1076
FireBear Studio
If you got problem with save product or category and you got error :
"URL key For Specified Store Already Exists" this video is for you :)
All steps described in this google doc document:
https://docs.google.com/document/d/1CG_WYfl8ukX5rrImeK4-k2FONXWQqQ_9jVAzWhhmIdw/edit?usp=sharing
if this solution was helpfull please give +1 :)
thanks
Views: 2526
Marcin J
This tutorial will show you how to change Magento admin panel URL.
Enjoy Premium Magento templates at our website:
http://www.templatemonster.com/magento-themes.php?utm_source=youtube&utm_medium=link&utm_campaign=magtuts30
Subscribe Our Channel: https://www.youtube.com/user/TemplateMonsterCo/
Follow us:
Facebook https://www.facebook.com/TemplateMonster/
Twitter https://twitter.com/templatemonster
Instagram @template_monster
Pinterest https://www.pinterest.com/templatemonster/
Dribbble https://dribbble.com/TemplateMonster
LinkedIn http://www.linkedin.com/company/templatemonster-com
Views: 4115
TemplateMonster
How To Upload Products to WooCommerce with Images using the WP All Import Plugin. This saves you the $95 dollars that Woocommerce charges to upgrade their importer to Deluxe.
For questions: leave a comment, message or email [email protected]
Views: 32744
Casey Marte
http://cmsmart.net/magento-extensions/magento-product-label-extension
Magento Product label allow admin add graphical labels to your products images and attract visitors to your Magento store
More Product Magento Extensions: http://cmsmart.net/magento-extensions
Magento Themes : http://cmsmart.net/magento-themes
Virtuemart Extensions: http://cmsmart.net/virtuemart-extensions
Virtuemart Templates: http://cmsmart.net/virtuemart-templates
Views: 702
Cmsmart TVChannels
This Magento tutorial shows you how to get product information on the product detail page. It also includes a review of the 2015 film Goon. I hope you like it and I'm glag to be back :)
Also, you can now checkout my new tutorials on my site:
LouisFico.com
Views: 1803
Magento Godz
In this tutorial you will learn how to remove Add To Compare option in Magento template(s).
Enjoy Premium Magento templates at our website:
http://www.templatemonster.com/magento-themes.php?utm_source=youtube&utm_medium=link&utm_campaign=magtuts31
Subscribe Our Channel: https://www.youtube.com/user/TemplateMonsterCo/
Follow us:
Facebook https://www.facebook.com/TemplateMonster/
Twitter https://twitter.com/templatemonster
Instagram @template_monster
Pinterest https://www.pinterest.com/templatemonster/
Dribbble https://dribbble.com/TemplateMonster
LinkedIn http://www.linkedin.com/company/templatemonster-com
Views: 6437
TemplateMonster
Learn how to fix weird URL rewrites in Magento
More Magento Tutorials: www.yireo.com/tutorials
Views: 12831
jiraict
In this short video I teach you how to add products to categories on your Magento website.
Views: 122
Tisha Clark
This video shows you how to add youtube api key and enable embedding of youtube and vimeo videos on your product page.
To add api key, start by visiting https://console.developers.google.com/apis/dashboard
Views: 3080
Astral Web Inc.