Title: ipoint-tech's Replies | WordPress.org

---

# ipoint-tech

  [  ](https://wordpress.org/support/users/ipoint-tech/)

 *   [Profile](https://wordpress.org/support/users/ipoint-tech/)
 *   [Topics Started](https://wordpress.org/support/users/ipoint-tech/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ipoint-tech/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ipoint-tech/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ipoint-tech/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ipoint-tech/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ipoint-tech/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pazzey's Store Locator] Not compatible with WooCommerce 2.1.x](https://wordpress.org/support/topic/not-compatible-with-woocommerce-21x-1/)
 *  Thread Starter [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/not-compatible-with-woocommerce-21x-1/#post-5214608)
 * HOW TO FIX:
    EDIT store_locator.php REMOVE: (Lines 17-47)
 *     ```
       function create_store_post_type() {
       	register_post_type( 'pazzey_store',
       		array(
       			'labels' => array(
       				'name' => __( 'Stores' ),
       				'singular_name' => __( 'Store' ),
       				'add_new' => __( 'Add New Store' ),
       				'add_new_item' => __( 'Add Store' ),
       				'edit' => __( 'Edit' ),
       				'edit_item' => __( 'Edit Store' ),
       				'new_item' => __( 'New Store' ),
       				'view' => __( 'View Store' ),
       				'view_item' => __( 'View Store' ),
       				'search_items' => __( 'Search Stores' ),
       				'not_found' => __( 'No Stores found' ),
       				'not_found_in_trash' => __( 'No Stores found in Trash' ),
       				'parent' => __( 'Parent Store' ),
   
       			),
       			'public' => true,
       			'show_ui' => true,
       			'publicly_queryable' => truew,
       			'exclude_from_search' => true,
       			'menu_position' => 20,
       			'hierarchical' => true,
       			'query_var' => true,
       			'supports' => array( 'title', 'editor', 'excerpt','thumbnail','page-attributes' ),
       		)
       	);
       	flush_rewrite_rules( false );
       }
       ```
   
 * REPLACE WITH:
 *     ```
       function create_store_post_type() {
       	$labels = array(
       		'name'               => _x( 'Stores', 'post type general name', 'your-plugin-textdomain' ),
       		'singular_name'      => _x( 'Store', 'post type singular name', 'your-plugin-textdomain' ),
       		'add_new'            => _x( 'Add New Store', 'book', 'your-plugin-textdomain' ),
       		'add_new_item'       => __( 'Add Store', 'your-plugin-textdomain' ),
       		'new_item'           => __( 'New Store', 'your-plugin-textdomain' ),
       		'edit_item'          => __( 'Edit Store', 'your-plugin-textdomain' ),
       		'view_item'          => __( 'View Store', 'your-plugin-textdomain' ),
       		'all_items'          => __( 'All Stores', 'your-plugin-textdomain' ),
       		'search_items'       => __( 'Search Stores', 'your-plugin-textdomain' ),
       		'not_found'          => __( 'No stores found.', 'your-plugin-textdomain' ),
       		'not_found_in_trash' => __( 'No stores found in Trash.', 'your-plugin-textdomain' )
       	);
   
       	$args = array(
       		'labels'             => $labels,
       		'public'             => true,
       		'publicly_queryable' => true,
       		'show_ui'            => true,
       		'show_in_menu'       => true,
       		'query_var'          => true,
       		'rewrite'            => array( 'slug' => 'stores' ),
       		'capability_type'    => 'post',
       		'has_archive'        => false,
       		'hierarchical'       => true,
       		'menu_position'      => null,
       		'supports'           => array( 'title', 'editor', 'excerpt', 'thumbnail', 'page-attributes' )
       	);
   
       	// Add new taxonomy, make it hierarchical (like categories)
       	$labels = array(
       		'name'              => _x( 'Genres', 'taxonomy general name' ),
       		'singular_name'     => _x( 'Genre', 'taxonomy singular name' ),
       		'search_items'      => __( 'Search Genres' ),
       		'all_items'         => __( 'All Genres' ),
       		'parent_item'       => __( 'Parent Genre' ),
       		'parent_item_colon' => __( 'Parent Genre:' ),
       		'edit_item'         => __( 'Edit Genre' ),
       		'update_item'       => __( 'Update Genre' ),
       		'add_new_item'      => __( 'Add New Genre' ),
       		'new_item_name'     => __( 'New Genre Name' ),
       		'menu_name'         => __( 'Genre' ),
       	);
   
       	$args = array(
       		'hierarchical'      => true,
       		'labels'            => $labels,
       		'show_ui'           => true,
       		'show_admin_column' => true,
       		'query_var'         => true,
       		'rewrite'           => array( 'slug' => 'genre' ),
       	);
   
       	register_taxonomy( 'genre', array( 'book' ), $args );
   
       	// Add new taxonomy, NOT hierarchical (like tags)
       	$labels = array(
       		'name'                       => _x( 'Locations', 'taxonomy general name' ),
       		'singular_name'              => _x( 'Location', 'taxonomy singular name' ),
       		'search_items'               => __( 'Search Locations' ),
       		'popular_items'              => __( 'Popular Locations' ),
       		'all_items'                  => __( 'All Locations' ),
       		'parent_item'                => null,
       		'parent_item_colon'          => null,
       		'edit_item'                  => __( 'Edit Location' ),
       		'update_item'                => __( 'Update Location' ),
       		'add_new_item'               => __( 'Add New Location' ),
       		'new_item_name'              => __( 'New Location Name' ),
       		'separate_items_with_commas' => __( 'Separate locations with commas' ),
       		'add_or_remove_items'        => __( 'Add or remove locations' ),
       		'choose_from_most_used'      => __( 'Choose from the most used locations' ),
       		'not_found'                  => __( 'No locations found.' ),
       		'menu_name'                  => __( 'Locations' ),
       	);
   
       	$args = array(
       		'hierarchical'          => false,
       		'labels'                => $labels,
       		'show_ui'               => true,
       		'show_admin_column'     => true,
       		'update_count_callback' => '_update_post_term_count',
       		'query_var'             => true,
       		'rewrite'               => array( 'slug' => 'writer' ),
       	);
   
       	register_taxonomy( 'writer', 'book', $args );
   
       	register_post_type( 'pazzey_store', $args );
   
       }
       ```
   
 * Not sure if this code is perfect, I used it from a WordPress example, but it 
   works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Spinning Icon, message sends, but no confirmation](https://wordpress.org/support/topic/spinning-icon-message-sends-but-no-confirmation/)
 *  [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [13 years ago](https://wordpress.org/support/topic/spinning-icon-message-sends-but-no-confirmation/page/2/#post-3263978)
 * I had the same problem and resolved it. I was using the Configure SMTP plugin
   and had debug turned on. Turned it off and everything worked great.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Weird upload image problem](https://wordpress.org/support/topic/weird-upload-image-problem/)
 *  [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/weird-upload-image-problem/#post-3557464)
 * Okay I got it resolved. I finally found another blog with the answer. It has 
   to do with the Authentication in IIS.
 * Do this -> Internet Information Services (IIS) Manager –> Sites –> Your Site –
   > Authentication –> Anonymous Authentication –> Edit (on the right side)
 * Instead of “Specific User” option, select “Application Pool Identity” option.
   I restarted the website and all is working again. Hope this helps.
 * PS. I thought this was not going to solve the problem but it did.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Weird upload image problem](https://wordpress.org/support/topic/weird-upload-image-problem/)
 *  [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/weird-upload-image-problem/#post-3557462)
 * I’m having the same issue on an IIS server. Did you ever get it resolved cerics?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I did the updrage to the latest version now I have some strange code.](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/)
 *  [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/page/4/#post-2084690)
 * I’d recommend TMD hosting (tmdhosting.com) they are amazing with support. With
   in 3 minutes of submitting a ticket they normally have someone fixing your problem.
   I’ve had no issues with them and any problems that arise they seem to always 
   resolve quickly. It’s cheap and they offer video streaming 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I did the updrage to the latest version now I have some strange code.](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/)
 *  [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/page/4/#post-2084675)
 * Are you made sure you added a “space” to replace the string with? It doesn’t 
   tell you that it replaces the code, it just does it. Also you might want to hold
   down ctrl and refresh the page where you are still seeing the code. That will
   refresh your internal cache.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I did the updrage to the latest version now I have some strange code.](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/)
 *  [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/page/4/#post-2084673)
 * I followed what they said above to remove it:
 * Step 1: Download and Install “Search and Replace” ([http://wordpress.org/extend/plugins/search-and-replace/](http://wordpress.org/extend/plugins/search-and-replace/))
 * Step 2: After activate the plugin, search for:
    <script src=\”[http://infoitpoweringgathering.com/ll.php?kk=11](http://infoitpoweringgathering.com/ll.php?kk=11)\”
   ></script> and replace it with a space. (It found it in 338 locations in my database)
 * Step 3: Clear ANY cache installed (IMPORTANT)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I did the updrage to the latest version now I have some strange code.](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/)
 *  [ipoint-tech](https://wordpress.org/support/users/ipoint-tech/)
 * (@ipoint-tech)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/i-did-the-updrage-to-the-latest-version-now-i-have-some-strange-code/page/4/#post-2084671)
 * We too have compromised blogs on ipower. Same code

Viewing 8 replies - 1 through 8 (of 8 total)