Magento Development

Slide Image Gallery


We are pleased to introduce the Slide Image Gallery for Magento, a useful extension that allows you to create own Galleries with Images in your Magento store.
This extension is easy to use, easy to install, and have all functions that should be included in a Photogallery (see feature list below).
Admin:

  • Manage Galleries(image categories) add, edit, delete, activate, deactivate;
  • Manage Images add, edit, delete, activate, deactivate;
  • Each Image could have Description;
  • Each Gallery could have own Meta Tags and Meta Description or displays deafult(SEO);
  • Each Gallery could have description;
  • Ability assign Image to more than one Gallery;
  • Ability sort Image into Gallery(useing Drag-and-Drop);
  • Ability use predefined themes, and create own theme through Wio Gallery Configuration;


Frontend:

  • Easy integrated with any theme;
  • Galleries Page, displays all created and active Galleries;
  • Gallery view Page;
  • View Images as Grid or as Gallery view(with ability list images, next previos icon);
  • Gallery View have thumb of images, with ability configure theirs quantity;
  • Slideshow for Gallery View;

Tags: , , ,

Saturday, October 1st, 2011 Magento Development No Comments

Integration Gsearch Module into WIO Forum Extension.

Integration Gsearch Module into WIO Forum Extension.

Integration Gsearch Module into WIO Forum Extension(also could be done for Advanced Version);

Buy Our Extension!

1. Create Custom Search at google.com/cse, as described in post “Google Custom search Engine Integration Into Magento store.“,
Write in field “Sites to search” your url like http://www.yoursite.com/forum/ ;

2.Find file -> app/design/frontend/default/default/templates/forum/top/search.phtml

Put there code:

<?php $action_url = Mage::getUrl(‘gsearch’); ?>
<form action=”<?php echo $action_url; ?>” method=”get”>
<table id=”table_search_forum” >
<tr>
<td>
<input id=”search_forum_input” type=”text” onblur=”restoreDefaultSF(this ,this.value, ‘<?php echo $this->getDefaultValue() ?>’)” onfocus=”eraseSearchBlockSF(this ,this.value, ‘<?php echo $this->getDefaultValue() ?>’)” name=”q” value=”<?php echo $this->getSearchValue(); ?>” />
</td>
<td>
<button type=”submit” title=”<?php echo $this->getSubmitButtonTitle(); ?>” >
<nobr><?php echo $this->getSubmitButtonTitle(); ?></nobr>
</button>
</td>
<?php if( $this->haveSearchValue() ):?>
<td>
<button type=”button” title=”<?php echo $this->__(‘Search Forum’); ?>” onclick=”document.location.href=’<?php echo $this->getResetSearchUrl() ?>’”>
<nobr><?php echo $this->__(‘Reset Search’); ?></nobr>
</button>
</td>
<?php endif;?>
</tr>
</table>
</form>

Visit Our Demo

Tags: , ,

Tuesday, July 12th, 2011 Magento Development No Comments

New link at bottom block Magento

Adding new link at bottom block.

The correct way to do this is to open the theme/layout/customer.xml file and then modify the section that shows customer links on all pages, to include a link in the home page and also a link to other customer service pages that you have deemed necessary, e.g. ‘returns’ (if you get a lot of those inquiries…).

But if you are writing in the extension you can also add code in the default section of your layout xml file, example:

<default>
   <reference name="top.links">
      <action method="addLink" translate="label title"
         module="[your_module]"><label>[Your Label]</label><url>
         [your_url]</url><title>[Your Title]</title>
         <prepare>true</prepare><urlParams/>
         <position>[position]</position>
      </action>
   </reference>
</default>

Instead of url in the xml file you can use the helper function which returns url, but then you should set the prepare to false:

<default>
   <reference name="top.links">
      <action method="addLink" translate="label title"
         module="[your_module]"><label>[Your Label]</label>
<url helper=[your_helper] /><title>[Your Title]</title>
         <prepare/><urlParams/>
         <position>[position]</position>
      </action>
   </reference>
</default>

If the new item is first (or last), you can use css to change its style in style.css file .access .links li.first a or .access .links li.last a

Tags: ,

Tuesday, June 15th, 2010 Magento Development No Comments