• Resolved selvendran p

    (@selvendran)


    Am working on a project, my client want to allow users (customers) to create a product after loging.

    We are using woocommerce plugin.Is there any hook or shortcode available to add a product via frontend in woocommerce.

    Or any other ideas. Please reply

    Thanks

    P.Selvendran

Viewing 10 replies - 31 through 40 (of 40 total)
  • I’ve been trying to figure out front page product posting for months. I finally ended up using matt gates Product Vendor for WooCommerce which is a very good product and limits what vendor see when adding a product. Now I’m looking for a way to mask WP backend end so you can’t tell it is wordpress. However I’d still love to learn how to do woo frontend.

    Posting in a old thread that’s marked resolved isn’t likely to get much help – this thread is also not even on the WooCommerce forum. Try starting your own threads here:

    https://www.ads-software.com/support/plugin/woocommerce

    @kimber254 I’m on the same road as you, just a few meters ahead. You could use the combination of Gravity Form + Gravity Custom Post types addon + Gravity Form Update Post to make yourself an ‘add product’ form that the Vendor can use to not only add product but delete and modify it too.

    I’ve manage to add product so far, but i’m still working on the add/delete portion of this setup.

    @chainznanz I’ve looked at Gravity Form but I could not find out how to hook the forms up to the back end add products. Do you know of any good tutor? Right now I’m looking at some plug-in that allow you to remodel the back end so the user can’ tell it is a word press.

    Thank

    Modifying backend to make it look like your site’s frontend would be ideal, but i have no clue how to achieve that. I can suggest that you look at Adminize plugin in the repository. Sorry i wasn’t more helpful. Do let me know if you manage to make some headway.

    At codecanyon.net I found a few plugs-in where you can total redo the admin section. I’ve been looking a few one of which is Retina Press but their as several others. Search for backend admin at codecanyon. If you have not been their, the prices are wonderful. Hope that helps.

    BTW: at codecanyon if you decide buy something, check it’s had a lot of sales before you buy it. Themeforest had some very nice themes will tons of features.

    @lofar

    No progress … it’s a shame that the creator of the plugin does not support in www.ads-software.com – see here https://www.ads-software.com/support/plugin/wp-user-frontend-reloaded

    or

    https://www.ads-software.com/support/topic/ajax-failure-in-sub-category-not-work-not-found?replies=1

    Hi !!

    Modifying backend

    There is a WPMU plugin ultimate-branding is “White Label” for WordPress

    and “Easy Blogging” for custom dashboard.

    https://premium.wpmudev.org

    And === aCategory Dropdown List ===

    Replace category checkboxes by a dropdown menu on post’s edit page.

    https://www.ads-software.com/plugins/acategory-dropdown-list/

    With these 3 plugins can do
    a backend professional looking

    Hi here is the solution how to add a product on woocommerce site via front end
    You don’t need the pro version…

    ADD PRODUCT

    line 22: CHANGE ‘post_type’ => ‘post’ TO ‘post_type’ => ‘product’

    line 115: AFTER &show_count=0 ADD &taxonomy=product_cat
    line 117: AFTER &show_count=0 ADD &taxonomy=product_cat

    line 408: CHANGE $post_category = $_POST[‘category’] TO $post_category = $_POST[‘category’][0];

    line 443: AFTER if ( $post_id ) {

    ADD THIS CODE

    //set category id;
    $category_ids = array((int)$post_category);
    wp_set_post_terms( $post_id, $category_ids, ‘product_cat’);

    line 454: REPLACE add_post_meta( $post_id, $key, $val, true );

    WITH
    //set product price
    add_post_meta( $post_id, ‘_price’, $val, true );

    line 473: BEFORE //plugin API to extend the functionality

    ADD THIS CODE

    //do product visible
    update_post_meta( $post_id, ‘_visibility’, ‘visible’ );

    DASHBOARD

    line 25: CHANGE ‘post_type’ => ‘post’ TO ‘post_type’ => ‘product’

    @ravisher34

    but …

    in the pro version does not work Ajax

    If we have multiple categories and subcategories, ajax necessary, also makes the interface “dropdown” is friendly.

    The weak point of most of the themes, plugins, and script for eshop, ecommerce, shopping, or multishops, is that the category menus are long, uncomfortable and unfriendly.

    Only ClassiPress and Sitemile have Dropdonwn Classifieds version 6.2 with Ajax for categories, sub-categories and locations ….

Viewing 10 replies - 31 through 40 (of 40 total)
  • The topic ‘How to add a product via frontend in woocommerce?’ is closed to new replies.