Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter kylemint23

    (@kylemint23)

    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

    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..

    Thread Starter kylemint23

    (@kylemint23)

    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' => 'https://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..

    Thread Starter kylemint23

    (@kylemint23)

    thanks you sorry for delay

    Thread Starter kylemint23

    (@kylemint23)

    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???

    Thread Starter kylemint23

    (@kylemint23)

    thanks i’ll do that

    Thread Starter kylemint23

    (@kylemint23)

    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.

    Thread Starter kylemint23

    (@kylemint23)

    Or for short , how can I hold the username & password inputted upon logging-in.

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