Prolabels 2.0 User Manual

CONTENTS

1. Description

2. Installation

3. General configurable options

4. Admin interfaces

5. Using Shell Script

6. Use cases

6. Troubleshooting

7. Support

Description

The Prolabel module was created in order to make the process of creating products labels easy and effective. You can assign labels to any items on the Category page as well as on the Product page. The extension is an assistant solution for seasonal discount campaigns and promoting new product. Using the labels you will always attract customers attention to the featured products and special offers.

The Prolabels module has got a responsive design. In 2.5.4 Prolabels release we have introduced content wrapper. It allows to place labels on categories listing template and products page template. For example you can place brand icons or guarantee labels for each product without covering products image. So, using Prolables module you will help your customers always be in touch with your store and make a purchase.

Finally the professional looking and effective call-to-action labels created by that module, will improve your Magento store design and eventually will help to increase sales.

Basic principles
Prolabel module fully supports Magento multi-store feature. So you can either create separate label for each store or apply one label to all stores you have.

Prolabel extension was also optimised for stores with big products catalogs by using indexing process. Therefore labels will not be applied to products until labels indexes will not be updated. The index of the label can be updated by 2 ways:

  • At admin interface by clicking apply labels button
  • Via cron
Predefined variables
In order to provide customers with additional information you can use next variables in labels text:
#discount_percent# percentage discount for particular product.
#discount_amount# discount in currency.
#special_price# discount price.
#special_date# end of sale,discount.
#final_price# price of the product.
#product_name# name of the product.
#product_sku# number of product in stock.
#attr:attribute_code# the code for display of any product attribute.
#stock_item# amount of products in stock.

Installation

Next steps
  1. Navigate to System > Configuration > Templates-Master > Prolabels and enable extension for any store you need.
  2. Configure Prolabels module according to your needs.
  3. Installation of labels code for categories page
    Code listed bellow should be added to list.phtml file in order to display labels on categories pages. For example app/design/frontend/[package]/[theme]/template/catalog/product/list.phtml.
    Prolabels code should be placed in 2 places.
    Line 50
    <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
           

    Change to:

           
    <div class="prolabel-wrapper">
        <?php echo Mage::helper('prolabels')->getLabel($_product, 'category'); ?>
        <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
    </div>
           

    Line 94
    <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
           

    Change to:

           
    <div class="prolabel-wrapper">
        <?php echo Mage::helper('prolabels')->getLabel($_product, 'category'); ?>
        <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>     
    </div>
           
  4. Installation of labels code for product page
    Code listed bellow should should be added to media.phtml file in order to display labels on products page. For exampe app/design/frontend/[package]/[theme]/template/catalog/product/view/media.phtml.
    Prolabels code should be placed in 2 places.
    Line 38
    <p class="product-image product-image-zoom">
    <?php
    $_img = '<img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
    echo $_helper->productAttribute($_product, $_img, 'image');
    ?>
    </p>
           

    Change to:

           
    <div class="prolabel-wrapper">
    <?php echo Mage::helper('prolabels')->getLabel($_product, 'product'); ?>
    
    <p class="product-image product-image-zoom">
    <?php
    $_img = '<img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
    echo $_helper->productAttribute($_product, $_img, 'image');
    ?>
    </p>
    
    </div>
           

    Line 60
    <p class="product-image">
    <?php
    $_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
    echo $_helper->productAttribute($_product, $_img, 'image');
    ?>
    </p>
           

    Change to:

           
    <div class="prolabel-wrapper">
    <?php echo Mage::helper('prolabels')->getLabel($_product, 'product'); ?>
    
    <p class="product-image">
    <?php
    $_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
    echo $_helper->productAttribute($_product, $_img, 'image');
    ?>
    </p>
    
    </div>
           
  5. Content and mobile labels installation on product listing page

    Code listed below should be added to media.phtml file in order to display labels on product listing page on mobile devices. For example:app/design/frontend/[package]/[theme]/template/catalog/product/list.phtml.

    <?php echo $this->getLayout()->createBlock('prolabels/category')->setProduct($_product)->toHtml(); ?>
            
    Content and mobile labels installation on product view page

    Code listed below should be added to media.phtml file in order to display labels on product view page on mobile devices. For example:app/design/frontend/[package]/[theme]/template/catalog/product/view.phtml.

    <?php echo $this->getLayout()->createBlock('prolabels/label')->toHtml(); ?>
            

    General configurable options

    Please go to Magento Admin-> Configuration>Templates-Master->Prolabels and configure the main settings of the extension.

    Prolabels general configuration
    • Enabled ProLabels - select Yes to enable Prolabels extension.
    • Display if Stock is less than - please specify the number of. It is equal to the number of items that are left on the stock. Then the label will be displayed only on that products total.
    • Enable Out of Stock - select Yes to enable the display of the label on out of stock products.
    Tooltip section allows to improve user experience for labels placed in content wrappper. It allows to provide additional information for each label. Tooltip content is based on label "Image Text" parameter.
    • Background color - specify the color of background. You can use the example below.
    • Text color - specify the text color of the label. You can use the example below.

    Admin interfaces

    Prolabels extension allows you to create System labels as well as Manual. The System labels based on the predefined system rules. These are On sale , In Stock and Is New Labels. Users themselves predetermine the rules for the Manual labels.To add and edit the labels, please go to Admin> Templates Master>Prolabels> System Labels.Moreover the extension allows to show labels in content wrapper for mobile devices. It will automaticly detect mobile devices based on user agent string and move labels from product wrapper to content wrapper in order to improve store design for mobile devices.
    System labels customization
    Add On Sale label
    SALE labels are the cost-effective way to mark store sales and attract visitors attention. They are shown on discounted and on-sale products. Using On Sale labels you catch customers attention to the promotional items. The following settings provide the display of label on products with special price.
    General information tab

    General On Sale label information

    • Name - specify the name of label, that will be displayed.
    • Store View - select the store the label would be attached to. This setting deals with the Prolabels term Multi Store,that’s why you may also attach the label to all the stores at once.
    • System Status - disabled by default.
    • Status - select Enabled value to allow the display of newly created label.
    Content(Product page) tab
    • Position - select the position of the label.
    • Image - please download the image of the label.
    • Image text - in this field you are allowed to write the text for the label. Also you can use a few predefined extension variables to choose from.
    For example : Save<br />#discount_percent#%   (Save is the word you selected by yourself , <br /> - HTML code elements , #discount_percent# - predefined variable)
    • Position style - specify the CSS style which adjusts the position of the label.
    • Font style - specify the CSS style which manages the text’s design of the label.
    The following settings are mandatory for all price labels:
    • Round method - select the method of computing rounded unit of final result. Possible values are Math, Ceil and Floor.
    • Round - specify the rounded value.
    Content (Category page) tab

    The Content (Category Page) tab contains the same fields as the Content (Products Page) tab. But the following settings will help you to configure the display of the labels on the category page.

    • Position - select the position of the label.
    • Image - please download the image of the label.
    • Image text - in this field you are allowed to write the text for the label. Also you can use a few predefined extension variables to choose from.
    For example : Save<br />#discount_percent#%   (Save is the word you selected by yourself , <br /> - HTML code elements , #discount_percent# - predefined variable).
    • Position style - specify the CSS style which adjusts the position of the label.
    • Font style - specify the CSS style which manages the text’s design of the label.
    The following settings are mandatory for all price labels:
    • Round method - select the method of computing rounded unit of final result. Possible values are Math, Ceil and Floor.
    • Round - specify the rounded value.
    Indexed products tab

    The following grid allows you to check the list of products, that On Sale labels were assigned to.

    Add In Stock label
    STOCK labels are used to show low stock items. Using in stock and out of stock labels, you focus the customers attention on the limited availability of products. The following settings provide the display of label on low stock products.

    General information tab
    • In Stock Label Status - select Enabled value to allow the display of In Stock label.
    • Name - specify the name of label, that will be displayed.
    • Store View - select the store the label would be attached to. This setting deals with the Prolabel term Multi Store,that’s why you may also attach the label to all the stores at once.
    • System Status - disabled by default.
    • Status - select Enabled value to allow the display newly created label.
    Content (Product page) tab

    The configuration of the following tab allows you to customize In Stock labels as well and Out of Stock labels.

    • Position - select the position of the label.
    • Image - please download the image of the label.
    • Image text - in this field you are allowed to write the text for the label. Also you can use a few predefined extension variables to choose from :
    For example : Only #stock_item# left in stock   (Only and left in stock are the phrases which should be stressed , #stock_item# - predefined variable)
    • Display if stock is lower than  - set the value, that is automatically monitoring the number of products in stock during output of the label.
    • Enable Out of Stock Label - select Yes to enable the display of the label on out of stock products.
    • Out of Stock image - please download the image of Out of Stock Label.
    • Out of Stock Label text - write the text for Out of Stock Label.
    • Position style - specify the CSS style which adjusts the position of the label.
    • Font style - specify the CSS style which manages the text’s design of the label.
    • Round method - allows to you choose the method of computing the rounded unit of final result.
    • Round - allows you to define the rounded value.
    Content (Category page) tab

    • Position - allows you to set the location of the label
    • Image - allows you to download the image of the label
    • Image text - allows you to set the text on the label. You can use a few predefined variables to choose from.
    For example : Only #stock_item# left in stock   (Only , left in stock are the phrases which should be stressed , #stock_item# - predefined variable)
    • Display is stock is lower than  - allows you to set value that automatically checks the number of products is stock during output of the label
    • Enable Out of Stock Label - allows you to enable or disable the display of the label on out of stock products
    • Out of Stock image - allows you to download the image of Out of Stock Label
    • Out of Stock Label text - allows you to set the text on Out of Stock Label
    • Position style - allows you to set the css style which adjusts the placement of label
    • Font style - allows you to set the css style which makes out the text on the label
    • Round method - select the method of computing the rounded unit of final result. Possible values are Math, Ceil and Floor.
    • Round - specify the rounded value.
    Indexed products tab

    The following grid allows you to check the list of products, where In Stock labels were assigned to.

    Add New products label
    New Labels are used for the presentation of new items at your store.The following settings provide the display of label on products set up in admin.
    General information tab
    lazyload
    • Name - specify the name of label, that will be displayed.
    • Store View - select the store the label would be attached to. This setting deals with the Prolabels term Multi Store,that’s why you may also attach the label to all the stores at once.
    • System Status - disabled by default.
    • Status - select Yes to enable the label.
    Content (Product page) tab
    lazyload

    • Position - select the position of the label.
    • Image - please download the image of the label.
    • Image text - in this field you are allowed to write the text for the label.
    • Position style - specify the CSS style which adjusts the position of the label.
    • Font style - specify the CSS style which manages the text’s design of the label.
    • Round method - allows to you choose the method of computing the rounded unit of final result.
    • Round - allows you to define the rounded value.
    Content (Category page) tab

    • Position - select the position of the label.
    • Image - please download the image of the label.
    • Image text - in this field you are allowed to write the text for the label.
    • Position style - specify the CSS style which adjusts the position of the label.
    • Font style - specify the CSS style which manages the text’s design of the label.
    • Round method - allows to you choose the method of computing the rounded unit of final result.
    • Round - allows you to define the rounded value.
    Indexed products tab

    The following grid allows you to check the list of products, where New labels were assigned to. lazyload

    Manual labels customization
    The following recommendations will help you to create your own label. In order to do that, go to Admin> Templates Master>Prolabels> Manual Labels.So, you can make use of already created manual labels and also add new one. Using Add Label button you can create individual and visually-attractive label by yourself. You can put the information you need on the promotional or ordinary product. Please click on Add Label button and continue to fill the appropriate fields in tabs.
    General information tab
    • Name - specify the name of label, that will be displayed.
    • Store View - select the store the label would be attached to. This setting deals with the Prolabel term Multi Store,that’s why you may also attach the label to all the stores at once.
    • System Status - disabled by default.
    • Status - select Yes to enable the label.
    Content (Product page) tab
    lazyload

    • Position - select the position of the label.
    • Image - please download the image of the label.
    • Image text - in this field you are allowed to write the text for the label.
    • Position style - specify the CSS style which adjusts the position of the label.
    • Font style - specify the CSS style which manages the text’s design of the label.
    • Round method - allows to you choose the method of computing the rounded unit of final result.
    • Round - allows you to define the rounded value.
    Content (Category page) tab
    lazyload

    • Position - select the position of the label.
    • Image - please download the image of the label.
    • Image text - in this field you are allowed to write the text for the label.
    • Position style - specify the CSS style which adjusts the position of the label.
    • Font style - specify the CSS style which manages the text’s design of the label.
    • Round method - allows to you choose the method of computing the rounded unit of final result.
    • Round - allows you to define the rounded value.
    Conditions tab

    Manual labels section allows you to create labels based on your own rules. The essential feature of custom labels is Conditions settings’ tab. It provides assigning labels for the products using its attributes. There are flexible conditional rules that can be applied to the labels according to the properties of the product. In order to use attributes in condition interface, you should go to Admin > Catalog > Attributes > Manage attributes. Please open attribute you want to use for your manual label, and select Yes in the Use for Promo Rule Conditions field. After that current attribute will appear in conditions tree. lazyload

    Using Shell Script

    If you're managing the store with huge number of product catalogs and with a lot of custom labels, you might see labels disappeared occasionally. In order to support the smooth running the store and to avoid the losing of labels, we offer to use Shell Script. Started from Prolabels update 2.6.8, the labels' reindex can be additionally implemented by shell script running.

    You are allowed to run shell script for labels' reindex by two following ways:

    1. Using command line. You have to enter
      php -f /path_to_magento_root/shell/prolabels.php -- reindex
      
      Please replace
       path_to_magento_root
      
      with your own magento installation path.
    2. Setting up Cron Jobs in cPanel. Please follow next steps:
    • Login to cPanel and find the Advanced panel.
    • Click on the Cron Jobs icon.
    • Specify the settings in the Add New Cron Job field as shown on screenshot. You have to replace the path with the your own magento installation path.
    Replacing the path
    • Click on Add New Cron Job button. The Cron Job is installed now.

    Please notice, before using both of ways, you have to disable the Cron Manual Labels Indexing in Admin>System>Configuration>Prolabels>General tab.

    That's all. Get more benefits with Shell Script:

    • can be done with PHP without your request to web server
    • must-have idea for store with large amount of products
    • allows to avoid connection to your web host max_execution_time settings

    Use cases

    To get started create a label you like, please go to Magento Admin > Templates Master > Prolabels. There you can design your own labels using the interface configuration.
    Create the sale label with discount amount (SAVE 25%)
    Sale labels can be assigned to all products with special price. To put label Save 36% to the product, please go to Magento Admin > Templates Master > Prolabels > System labels and fill the appropriate fields in the following way. lazyload

    After you do that, click Save Label. Now go to your store frontend and check whether there is label on the product.

    lazyload
    Create the label for new products
    The new products label will be assigned to all products with “Set new product from date” and “Set new product to date” range for the current period. To put label New to the products, please go to Magento Admin > Templates Master > Prolabels > System labels and fill the appropriate fields in the following way. lazyload lazyload

    Now go to your store and look at the label on the product page.

    lazyload
    Create the label with a picture of brand
    To put brand label to the product, please go to Magento Admin > Templates Master > Prolabels > Manual labels and fill the appropriate fields in the following way. lazyload lazyload

    You can change the position of the label according to your needs. On the next example the position of the labels is bottom-left. After you click on Save Label,please check the display of the label on category page.

    lazyload
    Create the label for product with specific attribute value (colour). How to display the text on the attribute.
    To put colored label with the text to the product, please go to Magento Admin > Templates Master > Prolabels > Manual labels and fill the appropriate fields in the following way. lazyload

    In the Image text field you can use such predefined variable as #attr:attribute_code#. That attribute code allows you to place any text on any products attribute. lazyload

    Now go to your store frontend and look at your distinctive label.

    lazyload
    Create the components labels for computers
    Prolables module allows you to create components labels for computers. Please go to Magento Admin > Templates Master > Prolabels > Manual labels and select the position to edit at the grid. The way mentioned below you can create the components labels for Sony computers. lazyload Then fill the appropriate fields in the following way. lazyload lazyload After you press Save label button, please go to store frontend and look at components labels on the product page. lazyload

    Troubleshooting

    To isolate the source of a problem and fix it, you can use ready-made answers. Troubleshooting section is based on FAQ.

    All articles

    Main products image is shown twice 
    Problem with accessing store admin after installation Fatal error: Class 'TM_FacebookLB_Helper_Data' not found in /app/Mage.php on line 520  
    There are no prices block on the products page 
    New products are not showing on home page at Classic theme  
    Show "Store Catalog" navigation block on all store pages 
    What template file we should place conversion tracking code at? 
    Sample sites using our templates and extensions 
    There are no featured products block on home page 
    Rename checkout page url  
    How to enable terms and conditions on checkout page 
    Can the tab order be changed? 
    How can i protect products question from spam? 
    Is it possible to use with Easy Tabs so the product questions are inside a tab ? 
    What is additional CMS tab at Easytabs extension and how we can use it at our store? 
    What is right way to use custom tabs? 
    How can i select color for my theme that already available with additional colors? 
    Main image is missing after clicking additional images 
    How can i change is the "slogan" on the main top banner 
    Where can I change the legal footer data on the site it currently says "2008 magento demo store" 
    Top navigation is missing at my template 
    I have Featured, special products and new products block on my theme. How can i control products shown there? 
    Does your themes include psd files? 
    Do you have any documentation? 
    Do I have to purchase several licenses for each of my store? 
    What payment option are available at your store? 
    How can i translate your template to different language? 
    How can i download ordered products? 
    I just installed your product and have "404 Page not found" at extension configuration page 
    Where can i find compatibility information for your products 
    I can't download product that i just placed order for 
    I have already submitted a ticket but have no answer yet 
    How can i get updates for my products 
    How can i track updates of new extension releases 
    Files and directories permissions 
    Do you have Affiliate program? 
    How can i get invoice for my accounting need 
    Your extension isn't compatibility with my magento version  
    How can i change background color of product image 
    Products price is missing on product page 
    'Shop by' navigation block is missing from some categories 
    We have a lot of categories and only want to display the first level categories 
    I have "Allowed memory size of xxxxx bytes exhausted" error on Firecheckout page 
    I'd like to get my facebook extension working for my website. what is "application id" and "application key" where do i find them? 
    How can i remove free shipping banner? 
    How can i set placeholder at custom position 
    I want to show one of my banners only on a home page. How can i do that? 
    Firecheckout was installed at our store but we don't see the TERMS and CONDITIONS even it's enabled at extension settings. 
    I need to change the "This shipping method is unavailable, please enter a zipcode." on the fire check out page. What file do i need to edit to do so? 
    We want to use Firecheckout with "Ship and pay combo (Ship2Pay)" extension. Can you tell us how we can make both this extension works together? 
    We just installed Social Suite and got error when we are trying to access extension settings. 
    I've just tried uploading a loading gif for the ajax layered navigation and received this... "Destination folder is not writable or does not exists." 
    How to edit Testimonial, About Us and Contacts links 
    Is it possible to target a tab from outside of the tabs? 
    I can create only limited number of image swatches for any product with that extension 
    Can I add layered navigation on pages different from home page? 
    How can I add additional custom placeholders to Easybanners? 
    After switching to 2 column main page layout image slider dissapeared 
    How can i set this theme visible only for mobile devices? 
    How can i hide categories in the header menu block? 
    Free installation 
    How to add house number field on checkout page? 
    How does Helpmate transfer email into the tickets? 
    What is an email gateway? 
    How many support administrators can work on same ticket? 
    Does the Helpmate allow guests to post respond to tickets? 
    How often cron job is launched and what is optimal period for correct work of Helpmate? 
    Are you planning to add live support option in near feature? 
    Where I can edit Helpmate default email templates? 
    What is Priority form that i can enable in Helpmate settings? 
    How we can create hidden department that will be visible only for admin users 
    Right now related articles block is placed on left column of products page. Can i move it to main column or place it on tab the same as at templates-master.com 
    How to switch last name and first name fields on addres form? 
    Rich Snippets and Ultimo theme integration 
    I have installed the easy tabs, but I need it to show above my custom options. 
    How to display catalog title above easy catalog blocks 
    Is Fire Checkout compatible with Magento Enterprise? 
    Magento Firecheckout and Fooman PDF customizer 
    Some strings are not translated. 
    I have problems with reload of payment/shipping methods on the FireCheckout page. 
    FireCheckout extension from Template-Master is already installed, but links lead to Magento default FireCheckout page. 
    I've set the field Province to hidden. But it still appears on the frontend. How can I fix that? 
    I can not place an order and I have problems with some of payment/shipping methods. 
    How to translate Special Price text 
    Sometimes the labels are no longer displayed on the products 
    One month ago I installed ProLabels extension, and two days ago I installed ProZoom extension. Now there's not labels on pictures. Why ? How can I enable the labels ? 
    When I create the manual label, the price attribute is not displayed in the Conditions tab. 
    Amasty_Promo 
    Amasty Coupons integration with Firecheckout 
    Ayasoftware_SimpleProductPricing 
    AW_Points 
    Customweb_PayUnityCw 
    Infostrates_Tnt 
    J2T_Rewardpoints 
    MageStore_Customerreward 
    MrwIberia_Mage2Mrw 
    MW_RewardPoints 
    Netresearch_PaymentFee 
    PostcodeAnywhere 
    Smartpost 
    Tig_MyParcel 
    Setting up external cache model 
    Billmate 
    Using Captcha on testimonial submit form 
    Adding animated list block on the sidebar  
    Adding review block on the sidebar 
    Adding full testimonials list on custom CMS pages. 
    Adding testimonials submit form on custom CMS pages. 
    TIG_PostNL 
    How to add email confirmation field on checkout page? 
    Braintree 
    Amasty_Orderattr 
    AW_Giftcard 
    Bitpay_Bitcoins 
    Ebizmarts_MageMonkey 
    Emjainteractive_ShippingOption 
    Fumo_JapanPost 
    MageWorx_MultiFees 
    Webshopapps_Wsafreightcommon 
    MultiSafePay_Msp 
    MW_Storecreditpro 
    Payone_Core 
    Renew purchase 

    Support

    Template Master team is always ready to assist you with any issue related to our products.

    We do offer:

    1. Free commercial products installation services
    2. Free updates within offered support period
    3. 3 months of free guaranteed support

    Our duties:

    1. Responsibility for resolving products bugs.
    2. Help with technical queries.
    3. Support of popular web browsers (Firefox, Chrome, Safari, Internet Explorer 7+).
    4. Technical support in installation and usage of our products.

    Troubleshooting:

    You can follow the product questions and read frequently asked questions from users.

    If you have any problems with extension installation please contact us at helpdesk.

    Common questions and ideas

    Come up with new ideas!

    Questions:

    Posted by Andrew, Thursday, January 12, 2017 on page Prolabels 2.0 user manual
    • 0
      vote
      A: Please check if you have configuration option "Move labels to content wrapper on mobile devices" set to No at Prolabels settings.
      Posted by Peter D. on Friday, January 13, 2017
    Posted by Paul Binnell, Saturday, September 10, 2016 on page Prolabels 2.0 user manual
    • 0
      vote
      A: Such feature will require custom modificaiton of our module. You can contact us at http://templates-master.com/contacts/ in case you are interested in applying that changes to your site.
      Posted by Peter D. on Monday, September 12, 2016
    Posted by Paul Matthews, Wednesday, September 7, 2016 on page Prolabels 2.0 user manual

    Ask Your Question

    * Required Fields

Back to top