Recent content by David-Max

  1. David-Max

    Ecwid pages slow to appear in Google

    I wonder why you don't use one complete platforms for ecommerce and blogs like : shopify, bigcommerce, 3dcart? Because I see very few people use ecwid.
  2. David-Max

    Which Platform for Website

    I would recommend using WooCommerce or Shopify. Shopify powers over 600,000 businesses, while WooCommerce claims to be the web's most popular ecommerce platform. Shopify is suitable for the beginners, and WooCommerce is more flexible and less limited. Your decision is based on the condition and...
  3. David-Max

    Best eBay and WooCommerce sync software

    Hello. If you have a WooCommerce store, eBay Sync allows you to list the products already in your WooCommerce store on eBay. You can then fulfill any orders received from eBay as if they were bought from your WooCommerce store. eBay Sync will integrate your WooCommerce store with eBay giving you...
  4. David-Max

    Displaying Customer Reviews From Other Sources

    There are many Plugins that help you display Facebook and Google reviews on your Wordpress site Eg: Facebook Reviews plugin, WP Google Review Slider ...
  5. David-Max

    Post comments are gone.

    Can you check if you have comments enabled from Settings -> Allow Comments Can you check if comments are enabled on individual blog posts
  6. David-Max

    Switching off a Magento site

    You only need to cancel the server hosting service and don't renew the domain name, backup the database & download image folder if need
  7. David-Max

    Magento 1 to Magento 2 Migration Guide

    If you don't have a technical background, manual migration is never a good idea. And even if you do, think of the time it’ll take you to migrate database by hand. I'd recommend you to use a service named Next-Cart for migration purposes. It automated migrate ecommerce data (categories, products...
  8. David-Max

    M2 migration

    Free tools will limit data migration, no have support in case the migration errors and don't migrate custom data. You should use the shopping cart data migration services available in the market for save money and time (eg. next-cart.com), just from $49 the your data will be moved fully and...
  9. David-Max

    How migrate from M1 to M2

    Sorry ;) Because now, the merchants often use the migration services available in the market to simplify the task. Themes migration, Extension migration, Ecommerce data migration ... Eg. Use cart migration service provided by next-cart allows migrate: Categories, Products, Customers, Orders...
  10. David-Max

    How To Create Magento 2 Attributes?

    On the Admin panel, click Stores. In the Attributes section, select Product Click Add New Attribute button In the Attribute Properties section, do the following In the Default Label, enter a default label to indentify the attribute In the Catalog Input Type for Store Owner field, select the...
  11. David-Max

    How migrate from M1 to M2

    This is really an Thread not useful to anyone. Is this considered a spam thread?
  12. David-Max

    How to enable SSL connection in Opencart?

    Ask your web host to install an SSL certificate for you. Turn on SSL in System > Settings > Server. Check your URLs in the /config.php and /admin/config.php files, right at the top of those files. For the ones starting with "HTTPS_", make sure they are https:// URLs.
  13. David-Max

    SEO Plugin

    That's my personal opinion, I have used all there plugins and with me Yoast SEO win
  14. David-Max

    Move To Opencart?

    I agree with EddyRock. next-cart is a great service about shopping cart migration
  15. David-Max

    Wordpress Woo Login Redirect coding

    Adding a simple function to the functions.php file: add_filter('woocommerce_login_redirect','wc_login_redirect'); functionwc_login_redirect($redirect_to){ $redirect_to = 'your_url/shop'; return $redirect_to; } If you want to set the redirect URL to your homepage use this code...