Title: kylemint23's Replies | WordPress.org

---

# kylemint23

  [  ](https://wordpress.org/support/users/kylemint23/)

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] REQUEST New Service](https://wordpress.org/support/topic/request-new-service/)
 *  Thread Starter [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/request-new-service/#post-4717755)
 * Hello Daniel,
    thanks a lot for your reply..Im just hoping if you guys can add
   it in the future update, however I really really like the plugin
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to add search bar into navigation menu](https://wordpress.org/support/topic/how-to-add-search-bar-into-navigation-menu/)
 *  [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/how-to-add-search-bar-into-navigation-menu/#post-4450220)
 * Activate the plugin and it will be automatically added in the main menu which
   is your primary menu, and with that you can add some css to style it..
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom Post Type Pagination On page 2 not working/ 404 page not found](https://wordpress.org/support/topic/custom-post-type-pagination-on-page-2-not-working-404-page-not-found/)
 *  Thread Starter [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/custom-post-type-pagination-on-page-2-not-working-404-page-not-found/#post-4448609)
 * here is my code for the custom taxonomy:
 *     ```
       public function register_ctax_product_cat() {
                   $labels = array(
                       'name' => __( 'Product Categories', 'genesis_product_cat'),
                       'singular_name' => __( 'Product Category', 'genesis_product_cat'),
                       'search_items' =>  __( 'Search Product Categories', 'genesis_product_cat'),
                       'popular_items' => __( 'Popular Product Categories', 'genesis_product_cat' ),
                       'all_items' => __( 'All Product Categories', 'genesis_product_cat'),
                       'parent_item' => __( 'Parent Product Category', 'genesis_product_cat'),
                       'parent_item_colon' => __( 'Parent Product Category:', 'genesis_product_cat'),
                       'edit_item' => __( 'Edit Product Category', 'genesis_product_cat'),
                       'update_item' => __( 'Update Product Category', 'genesis_product_cat'),
                       'add_new_item' => __( 'Add New Product Category', 'genesis_product_cat'),
                       'new_item_name' => __( 'New Product Category Name', 'genesis_product_cat'),
                       'separate_items_with_commas' => __( 'Separate product categories with commas', 'genesis_product_cat' ),
               	    'add_or_remove_items' => __( 'Add or remove product categories', 'genesis_product_cat' ),
               	    'choose_from_most_used' => __( 'Choose from the most used product categories', 'genesis_product_cat' ),
               	    'menu_name' => __( 'Product Categories', 'genesis_product_cat' )
                   );
                   $args = array(
                       'labels' => $labels,
                       'label' => __( 'Product Categories', 'genesis_prod'),
                       'update_count_callback' => '_update_post_term_count',
                       'public' => true,
                       'show_in_nav_menus' => true,
                       'show_ui' => true,
                       'show_tagcloud' => false,
                       'show_admin_column' => true,
                       'hierarchical' => true,
                       'rewrite' => array('slug' => 'product_category','with_front' => FALSE),
                       'query_var' => true
                   );
                   register_taxonomy( 'product_category', array( 'product' ), $args );
               }
       ```
   
 * and for my CPT product:
 *     ```
       public function register_cpt_product() {
                   $labels = array(
               		'name' => __( 'Products', 'genesis_prod' ),
               		'singular_name' => __( 'Product', 'genesis_prod' ),
               		'add_new' => __( 'Add Product', 'genesis_prod' ),
               		'add_new_item' => __( 'Add New Product', 'genesis_prod' ),
               		'edit' => __( 'Edit', 'genesis_prod' ),
               		'edit_item' => __( 'Edit Product', 'genesis_prod' ),
               		'new_item' => __( 'New Product', 'genesis_prod' ),
               		'view' => __( 'View Product', 'genesis_prod' ),
               		'view_item' => __( 'View Product', 'genesis_prod' ),
               		'search_items' => __( 'Search Products', 'genesis_prod' ),
               		'not_found' => __( 'No Products found', 'genesis_prod' ),
               		'not_found_in_trash' => __( 'No Products found in trash', 'genesis_prod' ),
               		'parent_item_colon' => __( 'Parent Product:', 'genesis_prod' ),
               		'parent' => __( 'Parent Product', 'genesis_prod' ),
               		'menu_name' => __( 'Products', 'genesis_prod' )
                   );
                   $args = array(
                       'labels' => $labels,
                       'hierarchical' => true,
                       'description' => 'Add posts as product custom post type',
                       'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'page-attributes' ),
                       'taxonomies' => array( 'product_category' ),
                       'public' => true,
                       'show_ui' => true,
                       'show_in_menu' => true,
                       'menu_icon' => 'http://client.yourgreenva.com/genesis/wp-content/uploads/2013/10/cart_full.png',
                       'show_in_nav_menus' => true,
                       'publicly_queryable' => true,
                       'exclude_from_search' => false,
                       'has_archive' => true,
                       'query_var' => true,
                       'can_export' => true,
                       'rewrite' => array( 'slug' => 'product','with_front' => FALSE),
                       'capability_type' => 'post'
                   );
                   register_post_type( 'product', $args );
               }
       ```
   
 * I just can’t figured it out why im getting the 404 page not found,
    even when
   I already use the plugin wp-pagenavi..but in the first code I added above, I 
   already removed it cause Im still having the same issue even changing my permalinks
   to default but doesnt work, then back to post name again still have that issue..
   Please help..
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to add search bar into navigation menu](https://wordpress.org/support/topic/how-to-add-search-bar-into-navigation-menu/)
 *  [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/how-to-add-search-bar-into-navigation-menu/#post-4450211)
 * You can uuse this plugin
    [http://wordpress.org/plugins/search-box-on-navigation-menu/](http://wordpress.org/plugins/search-box-on-navigation-menu/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] WordPress Error in admin pages](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/)
 *  Thread Starter [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/#post-3221561)
 * thanks you sorry for delay
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] WordPress Error in admin pages](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/)
 *  Thread Starter [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/#post-3221538)
 * Actually I haven’t upgraded the WordPress yet since I’m not really the site administrator…
   It was a large website..What I did is I copy the whole website …everything, and
   I just activated the plugin and it works…the “Editor” menu is accessable for 
   the “Plugins, “Appearance”..
    But when I try to activate the plugin in the real
   site. It doesn’t effect what I’m expecting.. Any thoughts???
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] WordPress Error in admin pages](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/)
 *  Thread Starter [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/#post-3221509)
 * thanks i’ll do that
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] WordPress Error in admin pages](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/)
 *  Thread Starter [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/wordpress-error-in-admin-pages/#post-3221504)
 * Yes ,thank you for your quick reply. I already emailed the programmer of the 
   plugin and they says that
 * > It would appear that the way your WordPress site is set up, there are issues
   > that go beyond WP News Flash. For example, you have no menu to edit a plugin(
   > normally plugins > editor). I’ve tested for theme and plugin incompatibility
   > issues – it is neither. That would indicate the WP installation itself. However,
   > I cannot estimate what the problem may be. Please try installing WP News Flash
   > on a test blog. I think you will find it working there with the latest WP 3.3
   > +. It’s possible that there is a permissions issue or you’ve done customizations
   > that go beyond what we can support.
 * ..any idea?
    thank you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to use session in wordpress to hold the variables of the username & password](https://wordpress.org/support/topic/how-to-use-session-in-wordpress-to-hold-the-variables-of-the-username-password/)
 *  Thread Starter [kylemint23](https://wordpress.org/support/users/kylemint23/)
 * (@kylemint23)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/how-to-use-session-in-wordpress-to-hold-the-variables-of-the-username-password/#post-2722756)
 * Or for short , how can I hold the username & password inputted upon logging-in.

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