Title: Remove function from a plugin
Last modified: August 22, 2016

---

# Remove function from a plugin

 *  Resolved [Guido](https://wordpress.org/support/users/guido07111975/)
 * (@guido07111975)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-function-from-a-plugin/)
 * Hi,
 * I have a child theme and integrating a e-commerce plugin.
    Would like to remove
   an certain function from that plugin because it’s messing up theme styling.
 * The function is called ‘jigoshop_output_content_wrapper’ and is adding a ‘div’
   to my template files:
 *     ```
       else echo '<div id="container"><div id="content" role="main">';
       ```
   
 * How can I completely remove this function?
 * This should be working but I don’t know where I can find the so called tag:
 *     ```
       <?php remove_action( $tag, $function_to_remove, $priority ); ?>
       ```
   
 * [http://codex.wordpress.org/Function_Reference/remove_action](http://codex.wordpress.org/Function_Reference/remove_action)
 * Guido

Viewing 1 replies (of 1 total)

 *  Thread Starter [Guido](https://wordpress.org/support/users/guido07111975/)
 * (@guido07111975)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-function-from-a-plugin/#post-5629847)
 * Found it, I should remove the ‘action’ that comes with the function.
 *     ```
       remove_action('jigoshop_before_main_content', 'jigoshop_output_content_wrapper', 10);
       ```
   
 * Guido

Viewing 1 replies (of 1 total)

The topic ‘Remove function from a plugin’ is closed to new replies.

## Tags

 * [action](https://wordpress.org/support/topic-tag/action/)
 * [function](https://wordpress.org/support/topic-tag/function/)
 * [remove](https://wordpress.org/support/topic-tag/remove/)

 * 1 reply
 * 1 participant
 * Last reply from: [Guido](https://wordpress.org/support/users/guido07111975/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/remove-function-from-a-plugin/#post-5629847)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
