Ecommerce Store Consultant » eCommerce http://www.hiremagentodeveloper.com/blog Fri, 28 Jun 2013 16:28:01 +0000 en-US hourly 1 http://wordpress.org/?v=3.4.2 How To Customize Modules For Magento Stores !!! http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-develop-custom-store.html http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-develop-custom-store.html#comments Fri, 28 Jun 2013 16:27:52 +0000 Hire Magento Developer http://www.hiremagentodeveloper.com/blog/?p=313 More...]]> HireMagentoDeveloper is a professional Magento development service provider at the international level. We have numerous ready to use Magento products and countless set of custom services for development of online store. From custom module development to custom theme development and from extension to integration services, we excel in every facet of store development while staying economical.

Amplify Your Store’s Functionality with Custom Modules

Magento is a user friendly eCommerce software available in today’s market, but it doesn’t necessarily provide all the features needed to satisfy your every business needs. As a result of which, many a times you need to hire a custom module developer for Magento module programming services, so that you can affix required functionality within your store.

Our team of Magento professionals has adequate knowledge and experience of creating custom Magento modules. To extend the basic functionalities of the Magento eCommerce platform, we also offer module configuration and module installation services tailored to customer’s need.

Whenever we are hired for module development services, our major focus is to deliver solutions that can stand up to its purpose mightily. We are deeper in depth  of knowledge and services, and have already served business verticals counting from B2B to B2C, and from Multi store portals to Bidding websites.

We Hold Expertise in,

  • Magento YouTube Module
  • Magento Payment Module
  • Magento Worldpay Module
  • Magento Quickbook Module
  • Magento Shopping Module
  • Magento Affiliate Module
  • Magento Sales Tax Module
  • Magento Module with Admin
  • Magento Module Controller
  • Magento Quiz Module

Today, just creating out-of-the-box solutions is not enough, we create Magento modules to meet business challenges with the focus to enhance your brand and user experience. We evaluate your store operation and foresight the future of custom module for your store. Magento module SQL installs and Magento module MySQL install are some hidden elements of our technical skills that enables us to design most suitable solutions.

Key Benefits of Hiring Developers From Us !

We don’t believe in words, we believe in acts. You can kindly visit our portfolio, for an exact understanding of our technical skills and methodology that we adopt for producing practical solutions.

We also offer eCommerce store consulting services to keep your website competitive as well as rewarding at the same time. Now if you want to launch a fully functional online store with made-to-order modules, than quality service within short deadlines is just an email away from you. Mail us all your worries, and we will set up a website from scratch.

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-develop-custom-store.html/feed 0
Add quantity box on product listing page http://www.hiremagentodeveloper.com/blog/ecommerce/add-quantity-box-on-product-listing-page.html http://www.hiremagentodeveloper.com/blog/ecommerce/add-quantity-box-on-product-listing-page.html#comments Wed, 26 Jun 2013 12:14:45 +0000 Bhavin http://www.hiremagentodeveloper.com/blog/?p=308 More...]]> It is very user friendly if we provide the option to add the quantity of product on product listing page. In default magento setup, user must have to go to product detail page to change the product quantity or he/she has to add the product to cart first and then change the quantity from cart page and update the cart.

Here are the steps, which you can follow to add the quantity box on product listing page.

  1. We have to add the quantity text box just above the “Add to cart” button. You will find the following code of “Add to cart” button in in “app/design/frontend/default/YourTheme/template/catalog/product/list.phtml” file.

    <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
    									

    Now add the the following code just above the code of add to cart button.

    <?php if(!$_product->isGrouped()): ?>
    
    <label for="qty"><?php echo $this->__('Qty') ?>:</label>
    <input type="text" name="qty" id="qty" maxlength="3" value="<?php echo ($this->getMinimalQty($_product)?$this->getMinimalQty($_product):1) ?>" class="input-text qty"/>
    
    <?php endif; ?>
    									

  2. We need to wrap up the quantity box and add to cart button in the HTML form tag; so now after wrapping up the full code will look like as follow.

    <form action="<?php echo $this->getAddToCartUrl($_product) ?>" method="post" id="product_addtocart_form_<?php echo $_product->getId()?>">
    
    <?php if(!$_product->isGrouped()): ?>
    <label for="qty"><?php echo $this->__('Qty') ?>:</label>
    <input type="text" name="qty" id="qty" maxlength="3" value="<?php echo ($this->getMinimalQty($_product)?$this->getMinimalQty($_product):1) ?>" class="input-text qty"/>
    <?php endif; ?>
    
    <br />
    
    <button type="button" onclick="this.form.submit()"> title="<?php echo $this->__('Add to Cart') ?>"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
    
    </form>
    									

We can add the javascript validation for blank quantity box or set the default quantity to one. We can also use AJAX to add the product to cart but in that case we have to refresh the “MY CART” and “Recently added item(s)” block and also have to change the number of items in “My Cart” URL in header.

Feel free to post the comment if you find this blog helpful or you need any further assistance.

Thanks,

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/add-quantity-box-on-product-listing-page.html/feed 0
Language translation in external page using magento code structure http://www.hiremagentodeveloper.com/blog/ecommerce/language-translation-in-external-page-using-magento-code-structure.html http://www.hiremagentodeveloper.com/blog/ecommerce/language-translation-in-external-page-using-magento-code-structure.html#comments Sat, 15 Jun 2013 07:46:07 +0000 Bhavin http://www.hiremagentodeveloper.com/blog/?p=288 More...]]> There are many occasions where we need to translate the text in external script or page to our store language which is not in English.

Suppose you want to translate some text in Chinese language then you have to include that text in locale which is zh_cn.

Please check the following code snippet for example.

<?php 
include_once 'app/Mage.php';
umask(0);
Mage::app();
Mage::getSingleton('core/translate')->setLocale('zh_CN')->init('frontend', true);
$test_strting = “test”;
echo Mage::helper('core')->__($test_strting);
?>
									

You have to make sure that you have defined the translation in the CSV file for that particular word. By considering the above example the conversion for “test” word must be in the /app/design/frontend/package/theme/locale/zh_CN/translate.csv

Hope it will help you.

Thanks,

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/language-translation-in-external-page-using-magento-code-structure.html/feed 0
How to show more relevant search result in magento? http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-show-more-relevant-search-result-in-magento.html http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-show-more-relevant-search-result-in-magento.html#comments Wed, 12 Jun 2013 13:09:51 +0000 Bhavin http://www.hiremagentodeveloper.com/blog/?p=279 More...]]> It is necessary to show the exact and accurate result of the products when any user search on our website in the ecommerce, which increases more interests of users to our catalog.

The default magento search feature gets the search results having the same search keyword in other products description or in any other attribute product attribute.

How to overcome this issue?

You just need to set the following configuration from admin panel.

  1. Login to admin panel.
  2. Go to Catalog -> Attributes -> Manage Attributes.
  3. Search and select the attribute to edit.
  4. Go to Properties -> Frontend Properties.
  5. Select the “Use in Quick Search” and “Use in Advanced Search” to “No”.
  6. Save the Attribute.
  7. Reindex the “Product Flat Data” and “Catalog Search Index”.

Note: You have to follow and repeat the same steps listed above for each attribute which you don’t want to include in the search criteria. In general cases, the short and long description attributes of the products have the same search keywords which match with more than once products and the search result gets affected using it.

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-show-more-relevant-search-result-in-magento.html/feed 0
How to use priceHtml() function on custom extension or module file? http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-use-pricehtml-function-on-custom-extension-or-module-file.html http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-use-pricehtml-function-on-custom-extension-or-module-file.html#comments Wed, 12 Jun 2013 12:40:22 +0000 Bhavin http://www.hiremagentodeveloper.com/blog/?p=272 More...]]> I am sure you all must have faced the difficulty to display the price including tax, special price etc. in a way how magento works while developing a custom module or an extension. When we get the product collection we use getPrice() function to display price of the product but it never includes the other additional like tax and special prices so it is better to use the magento default feature which displays the price. I use the following code to display the price in custom extension or module files.

<?php
//this is an example code and can be used in any .phtml file or controller class
$product_block = new Mage_Catalog_Block_Product;

//$product is product object
echo $product_block->getPriceHtml($product);

//if inside a loop than unset the instance.
unset($product_block);
?>


									

I hope it will be helpful to you.

 

Thanks,

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/how-to-use-pricehtml-function-on-custom-extension-or-module-file.html/feed 0
search is not working for custom or default field in magento admin order grid page http://www.hiremagentodeveloper.com/blog/ecommerce/search-is-not-working-for-custom-or-default-field-in-magento-admin-order-grid-page.html http://www.hiremagentodeveloper.com/blog/ecommerce/search-is-not-working-for-custom-or-default-field-in-magento-admin-order-grid-page.html#comments Sat, 08 Jun 2013 06:03:42 +0000 Bhavin http://www.hiremagentodeveloper.com/blog/?p=251 More...]]> I recently suffered with the issue while adding any new custom field to sales order grid in admin panel and gone through the following steps to fix the issue.
1. Go to app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php
2. Add the following code to the field which causes the issue.
'filter_index'=>'main_table.increment_id',

3. Save and test the search.

Note: This is example for only one field if you are suffering with the same issue for more than one fields then you have to add this code as per the field index name.

Thanks,
]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/search-is-not-working-for-custom-or-default-field-in-magento-admin-order-grid-page.html/feed 7
How and Why, We are The Most Eligible Magento Development Company for You? http://www.hiremagentodeveloper.com/blog/ecommerce/how-and-why-we-are-the-most-eligible-magento-development-company-for-you.html http://www.hiremagentodeveloper.com/blog/ecommerce/how-and-why-we-are-the-most-eligible-magento-development-company-for-you.html#comments Wed, 05 Jun 2013 09:30:21 +0000 Hire Magento Developer http://www.hiremagentodeveloper.com/blog/?p=232 More...]]> By the time you have realized that going online is extremely beneficial, now it is the time for you to search an ideal store development company who can execute your ideas in style. Whether it’s your first online store or second, as marketer you are probably in no mood to make compromise with features, functionalities and looks of your store.

Magento is easy to use ecommerce platform with immense potential and it is necessary to appreciate your decision of selecting it as a platform for your online store. Today it powers more than 150,000 businesses across the web and even we truly suggest magento to our clients because of its flexibility and built in features.

There are countless reasons for why magento is best among all. But here are some points, if you want to know that why we strongly back magento for store development.

Spirited Community

Magento has solid backbone of vigorous community that will never let platform go down. eCommerce giant eBay is the owner of Magento; hence it is here to stay.

Low in Price

Magento comes in three different editions and you will surely find one matching your business and budget. Company like HireMagentoDeveloper offers pre-defined plan and pricing service so that you can get a fully functioning store in limited time and budget.

SEO Friendly Stores

Platform has amazing SEO abilities. Vivid SEO plugins, WISIWIG editor, SEO optimized themes etc makes it search engine friendly.

Multi-Site Functionality

With magento, it is easy to create multiple sites based on one install. For example, you can operate one store aiming cosmetic products for women over 50 and other for women below 50. With this feature, you can target two different industries by single effort.

Tons of Modules

With thousands of free and paid modules, store owner can easily improve functionality of their store. If you don’t module of your need, developers can hired for custom development.

You can mail us to know more about efficiency of magento. But, the question arises who will set-up store for you? If you Google up, you will find thousands of service providers, some are best at service and some are cheapest whereas some have million fans on Facebook and some have rich development portfolio. HireMagentoDeveloper is here to help you find a way out of this confusion.

Below are Some Steps that May Help You in Your Selection.

Visit our Portfolio

Our portfolio is our strength. It has a long list of masterpiece projects across web, developed by our developers after in-depth analysis of market and audiences. Projects are developed in given time frame without any compromise in quality.

Meet our Developers

Before, during and after the execution of project, you will be given service of seamless connectivity with our dedicated developers. You can share ideas with developers and end-up with something extraordinary.

Ask Our Clients

You can ask our clients, how systematically and methodically we undertook their project and successfully executed it. We also helped countless clients who had bad experience with another developer. We made their ugly work look beautiful.

High Quality at Low Price

When you hire us for development of your online store, budget is never an issue. Cheapest developers are rarely the best but at HireMagentoDeveloper we made it possible. You pay only for what you get.

Look at Our Website

Retro is not always trendy. We have designed and developed our home site with utmost care and concern and we are sure about its success. Our website is result of our awareness about latest technical trends and tools.

If you are searching for most eligible magento Development Company, than look no further. We hold the most successful resume compared to any other service provider in the market. We have great database of satisfied customers with lots of testimonials. With all this and more hidden abilities, we promise you the successful and smooth execution of your magneto project.

Drop us your idea and suggestion here

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/how-and-why-we-are-the-most-eligible-magento-development-company-for-you.html/feed 0
How To Hire Theme Developer for My Magento Online Store? http://www.hiremagentodeveloper.com/blog/ecommerce/best-theme-for-magento-online-store.html http://www.hiremagentodeveloper.com/blog/ecommerce/best-theme-for-magento-online-store.html#comments Thu, 23 May 2013 17:57:56 +0000 Hire Magento Developer http://www.hiremagentodeveloper.com/blog/?p=210 More...]]> Your business may be small or mid or of large sized, but without online presence it won’t see the next stage of growth.  It’s the call of the market and you must obey the market rules and trends to make your business breath in the stance of fierce competition. Making your business available online a good idea but going online in style integrated with awesome functionality is a kind of achievement.

Themes that Reflect Your Business Ideas

Magento offers everything a marketer needs to setup, operate and maintain an online store. Thousands of plugins for store enhancement, millions of Magento developers for custom store development and unlimited themes for decorating your online store. Store development using platform like Magento is always a good idea and appreciated by audiences and also by search engines.

As no two businesses are same, marketers hire Magento theme developers who can flaunt their business ideas in style and make their online store look unique and stunning. At marketplace, thousands of free and paid themes are available, but many of them are used and churned out. There are several disadvantages if you go for free themes and here are some,

Disadvantages of Free Themes

  • They may be free but totally unprofessional and may not go with your business ideas.
  • They may be easy to use, but they may not support some advanced functionality in your online store.
  • They are easily available, but whom to contact at the time of emergence to solve the errors and faults.
  • Free themes may work fine but not extraordinarily.
  • Many of them are used by your competitors and using the same themes may hinder image of your online store.
  • Most importantly, many free themes are not optimized for search engines; hence your store may face problems to fetch business from search engines such as Google, Bing, and Yahoo etc.

Theme Developers @ Hiremagentodeveloper

While going online, greed of saving few dollars may prove fatal for your dreams and efforts. At Hiremagentodeveloper, we have passionate theme developers who specialize in creating custom themes for Magento stores. Whether you are looking for Magento classic themes or Magento modern themes, or from Magento fashion themes to Magento clothing themes, we ensure hand coded and SEO optimized themes for your online store.

Advantages of Hiring Theme Developers

  • You get unique design in budget for your store
  • 100% professional looking and mirroring your ideas
  • Themes are SEO optimized, hence search engine friendly
  • Supports all the advanced functionality in your store
  • Free support at any point of time
  • Works extraordinarily as you do for your store

We are best at what we do, and theme development for magneto is our passion. Along with Magento iPhone and mobile themes, PSD to Magento theme conversion is another added attraction in our service crown and we claim to excel in every part of it. Waiting is letting your competitors lead your way, Contact us right away.

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/best-theme-for-magento-online-store.html/feed 1
Story Of Magento Store Development at HireMagentoDeveloper http://www.hiremagentodeveloper.com/blog/ecommerce/how-can-store-development-experts-help-your-business.html http://www.hiremagentodeveloper.com/blog/ecommerce/how-can-store-development-experts-help-your-business.html#comments Sat, 18 May 2013 05:51:34 +0000 Hire Magento Developer http://www.hiremagentodeveloper.com/blog/?p=161 More...]]> Our Developed Stores Helps Marketers Generate Viable Business Opportunities

We emerge-out with unique and great looking online store for each and every marketer who consults us with their requirements. Based on their custom store requirements, sometime it’s an easy going process and sometime we have to bend ourselves a little more but we never left any jerks in store quality and features. We know that for selling goods and services, and also to keep generating viable business opportunities, the online store had to look professional.

Prior products and services, it’s the online store that engages the visitors and inspires them to process ahead and make transactions. Alike other sellers, we had a client who came-up to us with his requirements to develop online store so that he could sell sports equipments and gears. Bespoke store development requirements were composite, but that’s what we love about profession.

If You Can Imagine, We’ll Do it For You

Hire Magneto Multi Store DevelopersAfter analyzing and understanding the depth and breadth of online store, our eCommerce developers started building the store from the scratch. We wanted to build an appealing online store equally balanced with scalability and flexibility to grow. Because of its feature and other available resources, Magneto was finalized as platform for development.

Each and every phase of online store development presented many barriers but we successfully cleared every stage of development and finally deployed the project within given time frame and budget. Our goal was to get a professional looking site up and running quickly and that’s what we did.

After facing and clearing many development challenges, we materialized to create one of its kind online store with several features needed for next-gen estore. We worked on frontend, backend, product catalog and other elements to make it more dynamic and intuitive. We integrated social media features so that visitors can like, rate and share products publicly. Here’s a long-list of feature that made it to day light,

  • Multi Store
  • Multi Language
  • Sweettooth Extension For reward Points with slider functionality
  • Extension for VAT Calculation Dnd_correction TVA (No negative VAT Amount)
  • Live Chat
  • Feed merging of shopping flux
  • Gift Certificate
  • Light-Box Functionality
  • Google plus and Facebook “Like” and Twitter button on product page.
  • New items Block on Home page.
  • Advanced Review extension
  • Generating ticket for Support using Helpdesk_ultimate extension
  • Maintain the customer track after they are leave using follow-up email extension
  • Home slider on home page and left column of page
  • Video’s in left column
  • Most searchable products(search terms)
  • Enhanced order filters, search orders by their SKU and name.
  • Add tracking script on order confirmation page.
  • Advanced permissions enables Admin to assign permissions to users.
  • Google Sitemap

Incorporated with all these international features, today our client has an online store up and running efficiently obeying all the industry standards and validations. If you have similar or even complex challenge for Magento online store development, that get in touch with our Magento developers to own specialized solutions.

]]>
http://www.hiremagentodeveloper.com/blog/ecommerce/how-can-store-development-experts-help-your-business.html/feed 7