941-685-8851

‘Ecommerce Shopping Carts’

Magento Left Callout Image

The Magento default left callout image has a link to checkout/cart and alt content of “Our customer service is available 24/7….”

To change this go to app/design/frontend/default/client/layout/catalog.xml.

Find the following block:

<reference name=”left”>
<block type=”core/template” name=”left.permanent.callout” template=”callouts/left_col.phtml”>
<action method=”setImgSrc”><src>images/media/col_left_callout.jpg</src></action>
<action method=”setImgAlt” translate=”alt” module=”catalog”><alt>Our customer service is available 24/7. Call us at (555) 555-0123.</alt></action>
<action method=”setLinkUrl”><url>checkout/cart</url></action>
</block>
</reference>

Change the aforementioned items as needed:

<reference name=”left”>
<block type=”core/template” name=”left.permanent.callout” template=”callouts/left_col.phtml”>
<action method=”setImgSrc”><src>images/media/col_left_callout.jpg</src></action>
<action method=”setImgAlt” translate=”alt” module=”catalog”><alt>Call us at 941-685-8851 or click here to email us.</alt></action>
<action method=”setLinkUrl”><url>contacts</url></action>
</block>
</reference>

Share
 

Magento: remove update notifications from admin

To disable Magento upgrade notifications from the admin, do as follow:

1) Remove from app/design/adminhtml/default/default/layout/main.xml two lines:

<block type="adminhtml/notification_window" name="notification_window" as="notification_window" acl="system/adminnotification/show_toolbar" template="notification/window.phtml" />

and

<block type="adminhtml/notification_toolbar" name="notification_toolbar" as="notification_toolbar" acl="system/adminnotification/show_toolbar" template="notification/toolbar.phtml"></block>

2) Change following code in app/etc/modules/Mage_All.xml

<Mage_AdminNotification>
<active>true</active>
<codePool>core</codePool>
<depends>
<Mage_Core />
</depends>
</Mage_AdminNotification>

into

<Mage_AdminNotification>
<active>false</active>
<codePool>core</codePool>
<depends>
<Mage_Core />
</depends>
</Mage_AdminNotification>
Magento update notifications should now be disabled. Tested in Magento 1.3.2.4
Share
 

Magento Setup Checklist

Magento Commerce is widely accepted as the world’s best shopping cart software. The steps involved in the initial setup of Magento can be elaborate. Here are some common procedures performed when installing and configuring a new Magento ecommerce website: read more…

Share
 

Magento: add sku to cart

On the Magento cart page, to display the product sku along with the product name and details:

edit the pag: app/design/default/yourtheme/template/checkout/cart/item/default.phtml

The following code will add the sku to the cart page. It will also add custom option sku definitions;

<div><em>Product #:</em> <?php if (is_object($this->getChildProduct())):
echo $this->getChildProduct()->getSku();
else:
echo $_item->getSku();
endif; ?>
</div>

Here is a sample of where the code should go:

<?php $_item = $this->getItem()?>
<tr>
<td><a href=”<?php echo $this->getDeleteUrl() ?>”><img src=”<?php echo $this->getSkinUrl(‘images/btn_trash.gif’) ?>” width=”16″ height=”16″ alt=”<?php $this->__(‘Remove item’)?>” /></a></td>
<td><a href=”<?php echo $this->getProductUrl() ?>”><img src=”<?php echo $this->getProductThumbnail()->resize(75); ?>” alt=”<?php echo $this->htmlEscape($this->getProductName()) ?>” width=”75″ /></a></td>
<td>
<h4><a href=”<?php echo $this->getProductUrl() ?>”><?php echo $this->getProductName() ?></a></h4>

<!– Code goes here to display directly under the product name–>

<div><em>Product #:</em> <?php if (is_object($this->getChildProduct())):
echo $this->getChildProduct()->getSku();
else:
echo $_item->getSku();
endif; ?>
</div>
<!– item custom options –>

The product sku will now be displayed on the cart page along with the added products.

Share
 

Magento: remove register from checkout

Regarding the use of accounts and forcing customers to check out as guests, the folowing solution works in 1.3.x.

Edit:  /app/design/frontend/default/detault/layout/checkout.xml

Comment out the reference to the “checkout.onepage.login” addLink under the checkout_onepage_index section.

<!-- <block type="checkout/onepage_login" name="checkout.onepage.login" as="login" template="checkout/onepage/login.phtml"/> -->

Edit:  /app/design/frontend/default/default/template/checkout/onepage.phtml , replace the Script section at the bottom of the page, add after the </ol>.

<input type="hidden" name="checkout_method" id="login:guest" checked="checked" value="guest"/>
<script type="text/javascript">
//<![CDATA[
var accordion = new Accordion('checkoutSteps', '.head', true);
<?php if($this->getActiveStep()): ?>
accordion.openSection('opc-billing');
<?php endif ?>

var checkout = new Checkout(accordion,{
progress: '<?php echo $this->getUrl('checkout/onepage/progress') ?>',
review: '<?php echo $this->getUrl('checkout/onepage/review') ?>',
saveMethod: '<?php echo
$this->getUrl('checkout/onepage/saveMethod') ?>',
failure: '<?php echo $this->getUrl('checkout/cart') ?>'}
);
var cb = $("login:guest");
cb.checked = true;
checkout.setMethod();
//]]>
</script>

That will remove the register section from the checkout accordion.
To remove
Share
 

Migrating Magento to a new server

Overview

Here is an overview of the steps we’ll take to do this:

  1. Make a MySQL dump file of the database
  2. Archive the media and theme directories
  3. Copy the files to the other server
  4. Install a clean version of Magento
  5. Import the dump file to a blank database
  6. Move our copied data to the correct places read more…
Share
 

Web Design in Sarasota for FruitvilleMarket.com

Ecommerce Website Design in Sarasota, Florida

Ecommerce Website Design in Sarasota, Florida

Razworks has launched a new Magento Commerce shopping cart web design for Sarasota, FL based company Fruitville Grove Market. FruitvilleMarket.com is the new ecommerce website and the company had a successful Christmas shopping season. “Today we have a website that we can direct our customers to that we our very pleased with”, states owner Henry Detwiler. “Michael Rassel is a true professional! He delivers more than you pay for”.

Razworks created an attractive front end web design in XHTML and CSS tableless layout scripting, with a web 2.0 style video player that plays the Fruitville Grove Market television commercial video. Entering the website via such a professional looking home page makes a very effective first impression with potential customers. Because the video uses the latest FLV video format it provides the optimal ratio of quality to filesize, and utilizes progressive download, which allows the video to be watched as it downloads.

The ecommerce part of the website can be accessed from any web page in the site. The shopping cart was created using the industry’s latest and greatest ecommerce software, Magento Commerce, which has been tauted by industry professionals as the best shopping cart software available today. It provides a very professional looking, easy to use and fully functional online store. Fruitville Grove Market wanted the ability to accept credit card payment from the website, so they opted to process payment from ecommerce website purchases via PayPal. Because of the zero startup cost PayPal was a preferred option opposed to establishing a merchant account and payment gateway. Michael Rassel configured the Magento Ecommerce website to capture the customers order and shipping information, then directed the customer to PayPal to process payment for the order.

Michael Rassel was also contracted by Fruitville Grove Market to perform various search engine optimizations. By optimizing the text content top keyword phrases, installing a WordPress blog for SEO editorial authoring, and a creating numerous social network accounts to support a link building campaign. Razworks also setup a Google Adwords pay per click a search engine marketing campaign to allow FruitvilleMarket.com to display an ad on the first page of Google search results anytime someone searched for Fruit Gift Baskets or Gift Fruit Baskets.

Michael Rassel is glad that Fruitville Grove Market had such a successful Holiday season, and is proud to have another happy Razworks web design and ecommerce website customer!

Share