remove

Removing the block "Popular Tags" from the index view in Magento

Hi, I started working with Magento this week and I'm trying to create a new theme. Following the "Designing for Magento" article of the wiki, I tried to remove the Popular Tags block from the index view, adding this line to local.xml on magento\app\design\frontend\default\mytheme\layout: <remove name="tags_popular"/> I don't why, but ...

How do I prevent duplicates, in XSL?

How do I prevent duplicate entries into a list, and then ideally, sort that list? What I'm doing, is when information at one level is missing, taking the information from a level below it, to building the missing list, in the level above. Currently, I have XML similar to this: <c03 id="ref6488" level="file"> <did> <unittit...

Remove all styles from dynamic label in asp.net

I have a label and I got some text from database. text format like: Windows Server 2008 ...etc But sometimes there are different fonts or something like style. How can I remove all of them quickly? I know I can make it with replace command. But is there any quick way for it? ...

PHP - How to remove the first number in a string?

Hello. How can I remove the first number in a string? Say if I had these 48 numbers seperated with a ',' (comma): 8,5,8,10,15,20,27,25,60,31,25,39,25,31,26,28,80,28,27,31,27,29,26,35,8,5,8,10,15,20,27,25,60,31,25,39,25,31,26,28,80,28,27,31,27,29,26,35 How would I remove the "8," from the string? Thanks. ...

Removing a Subversion folder from the client and server

Hi. I have been using Subversion for a few days now and have a question... I have a folder deep in my subversion trunk that I want to remove and replace with another folder. I have read about this on here and tried: Export: I clicked on the folder I wanted to remove I then created a new backup folder elsewhere when prompted I the...

Where does the delete control go in my Cocoa user interface?

Hi, I have a Cocoa application managing a collection of objects. The collection is presented in an NSCollectionView, with a "new object" button nearby so users can add to the collection. Of course, I know that having a "delete object" button next to that button would be dangerous, because people might accidentally knock it when they mean...

InstallShield 2009: Remove a dll (being used by explorer.exe for context menu) during uninstall without any warning message

Install Shield Premier 2009: Basic MSI Project I have a dll that is supposed to be removed during uninstall. But this dll is being used by explorer.exe, it is used for generating windows explorer context menus with their icons(same as the menu items, icons we see when we right click on any file/folder and see the WinRAR items, icons). ...

android calendar delete event

I am using the Android calendar. How can I remove a calendar event using code? Is it possible? For clarification, I would like to mention that I don't want a sync process or want to remove events using gdata api. I only want to remove a local calendar event. ...

Remove a dom element from the document, but save it as a variable?

Is there a way to remove a dom element from the document, but save it as a variable? I'm guessing I have to save the clone as a var, and then remove the original? Also, would such a technique store styles etc? ...

jQuery.remove() - Is there a way to get the object back after you remove it?

I basically have the same problem in this questions: Flash Video still playing in hidden div I've used the .remove jquery call and this works. However, I have previous/next buttons when a user scrolls through hidden/non-hidden divs. What I need to know is, once I remove the flash object, is there a way to get it back other than refre...

Scheme function to remove first element

write a scheme function that remove the first top level occurrence of a given item from a list of items. eg given list (a b c) item b, result list (a c) plz help me ...

I am using Python on Windows. How do I delete my script after it is run?

I have written a Python script and compiled it into a MS Windows EXE file. I can modify the code, but how do I make it remove itself after running? ...

In IntelliJ on OS X, how do you clear out all global setting info, licensing etc. (external to any project)

I am having some low level issues with IntelliJ on my mac, I really want to just zero everything out and start over. But even after removing the application and re-installing it, IntelliJ still remembers things like what the last project was, what licensing key to use etc. Where is this information stored? And what is the best way to c...

Remove Custom UINavigationBar

Hi, I've customized my UINavigationBar with an image like that : @implementation UINavigationBar (CustomImage) - (void)drawRect:(CGRect)rect { UIImage *image = [UIImage imageNamed: @"NavigationBar.png"]; [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; } @end When I launch a video my custom ...

How do use a mod_rewrite to eliminate the "/%year%/ from WordPress URL?

How do use a mod_rewrite to eliminate the "/%year%/ from WordPress URL? Thanks in advance! ...

Amazon WebStore hide/disable/remove

Hey guys, I'm new to template editting. I'm trying to remove a table from the Amazon's WebStore template so i can start designing my own. Anyone out there know how I can go about hiding/disabling/removing/bypassing it? ...

JQuery: Remove duplicate elements?

Say I have a list of links with duplicate values as below: <a href="#">Book</a> <a href="#">Magazine</a> <a href="#">Book</a> <a href="#">Book</a> <a href="#">DVD</a> <a href="#">DVD</a> <a href="#">DVD</a> <a href="#">Book</a> How would I, using JQuery, remove the dups and be left with the following for example: <a href="#">Book</a...

How to drop columns using Rails migration

What's the syntax for dropping a database table column through a Rails migration? ...

C# this.Controls.Remove problem

What is the problem with this code? for (int w = 0; w < this.Controls.Count; w++) { if (this.Controls[w] is TransparentLabel) { la = (TransparentLabel)this.Controls[w]; if (la.Name != "label1") { la.Visible = false; la.Click -= new System.EventHandler(Clicked); this.Con...

Is it possible to remove all event handlers of a given element in javascript?

Hi, I would like to remove ALL handlers for a given event type. Let's say I've added twice "onclick event" to a button and now I would like to return back to the original state where no event handler was set to the button. How can I do that? P.S.: I've found removeEventListener (non-IE)/detachEvent (IE) methods but the functions want...