
In this guide you will learn how to uninstall Slider Revolution Magento 2 extension.
read moreSlider Revolution gives you ability to create attractive content for any page in magento 2. It can be used in cms pages, category listings, product pages etc. You have several ways of intergration including shortcode for cms pages/blocks, xml code for layout files and plain php. Today we will learn how to add slider to […]
read moreIn some cases you will need to dynamically replace slide images in Slider Revolution. For example if you want to change image depending on browser size. Or after some user actions. This is quite easy with use of Slider Revolution API and Custom Javascript. Lets for example add feature that changes second slides image to […]
read moreExtending modules instead of modifying them is a good practice in Magento development. But what will happen if in Magento two modules extend same class? This can occur when two extensions extend same class for own needs. In this case only the last one will get benefit from extending it. And the first one will […]
read moreYou can easily creare slideshow for category page with Slider Revolution Magento Extension. In fact, you can have different slideshows for different categories in the following way: Login to admin Navigate to NWDthemes > Slider Revolution > Manage sliders and create new slider for the category. Navigate to Catalog > Manage Categories and choose category […]
read moreDid you know that when you purchase an item from envato marketplace like Codecanyon, you’re actually purchasing a envato license to use that item? Codecanyon items can be sold under regular or extended license. Regular License Regular License allows use of the item in one single end product which end users are not charged to […]
read moreIn our global world it is important to cover auditory as much as possible to attract more customers and increase sales. Magento store engine provides great tool for it – multiple websites, stores and store view. With use of it you can create multilingual store, multiple stores for specific target audience, selected product categories and […]
read moreYou can choose from 500+ Google Fonts in Slider Revolution Magento Extension. You can do it in Edit Style dialog when editing text layer of your slide: Click text layer you want to edit In Layer General Parameters select Style and click Edit Style button In Edit Style Dialog choose font in Font Family dropdown […]
read moreYou can use your custom font in Slider Revolution Magento Extension in the following way: 1. Upload your font to your server, for example in media/fonts/ folder. 2. Include your custom font by inserting following line to style of your slider. You can do it in sliders Custom CSS of Slider Settings here: Or in Edit […]
read moreYou can insert Slider Revolution to Magento store programmatically by adding it to layout or generating and outputting its code in controller action or block. For example in controller action you can use following code:
1 2 3 4 | $this->loadLayout(); $myBlock = $this->getLayout() ->createBlock('revslider/revslider') ->setAlias('homepage'); |
This will create Slider Revolution block, now you can render it to html string to output it somewhere:
1 | $myHtml = $myBlock->toHtml(); |
Or […]
read more