<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>multimixer &#187; addon</title>
	<atom:link href="http://multimixer.gr/tag/addon/feed/" rel="self" type="application/rss+xml" />
	<link>http://multimixer.gr</link>
	<description>lets talk about osCommerce</description>
	<lastBuildDate>Fri, 19 Nov 2021 08:23:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>State selector – the easy way</title>
		<link>http://multimixer.gr/02/12/2015/state-selector-the-easy-way/</link>
		<comments>http://multimixer.gr/02/12/2015/state-selector-the-easy-way/#comments</comments>
		<pubDate>Wed, 02 Dec 2015 12:28:04 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1496</guid>
		<description><![CDATA[This extension is changing the frustrating country / state selection behaviour of osCommerce and improves the customer experience a lot. The states dropdown update in real time as a country is selected. No more error messages and form re-submissions]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We all know the very annoying behaviour of osCommerce regarding country &#8211; state selection on the create account page:</p>
<p style="text-align: justify;">You type in a state, select a country, submit the form, and return to the same page with an error message that the state entry was not correct. You can now select a state and proceed.</p>
<p style="text-align: justify;">Practically this mean that each customer who create an account on the store is presented that error message and has to submit the form twice, each customer has to go through the frustrating experience that she/he did something wrong, right at the beginning of the checkout process. Not very motivating I think</p>
<p style="text-align: justify;">This happens on every page where customers can enter an address</p>
<ul style="text-align: justify;">
<li>create_account.php</li>
<li>checkout_payment_address.php</li>
<li>checkout_shipping_address.php</li>
<li>address_book_process.php</li>
</ul>
<p style="text-align: justify;">It only work correctly in case the selected country has no zones. The majority of the stores do use zones of course</p>
<p style="text-align: justify;">The reason for this behaviour is build into the system from day 1, the way the system work is as follows, in simple terms:</p>
<blockquote>
<div id="_mcePaste">if there is a country selected, check if there are zones for that country.</div>
<div id="_mcePaste">If the country has zones, display the drop down of zones/states, if no zones, display a text input field.</div>
<div id="_mcePaste">If no country is selected, display a text input field</div>
</blockquote>
<p style="text-align: justify;">Now, the system know if there is a country selected only after the form is submitted. It &#8220;decide&#8221; to display a drop down of states or not only after the form is submitted</p>
<p style="text-align: justify;">You are lucky to get an account created in 1 step and without an error message only if the country you selected has no zones or if you typed in the zone name exactly as set in admin, not very likely to happen.</p>
<p style="text-align: justify;">There are of course some solutions available as add ons, they all modify quite many files and/or don&#8217;t work well.</p>
<p style="text-align: justify;">I created a completely self contained system, with no code changes at all, that produce following behaviour</p>
<p style="text-align: justify;">
<blockquote>
<div id="_mcePaste">1)  if no country is selected, a text appear at the state field: “select country first”</div>
<div id="_mcePaste">2) If a country get selected, the text disappear and automatically is replaced by:</div>
<div id="_mcePaste">2.1) A states dropdown, in case the country has zones, people have to choose from there</div>
<div id="_mcePaste">2.2) A text input field in case the country has no zones, people can enter any text</div>
</blockquote>
<p style="text-align: justify;">If you change the country selection, the sate field update automatically, showing either a updated drop down or a text input field</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/12/no_country.jpg"><img class="aligncenter size-large wp-image-1501" title="no country selected" src="http://multimixer.gr/wp-content/uploads/2015/12/no_country-540x297.jpg" alt="" width="540" height="297" /></a></p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/12/country_zones.jpg"><img class="aligncenter size-large wp-image-1502" title="country with zones" src="http://multimixer.gr/wp-content/uploads/2015/12/country_zones-540x297.jpg" alt="" width="540" height="297" /></a></p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/12/country_no_zones.jpg"><img class="aligncenter size-large wp-image-1503" title="country without zones" src="http://multimixer.gr/wp-content/uploads/2015/12/country_no_zones-540x297.jpg" alt="" width="540" height="297" /></a></p>
<p style="text-align: justify;">The critical and important part is, that the state selection drop down appear <span style="text-decoration: underline;"><strong>before</strong></span> the form is submitted letting customers do the correct selection on the drop down</p>
<p style="text-align: justify;">In admin, all you have to do is, install the state selector module and select what pages you want to use it on.</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/12/admin_module.jpg"><img class="aligncenter size-large wp-image-1505" title="admin_module" src="http://multimixer.gr/wp-content/uploads/2015/12/admin_module-540x543.jpg" alt="" width="540" height="543" /></a></p>
<p style="text-align: justify;">The page selection was added in case you are using other, alternative checkout method, like for example &#8220;<a title="Guest Checkout osCommerce" href="http://multimixer.gr/12/09/2015/purchase-without-account-the-easy-way/">Purchase without account &#8211; the easy way</a>&#8220;</p>
<p style="text-align: justify;">The State Selector extension does not require any file changes. Installation consist of uploading 3 files to the server (+ one more or each additional language you use) and installing the module in admin</p>
<p style="text-align: justify;">Get in touch if you want to have this on your store</p>
<p style="text-align: justify;">
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/02/12/2015/state-selector-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Product Notifications – get the overview</title>
		<link>http://multimixer.gr/16/11/2015/product-notifications-get-the-overview/</link>
		<comments>http://multimixer.gr/16/11/2015/product-notifications-get-the-overview/#comments</comments>
		<pubDate>Mon, 16 Nov 2015 17:43:38 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1473</guid>
		<description><![CDATA[Get the overview about how many and who of your customers are interested in what products. Preview the data in admin or export into a cvs file]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You all know about the product notifications system in osCommerce: People can click, either on the product information page or after successful checkout and register their interest in a particular product. The store administrator can then send a newsletter to that customers using the &#8211; complicated &#8211; newsletter system of osCommerce.</p>
<p style="text-align: justify;">That&#8217;s all fine, my point is that the store owner never get an overview about how many customers and who concretely registered an interest in what products.</p>
<p style="text-align: justify;">Wouldn&#8217;t it be nice to know that e.g. there are 300 people interested in lemons and only 5 in melons? You know immediately what the important product is.</p>
<p style="text-align: justify;">Wouldn&#8217;t it be nice to be able to export a csv file with the customer data, that you can either import into a modern newsletter program (like mailchimp) or work with the list offline?</p>
<p style="text-align: justify;">That is exactly what this extension is doing, lets see the details</p>
<p style="text-align: justify;">You&#8217;ll get a new page in admin (under &#8220;reports&#8221;) showing all products that have a notification entry</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/11/notifications_report_page.jpg"><img class="aligncenter size-large wp-image-1474" title="notifications_report_page" src="http://multimixer.gr/wp-content/uploads/2015/11/notifications_report_page-540x295.jpg" alt="" width="540" height="295" /></a></p>
<p>The list is showing</p>
<ul>
<li>product ID</li>
<li>product name</li>
<li>the number of notifications registered</li>
<li>the current product quantity</li>
<li>the product status</li>
</ul>
<p style="text-align: justify;">You can sort the list by any of that labels ascending or descending</p>
<p style="text-align: justify;">You can preview the customers who registered a notification for a product by clicking the button &#8220;view&#8221; in column &#8220;view customers&#8221;</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/11/preview_customers_admin.jpg"><img class="aligncenter size-large wp-image-1477" title="preview_customers_admin" src="http://multimixer.gr/wp-content/uploads/2015/11/preview_customers_admin-540x295.jpg" alt="" width="540" height="295" /></a></p>
<p style="text-align: justify;">You can preview the product in question in both, the store side and the admin side by clicking the buttons &#8220;view in store&#8221; or &#8220;view in admin&#8221; in column &#8220;view product&#8221;. So you can quickly change something without leaving the page</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/11/preview_product_admin.jpg"><img class="aligncenter size-large wp-image-1476" title="preview_product_admin" src="http://multimixer.gr/wp-content/uploads/2015/11/preview_product_admin-540x295.jpg" alt="" width="540" height="295" /></a></p>
<p style="text-align: justify;">You can expire a csv file with customer data either of the complete list (button &#8220;export complete list&#8221; on top) or of a list related to a particular product (button &#8220;export&#8221; in column &#8220;export customers&#8221;)</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/11/export_list.jpg"><img class="aligncenter size-large wp-image-1478" title="export_list" src="http://multimixer.gr/wp-content/uploads/2015/11/export_list-540x296.jpg" alt="" width="540" height="296" /></a>You can work with that list local in excel or a similar program, or import it to any online or offline program that accept csv files as a import source, like for example mailchimp for newsletters. That way you can easily create targeted newsletters</p>
<p style="text-align: justify;">Finally you can reset either the complete list (button &#8220;clear complete list&#8221; on top) or you can reset the entries for a particular product (button &#8220;delete&#8221; in column &#8220;delete notifications&#8221;)</p>
<p style="text-align: justify;">The extension is compatible with any osCommerce version of series 2.3.3.3 and upwards, including of course the latest osCommerce version 2.3.4</p>
<p style="text-align: justify;">There are no core file modifications necessary, you just have to upload some files to the server, that&#8217;s all</p>
<p style="text-align: justify;">Get in touch if you think that is something useful for your store</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/16/11/2015/product-notifications-get-the-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export orders per product – the easy way</title>
		<link>http://multimixer.gr/23/10/2015/export-orders-per-product-the-easy-way/</link>
		<comments>http://multimixer.gr/23/10/2015/export-orders-per-product-the-easy-way/#comments</comments>
		<pubDate>Fri, 23 Oct 2015 11:19:17 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1441</guid>
		<description><![CDATA[With this modification you'll be able to see and/or export a list of all customers who ordered a product from your store, including default address, delivery address and shipping address. The list also include payment method, order date and order status.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Do you need a list of all customers who ordered a particular product? Here is a simple modification and easy solution to get this.</p>
<p style="text-align: justify;">Why would you need such a list? There ae many reasons for, some examples:</p>
<p style="text-align: justify;">1) You sell seasonal items and need the list to arrange shipping</p>
<p style="text-align: justify;">2) You run out of stock for an item and need to contact all customers who didn&#8217;t receive the order yet</p>
<p style="text-align: justify;">3) There is an upgrade/newer version for an item available and you want to inform all people who purchased that item</p>
<p style="text-align: justify;">I&#8217;m sure you&#8217;ll find more reasons</p>
<p style="text-align: justify;">With this modification you&#8217;ll be able to see and/or export a list of all customers who ordered a product from your store, including default address, delivery address and shipping address in case they are different to the default address. The list also include payment method, order date and order status.</p>
<p style="text-align: justify;">You&#8217;ll get 2 buttons on the product listing page in admin, when you have a product selected</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_buttons.jpg"><img class="aligncenter size-large wp-image-1442" title="orders per product buttons" src="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_buttons-540x295.jpg" alt="" width="540" height="295" /></a></p>
<p>Pressing the first one &#8211; &#8220;Show Orders&#8221; &#8211; will open a pop up window showing all orders for hat product</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_popup.jpg"><img class="aligncenter size-large wp-image-1443" title="orders per product popup" src="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_popup-540x295.jpg" alt="" width="540" height="295" /></a></p>
<p>Pressing the second one &#8211; &#8220;Export Orders&#8221; will let you download a csv file</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_export.jpg"><img class="aligncenter size-large wp-image-1445" title="orders per product export" src="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_export-540x306.jpg" alt="" width="540" height="306" /></a>The cvs fil contain all order elated data. You can filter that data as you like using a program like Excel, print the list ut, save it on your computer, import it to other applications etc</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_sheet.jpg"><img class="aligncenter size-large wp-image-1446" title="orders per product sheet" src="http://multimixer.gr/wp-content/uploads/2015/10/orders_per_product_sheet-540x301.jpg" alt="" width="540" height="301" /></a></p>
<p style="text-align: justify;">The installation is extremely simple and will not affect any other modifications you may have, there is just a single line of code to add to one file</p>
<p style="text-align: justify;">Get in touch if ou think this is something useful for your store</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/23/10/2015/export-orders-per-product-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Resettable Bestsellers</title>
		<link>http://multimixer.gr/10/10/2015/resettable-bestsellers/</link>
		<comments>http://multimixer.gr/10/10/2015/resettable-bestsellers/#comments</comments>
		<pubDate>Sat, 10 Oct 2015 10:37:48 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1431</guid>
		<description><![CDATA[ Old products are on top of your bestsellers list, no chance for bestselling new products to appear. The older your store, the bigger the problem. This extension is a way to reset the bestsellers list and show recent bestsellers to your store visitors. No core code changes]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Imagine you have a store for say 5 years, tacking each product you sell in the regular default osCommerce way. Some of the products sell better, some others not, so you have a bestsellers list that you show to people in the bestsellers box. So far so good.</p>
<p style="text-align: justify;">Now, you have 10 newer products that you are selling since 3 months, and they are  selling really good. You want to have them in your bestsellers box but no chance. The old products still show, no sign of your new best selling items.</p>
<p style="text-align: justify;">Wonder why? Easy to explain:</p>
<p style="text-align: justify;">Say that the 10 older top products have sales from 1000 items and up. Your new product is selling 10 items per day. You need 100 days at least to get it into the top 10 of your bestsellers list. After 100 days it may not be relevant any more.</p>
<p style="text-align: justify;">There is also no use for all time bestsellers if you sell seasonal items: You don&#8217;t want to show Christmas items on Easter just because the sold more during Christmas period. You don&#8217;t want to show bikinis in November if you sell clothing</p>
<p style="text-align: justify;">Same if you sell items that are expiring in some way, for example technological items: It may be that you sold more iPhone 4 than iPhone 6 all over, but you don&#8217;t want to show that old iPhone 4 any longer in your bestsellers list just because you sold more of it once upon a time</p>
<p style="text-align: justify;">You got the meaning. Old products are on top, no chance for bestselling new products to appear in your list.. The older your store, the bigger the problem.</p>
<p style="text-align: justify;">What you need is a way to reset your bestsellers list from time to time and show recent bestsellers to your visitors.</p>
<p style="text-align: justify;">This modification here is doing exactly this: It is a way to reset the bestsellers list,  leaving the default osCommerce data tracked in place.</p>
<p style="text-align: justify;">Using the addon you&#8217;ll get a new page in admin under tab &#8220;reports&#8221;, showing your bestsellers</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/10/bestsellers_page.jpg"><img class="aligncenter size-large wp-image-1433" title="Resettable bestsellers page" src="http://multimixer.gr/wp-content/uploads/2015/10/bestsellers_page-540x301.jpg" alt="" width="540" height="301" /></a></p>
<p style="text-align: justify;">You can reset the list anytime using the button on top, the message on the left is showing you the last time of reset</p>
<p style="text-align: justify;">For each product listed, there is a button &#8220;edit&#8221; so you can go directly and edit it in admin. You can also preview the product directly in admin if you want to check how it look on your front side</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/10/bestsellers_preview.jpg"><img class="aligncenter size-large wp-image-1434" title="Resettable bestsellers product preview" src="http://multimixer.gr/wp-content/uploads/2015/10/bestsellers_preview-540x301.jpg" alt="" width="540" height="301" /></a>On the front page, your bestsellers box is showing the new list. In case you use <a href="http://minitemplatesystem.com" target="_blank">mini template system</a>, you can show the results of the new list in any of the various modules that display bestsellers</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/10/bestsellers_box.jpg"><img class="aligncenter size-large wp-image-1435" title="Resettable bestsellers box" src="http://multimixer.gr/wp-content/uploads/2015/10/bestsellers_box-540x300.jpg" alt="" width="540" height="300" /></a></p>
<p style="text-align: justify;">The modification is not touching any core code file and is made for osCommerce 2.3.4</p>
<p style="text-align: justify;">Installation of the modification is extremely simple: Upload the files to your server and enable 2 modules in admin</p>
<p style="text-align: justify;">Feel free to get in touch if you are interested in this extension, I think it&#8217;s useful and make a good sense</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/10/10/2015/resettable-bestsellers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Purchase Without Account – the easy way</title>
		<link>http://multimixer.gr/12/09/2015/purchase-without-account-the-easy-way/</link>
		<comments>http://multimixer.gr/12/09/2015/purchase-without-account-the-easy-way/#comments</comments>
		<pubDate>Sat, 12 Sep 2015 11:12:55 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1419</guid>
		<description><![CDATA[You want people to be able to checkout on your store without having to create an account. This is a system that present an alternative checkout option to the store customers. Your customers can use that option and checkout without creating an account.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I know that there are a couple of &#8220;purchase without account&#8221; (PWA) add ons available for osCommerce. Unfortunately they all modify a lot of core code, without any reason in my opinion.</p>
<p style="text-align: justify;">Things are simple: You want people to be able to checkout on your store without having to create an account. You want to store the order but you don&#8217;t want to store the customer data. All you want to know about the customer is the name and address so you know where to ship to. You don&#8217;t want your customers to be forced to create an account.</p>
<p style="text-align: justify;">What I did is, to create a system that present an alternative checkout option to the store customers, parallel to the existing login and create account options that exist by default. Your customers can use that option and checkout without creating an account.</p>
<p style="text-align: justify;">Best of all: no core file modifications at all. You don&#8217;t have to modify any file.</p>
<p>On the login page, there is one more checkout option:</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/09/login_page.jpg"><img class="aligncenter size-large wp-image-1420" title="purchase without account login page" src="http://multimixer.gr/wp-content/uploads/2015/09/login_page-540x356.jpg" alt="" width="540" height="356" /></a></p>
<p style="text-align: justify;">If you want, you can disable all other options in admin, that way you&#8217;ll have only a checkout without account. You can also leave the login/create account as an option, this is up to you. You can name the PWA checkout option as you like, in this example it is named &#8220;simple checkout&#8221;</p>
<p style="text-align: justify;">Using the PWA option, people arrive to a special page, where they have to enter their name, address and email. That is necessary, otherwise you wouldn&#8217;t know where to ship to</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/09/checkout_page.jpg"><img class="aligncenter size-large wp-image-1422" title="purchase without account checkout page" src="http://multimixer.gr/wp-content/uploads/2015/09/checkout_page-540x338.jpg" alt="" width="540" height="338" /></a></p>
<p style="text-align: justify;">The rest of the checkout process is same as per default: People select shipping, then payment and finally conform the order.</p>
<p style="text-align: justify;">In your admin, you can see the order with all products and the shipping address. No customer is registered</p>
<p style="text-align: justify;"><strong>How to install:</strong> Since there are no files modified, installation is extremely simple, only requirement is, to use the latest osCommerce version, 2.3.4</p>
<p style="text-align: justify;">1) Upload the files to your server</p>
<p style="text-align: justify;">2) install 2 modules via admin</p>
<p style="text-align: justify;">Thats all, the system already work perfectly on a number of websites</p>
<p style="text-align: justify;">If you like this modification and want to use it on your website, please feel free to get in touch</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/12/09/2015/purchase-without-account-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Order status text</title>
		<link>http://multimixer.gr/25/06/2015/order-status-text/</link>
		<comments>http://multimixer.gr/25/06/2015/order-status-text/#comments</comments>
		<pubDate>Thu, 25 Jun 2015 11:18:59 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1484</guid>
		<description><![CDATA[Did you got tired of typing in the same text, over and over again, each time you are updating the order status of an order? If yes, then here is a nice solution for you: automated order status text]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Did you got tired of typing in the same text, over and over again, each time you are updating the order status of an order?</p>
<p style="text-align: justify;">If yes, then here is a nice solution for you: automated order status text. Each time you update the status of an order, the system will add automatically a predefined text to the &#8220;comments&#8221; field of the order</p>
<p style="text-align: justify;">Lets see the details</p>
<p style="text-align: justify;">On the order statuses page in admin, you&#8217;ll get a new text field where you can add a standard text for each status and each language you use in your store</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/06/add_order_status_text.jpg"><img class="aligncenter size-large wp-image-1486" title="add_order_status_text" src="http://multimixer.gr/wp-content/uploads/2015/06/add_order_status_text-540x298.jpg" alt="" width="540" height="298" /></a></p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/06/add_order_status_text2.jpg"><img class="aligncenter size-large wp-image-1487" title="add_order_status_text2" src="http://multimixer.gr/wp-content/uploads/2015/06/add_order_status_text2-540x298.jpg" alt="" width="540" height="298" /></a></p>
<p style="text-align: justify;">When updating the order status for a given order, the standard text is added automatically to the order comments field</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/06/order_status_text_pending.jpg"><img class="aligncenter size-large wp-image-1488" title="order_status_text_pending" src="http://multimixer.gr/wp-content/uploads/2015/06/order_status_text_pending-540x323.jpg" alt="" width="540" height="323" /></a><a href="http://multimixer.gr/wp-content/uploads/2015/06/order_status_text_processing.jpg"><img class="aligncenter size-large wp-image-1489" title="order_status_text_processing" src="http://multimixer.gr/wp-content/uploads/2015/06/order_status_text_processing-540x323.jpg" alt="" width="540" height="323" /></a></p>
<p style="text-align: justify;">You can of course edit that text and add e.g. a tracking number or some personal message etc</p>
<p style="text-align: justify;">The modification require some small code additions to 2 core osCommerce files in admin, there are no major changes that would affect any other functionality you have in your store.</p>
<p style="text-align: justify;">The modification work also very well with the addon &#8220;order editor&#8221; in case you have that</p>
<p style="text-align: justify;">Let me know if you are interested in this modification, I think its a very handy little modification that will save you a lot of time</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/25/06/2015/order-status-text/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Multi Link Products – the easy way</title>
		<link>http://multimixer.gr/24/05/2015/multi-link-products-the-easy-way/</link>
		<comments>http://multimixer.gr/24/05/2015/multi-link-products-the-easy-way/#comments</comments>
		<pubDate>Sun, 24 May 2015 10:12:02 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1400</guid>
		<description><![CDATA[Copy each product to any number of categories in one step directly from the product listing or product editing page in admin]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">There are several add ons available, letting you copy multiple products to a category in one step.</p>
<p style="text-align: justify;">I&#8217;ve been in the need of exactly the opposite: Copy a product to multiple categories in one step, and that is what this little modification does.</p>
<p style="text-align: justify;">Day you have a product that you want to double or triple place and have it listed in several categories. Only way to do it now is, to repeat the &#8220;copy to&#8221; action each time. This can be time consuming in case you have many products that you want to list within multiple categories. Even more time consuming it is, to remove any additional listings of that product</p>
<p style="text-align: justify;">With this modification, you can copy each product to any number of categories in one step directly from the product listing or product editing page in admin</p>
<p style="text-align: justify;">You&#8217;ll get a new button on the product listing page in admin<br />
<a href="http://multimixer.gr/wp-content/uploads/2015/05/button_listing.jpeg"><img class="aligncenter size-large wp-image-1401" title="multilink button on product listing page" src="http://multimixer.gr/wp-content/uploads/2015/05/button_listing-540x292.jpg" alt="" width="540" height="292" /></a>and of course on the product editing page</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/05/button_edit.jpeg"><img class="aligncenter size-large wp-image-1402" title="multi link button on product editing page" src="http://multimixer.gr/wp-content/uploads/2015/05/button_edit-540x295.jpg" alt="" width="540" height="295" /></a></p>
<p>Clicking the button, you&#8217;ll get a nice pop up, showing all available categories.</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2015/05/multilink_pop_up.jpeg"><img class="aligncenter size-large wp-image-1404" title="multilink pop up" src="http://multimixer.gr/wp-content/uploads/2015/05/multilink_pop_up-540x292.jpg" alt="" width="540" height="292" /></a>You can now easily select the categories you want your product to be listed in. You can add or remove the categories you want your product to be listed in any time.</p>
<p style="text-align: justify;">Installation is very easy, there are just 2 simple additions to a single file.</p>
<p style="background-color: #333333; color: #fafafa; padding: 20px; text-align: center; background-position: initial initial; background-repeat: initial initial;">This extension is made exclusively for <a title="Template System for osCommerce" href="http://minitemplatesystem.com" target="_blank">Mini Template System</a> users.</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/24/05/2015/multi-link-products-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO friendly image names</title>
		<link>http://multimixer.gr/24/05/2015/seo-friendly-image-names/</link>
		<comments>http://multimixer.gr/24/05/2015/seo-friendly-image-names/#comments</comments>
		<pubDate>Sun, 24 May 2015 08:38:56 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1381</guid>
		<description><![CDATA[Not only that your lemon product will always show our lemon image and not one day a melon instead, the image filename will also be "lemon", a meaningful SEO friendly filename. This little modification ensure unique SEO friendly filenames for all your product images ]]></description>
			<content:encoded><![CDATA[<p>This post is an update to my older post about <a title="rename product images during upload" href="http://multimixer.gr/16/10/2014/rename-product-images-during-upload/">renaming product images during upload</a>. I explained there why it is important to have unique image names in a special folder on the server.</p>
<p>The image naming format was</p>
<blockquote>
<p style="text-align: center;">img_[products_id]_[image_id].extension</p>
</blockquote>
<p>The image names for a product with ID &#8220;1302&#8243; would look like this</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2014/10/rename_images.jpg"><img class="aligncenter size-large wp-image-1344" title="rename images" src="http://multimixer.gr/wp-content/uploads/2014/10/rename_images-540x115.jpg" alt="" width="540" height="115" /></a></p>
<p>Now, while we have what we need, unique image names, related to the product in a special folder on the server, the truth is, that they are not very meaningful and not SEO friendly</p>
<p>So, I decided to update the modification, you can now add to the image name any or all of the following parameters, in any order you want</p>
<ul>
<li>products name</li>
<li>products model</li>
<li>products category</li>
<li>manufacturer name</li>
</ul>
<p>For example, the image name could be</p>
<blockquote>
<p style="text-align: center;">[products_name]_[products_id]_[image_id].extension</p>
<p style="text-align: center;">or</p>
<p style="text-align: center;">[manufacturer_name]_[products_name]_[products_id]_[image_id].extension</p>
<p style="text-align: center;">or</p>
<p style="text-align: center;">[products_category]_[products_model]_[products_id]_[image_id].extension</p>
</blockquote>
<p>For example, if we use manufacturer name and products name as parameters, the image names would be like this for a product with ID 34, of manufacturer &#8220;Samsung&#8221; and name &#8220;Galaxy&#8221;:</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/05/rename_images_v2.jpg"><img class="aligncenter size-large wp-image-1388" title="SEO friendly image names" src="http://multimixer.gr/wp-content/uploads/2015/05/rename_images_v2-540x105.jpg" alt="" width="540" height="105" /></a></p>
<p>It is up to you what parameters you want to use and in what order you want to add them to the filename. Any parameters are cleaned up of course to ensure valid filenames. In case you have more than 1 languages installed on your store, then the entries of the default language will be used.</p>
<p>The installation of the modification is still very easy, there are 4 clean additions to do to a single file, the modification will work on any version of the 2.3 series (from 2.3.1 up to 2.3.4)</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/24/05/2015/seo-friendly-image-names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warehouse locations</title>
		<link>http://multimixer.gr/19/02/2015/warehouse-locations/</link>
		<comments>http://multimixer.gr/19/02/2015/warehouse-locations/#comments</comments>
		<pubDate>Thu, 19 Feb 2015 14:05:52 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1368</guid>
		<description><![CDATA[This is a simple modification that will let you add a warehouse location to each of your products, so you can easily find it when packing an order]]></description>
			<content:encoded><![CDATA[<p>This is a simple modification that will let you add a warehouse location to each of your products, so you can easily find it when packing an order</p>
<p>The modification will add a new page to your admin, where you can see and edit your warehouse locations</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/02/overview_locations.png"><img class="aligncenter size-large wp-image-1370" title="Warehouse locations overview" src="http://multimixer.gr/wp-content/uploads/2015/02/overview_locations-540x295.png" alt="" width="540" height="295" /></a>You can add a name and a short description to each location</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/02/add_locations.png"><img class="aligncenter size-large wp-image-1371" title="add and edit warehouse locations" src="http://multimixer.gr/wp-content/uploads/2015/02/add_locations-540x295.png" alt="" width="540" height="295" /></a></p>
<p>You can simply add complete categories to locations</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/02/categories_to_locations.png"><img class="aligncenter size-large wp-image-1372" title="add categories to categories to locations" src="http://multimixer.gr/wp-content/uploads/2015/02/categories_to_locations-540x295.png" alt="" width="540" height="295" /></a></p>
<p>And you can add individual products to locations on the product editing page in admin</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/02/product_to_locations.jpg"><img class="aligncenter size-large wp-image-1373" title="add products to warehouse locations" src="http://multimixer.gr/wp-content/uploads/2015/02/product_to_locations-540x298.jpg" alt="" width="540" height="298" /></a></p>
<p>Once a order is done, you can see the warehouse location information on the order details page in admin.</p>
<p><a href="http://multimixer.gr/wp-content/uploads/2015/02/order_location.jpg"><img class="aligncenter size-large wp-image-1374" title="Warehouse location on orders details page" src="http://multimixer.gr/wp-content/uploads/2015/02/order_location-540x128.jpg" alt="" width="540" height="128" /></a></p>
<p>Please get in touch if you are interested in this modification</p>
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/19/02/2015/warehouse-locations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Address book manager</title>
		<link>http://multimixer.gr/18/10/2014/address-book-manager/</link>
		<comments>http://multimixer.gr/18/10/2014/address-book-manager/#comments</comments>
		<pubDate>Sat, 18 Oct 2014 11:14:44 +0000</pubDate>
		<dc:creator>multimixer</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://multimixer.gr/?p=1354</guid>
		<description><![CDATA[There is no way for the store administrator to edit any of the additional addresses that customers enter. This modification that will let you see and edit all of your customers additional addresses in your osCommerce administration panel]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We all know that customers can create additional addresses on a osCommerce store, either by adding a new shipping address during checkout or over their account settings.</p>
<p style="text-align: justify;">This is nice and fine</p>
<p style="text-align: justify;">The point is, that there is no way for the store owner to edit any of that additional addresses in the administration panel. The store administrator can only edit the primary customers address by editing a customer. All additional addresses remain hidden for the store administrator, who is not even aware of any additional addresses</p>
<p style="text-align: justify;">This doesn&#8217;t sound right for me, so, I created a modification that will let you see and edit all of your customers additional addresses</p>
<p style="text-align: justify;">The modification add one more button to the right hand area when a customer is selected</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2014/10/address_manager1.jpg"><img class="aligncenter size-large wp-image-1357" title="address manager additional button" src="http://multimixer.gr/wp-content/uploads/2014/10/address_manager1-540x253.jpg" alt="" width="540" height="253" /></a>Clicking the button you get a list of all the addresses that this customer has added, the primary address and all other additional addresses</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2014/10/address_manager2.jpg"><img class="aligncenter size-large wp-image-1358" title="address manager overview" src="http://multimixer.gr/wp-content/uploads/2014/10/address_manager2-540x295.jpg" alt="" width="540" height="295" /></a>You can see that he primary address is marked as primary, you can now click on edit to edit any address you want, or you can delete it. The primary address this is the only one that you can&#8217;t delete &#8211; you need to delete the customer in this case.</p>
<p style="text-align: justify;">Clicking on &#8220;edit&#8221; you get all address details that you can edit as you like</p>
<p style="text-align: justify;"><a href="http://multimixer.gr/wp-content/uploads/2014/10/address_manager3.jpg"><img class="aligncenter size-large wp-image-1359" title="address manager details page" src="http://multimixer.gr/wp-content/uploads/2014/10/address_manager3-540x449.jpg" alt="" width="540" height="449" /></a>The basic customer details, such as email etc, are not part of the &#8220;address book&#8221;, so they are not editable via the address manager, you can fit them as usual over the customers details page</p>
<p style="text-align: justify;">What do you think of this modification? If you want to have it in your store, feel free to get in touch. Installation is easy and won&#8217;t affect your core code, there is only a single core file to edit.</p>
<p style="text-align: justify;"><span style="color: #c0c0c0;"><em>The nice address book image used on the frontage was found <a href="http://www.duitang.com/people/mblog/19551966/detail/" target="_blank">here</a></em></span></p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://multimixer.gr/18/10/2014/address-book-manager/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
