×

Blog

Joomla Media Manager in Custom Components

To use the Joomla Media Manager in Custom Components <script> function useMediaManager(id) { if (!jQuery("#sbox-window").is(‘:visible’)) { setTimeout(function(){useMediaManager(id);}, 200); //wait return; } var f = jQuery(‘#sbox-window iframe’); var ocfns, btns; if(f[0] == undefined){ setTimeout(function(){useMediaManager(id);}, 200); //wait return; } else { f.load(function(){//wait var imageManager = f[0].contentWindow.ImageManager; imageManager.onok = function() { setMedia(this.fields.url.get(‘value’), id); }; }); } } function setMedia(url, id){ jQuery(‘#’+id).val(url); } </script> <input type="text" name="image_url" value="<?php echo $row->image_url;?>" /> <a class="modal-button" title="Image" href="index.php?option=com_media&view=images&tmpl=component&e_name=tempimage" onclick="useMediaManager(‘image_url’); return false;" rel="{handler: […]

Read more…

Magento Support Ticket System

Magento Support Ticket System is fully featured essential and must have extension for every Magento store, that allows you to provide a complete customer care service and excellent support attendance. Features: 1 Awesome Support Ticket System for Magento. 2. Departments for Tickets. 3. Status and Priorities for Tickets. 4. Message Templates for Quick replies. 5. HTML based email notifications. 6. Store wise Ticket management. 7. Tickets with attachments. 8. Export as CSV and XML. 9. […]

Read more…

Magento User Interaction

Magento User Interaction extension provides the user friendly communication between Administrator and customers. It allows users to send messages to administrator and receive his answers. With our MUI Extension administrator can send single and Bulk messages to users. MUI also provides the order Tracking Ticket system, with this ticket system customer and administrator can easily track the orders and manage the tickets. Features: Admin – User Messaging system. Bulk messaging options. Inbox and Outbox for […]

Read more…

Show particular image as thumbnail while share the URL on Facebook

Facebook uses og:tags and the Open Graph Protocol to decipher what information to display when previewing your URL in a share dialog or in a news feed on facebook. The og:tags contain information such as : The title of the page The type of page The URL The websites name A description of the page Facebook user_id’s of administrators of the page ( on facebook ) To Show particular image as thumbnail while share the […]

Read more…

JM Sports – Magento Responsive Template

JM Sports – Magento Responsive Template with unique style, clear layout, powerful admin panel and 3 color presets, It is suitable for almost any type of online shop.It is easy to use and extremely customizable. Great as a starting point for your custom projects. Features: Fully Responsive. Compatible with Magento 1.6.x , 1.7.x and 1.8.x Three Types of Sliders Ajax Add To Cart. Ajax Dropdown Top Cart. Three Color Schemes. 400+ Google Fonts. Simple Theme […]

Read more…

Number of Products to Shown on Magento Cart Sidebar

In order to choose how many products you want to allow to display on the Magento Cart Sidebar [Sidebar Mini My-cart], simply go to your Magento admin-panel, in System > Configuration > under Sales > Checkout > under Shopping Cart Sidebar, select the number of your choice in “Maximum Display Recently Added Item(s)”

Read more…

Add HTML Rich Text Editor Field in Joomla Module/Component

Let’s say that you are building a form in Joomla, but you need one of your fields to be an HTML text editor instead of a normal textarea, how do yo do that? Well, it’s very simple in Joomla – if you’re building the form using MVC (Model-View-Controller), and you want to add a field called Product Information then you will need to do is to add the following in your XML definition file located […]

Read more…