Forum Replies Created

Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • in reply to: Buy Now Broken #59591
    Carin
    Participant

    Hi Anna, It is not reflected in cart, the price in wp-admin is picking up from the Vendors changes, but the original price is what shows when you go to check out and look in cart (I changed the price from Vendor and then from wp admin and then from Vendor again, and it was always the same, the original price of $8,000 shows in cart, no matter where price is updated.

    in reply to: State defaulting to Alabama #58806
    Carin
    Participant

    HI Anna, can you let me know if you found something or where I might go for help? This is a problem for our users. Thanks! Carin

    in reply to: State defaulting to Alabama #58511
    Carin
    Participant

    Thanks Anna, I appreciate you taking a look, if there is a better way of adding the dropdown choices that you know of, I would appreciate it. We would actually like to have it default to Florida, which I could put first in the list, and will do if you see that there is not an actual mistake in this (I could not pick up on anything causing this)

    The problem is that the choice is not actually saved, and if Vendor makes changes in Price or something else, if they do not re-enter address as well, then it shows up as Alabama on the lisitng.
    http://pastebin.com/nyA0gMrk

    in reply to: State defaulting to Alabama #58503
    Carin
    Participant

    This is a critcal issue in our website, is there another way to receive support? Thanks!!

    in reply to: Editing the text on My Account page? #58374
    Carin
    Participant

    I found this part in woocommerce,myaccount, dashboard.php
    From your account dashboard you can view your recent orders, manage your shipping and billing addresses and edit your password and account details.
    But should I just delete the other from class-wcvendors-pro-vendor-controller.php

    in reply to: Editing the text on My Account page? #58372
    Carin
    Participant

    I found part of it here, class-wcvendors-pro-vendor-controller.php but did not want to edit this file in case of updates
    public function pro_dashboard_link_myaccount() {

    $user = get_user_by( ‘id’, get_current_user_id() );
    $dashboard_page_id = WCVendors_Pro::get_option( ‘dashboard_page_id’ );
    $dashboard_url = get_permalink( $dashboard_page_id );
    $my_account_msg = apply_filters( ‘wcv_my_account_msg’, __( ‘<p>To add or edit products, view sales and orders for your vendor account, or to configure your store, visit your Vendor Dashboard.</p>’, ‘wcvendors-pro’ ) );

    in reply to: Editing the text on My Account page? #58367
    Carin
    Participant

    I used that filter,but it did not replace the text, it only added to it, I still have: (and need to remove it)
    From your account dashboard you can view your recent orders, manage your shipping and billing addresses and edit your password and account details.

    To add or edit products, view sales and orders for your vendor account, or to configure your store, visit your Vendor Dashboard.

    in reply to: Add Title and content above Vendor dashboard Nav #58301
    Carin
    Participant

    Perfect, just what I needed, now all I need is to change the label “Dashboard” to “Seller’s Dashboard”, I know this is the code (below) , but I don’t know what the array key is for the Dashboard Label. Do You?

    (code in my functions.php already)

    function change_dashboard_labels( $dashboard_urls ){ 
    
    	// Products 
    
    	if ( array_key_exists('product', $dashboard_urls ) ) $dashboard_urls[ 'product' ][ 'label' ] = 'My Horses'; 
    in reply to: Add Title and content above Vendor dashboard Nav #58223
    Carin
    Participant

    Hi Anna, thanks for that, I actually need the area above the Navigation, that’s why I thought maybe a filter?

    in reply to: Simple Auction – Pro Features Theme Integration #46275
    Carin
    Participant

    So one option for front end display of products, if we go with gravity forms could be this plugin https://gravityview.co/. It’d help us because we are also currently manually coding a directory page with reviews for third party providers. Could this plugin also be used to integrate the product submission form?

    in reply to: Simple Auction – Pro Features Theme Integration #46264
    Carin
    Participant

    Hi Anna,

    We just got back from our company trip and have several people who’d like to manage adding auctions themselves. I can create a gravity form that could be used to post a product, if you know how to integrate it with new fields and also know how to display those new product details on the front end (would they be custom attributes?). I could also create a form field spreadsheet and send it to you if we can’t integrate gravity forms. My thoughts on gravity forms are that it may be easier for me to set up the conditional logic and there are payment processes that may be easier to integrate w/ woo-commerce.

    There are a fair amount of fields and customizations needed on the submission form. Probably 10 conditional logic fields and 40-50 regular fields. They’d need to be able to be integrated with the back end approval process and it is necessary to display them as links in the product details section.

    How should I proceed?

    Thank you,

    Joel

    in reply to: Simple Auction – Pro Features Theme Integration #45856
    Carin
    Participant

    Anna,

    The other thing I’d like to accomplish is customizing the product submission form fields to match names applicable to our auctions. Is that form under WC Vendors or part of woocommerce? I’m sure it’s more complex and would be willing to hire you to customize the submission form and to assist in displaying it within the auctions. We have between one and 8 documents users upload with each auction and would like to change some of the text for product descriptions etc. Then, the short description for each auction could be broke down into 4-5 fields on submission, but displayed under the short description area.

    Thank you,

    Joel

    in reply to: Simple Auction – Pro Features Theme Integration #45855
    Carin
    Participant

    Thank you, I had included the <.php …> from the other thread which likely caused the issue but this worked perfect. you’re awesome!

    Any luck with the code to rename the “Add Product” link under the products tab?

    in reply to: Simple Auction – Pro Features Theme Integration #45724
    Carin
    Participant

    Ok, I’ve read through a lot of the knowledge base and forum trying to find a way to rename the “products” and “orders” dashboard menu items. I found one thread that discussed this and tried to follow and it broke the site.

    Do you have a way to rename the second “add product” quick link and the pro menu’s “products” and “orders” text display?

    Thank you,

    Joel

    in reply to: Simple Auction – Pro Features Theme Integration #45717
    Carin
    Participant

    OK, I renamed the dashboard menu items using the code you’ve provided in the past on another thread. I added the below to functions.php and it worked on the menu item under the dashboard tab. How can I change it under the products tab also? It’s still showing “Add Product”.

    /* WC Vendors Pro Rename Quick Links in Dashboard . Change the labels to your own title. */

    add_filter(‘wcv_dashboard_quick_links’, ‘rename_wcv_dashboard_quick_links’);

    function rename_wcv_dashboard_quick_links( $quick_links ){
    if ( array_key_exists(‘product’, $quick_links ) ) $quick_links[ ‘product’ ][ ‘label’ ] = ‘List A New Item’;
    if ( array_key_exists(‘shop_coupon’, $quick_links ) )$quick_links[ ‘shop_coupon’ ][ ‘label’ ] = ‘Create A Coupon’;
    return $quick_links;
    }

    in reply to: Simple Auction – Pro Features Theme Integration #45712
    Carin
    Participant

    Thank you, that was it! I’ve done some research in the past and will share what I find for the per listing fees. I’m assuming we can set it up similar to the “pay to post” plugin here: https://wordpress.org/plugins/pay-to-post/. If I install this one I’ll report back.

    I have a style on the gravity forms I’d like to match on the product submission form. How would I target the product submission form or even all WCV forms?

    I’ll read more into the knowledgebase now, but is there a quick way to rename menu items? We wanted to rename a few tabs on the pro dashboard menu and change some of the product submission language.

    Thanks Anna and Jamie, A+++

    Joel

    in reply to: Simple Auction – Pro Features Theme Integration #45621
    Carin
    Participant

    That’s perfect, thank you!

    1. Thank you, That makes sense.

    2. Note taken, thanks

    3. Ok, I’ll do this and set it now.

    4. I had the products separated because I was attempting to have a listing credit users could purchase, but abandoned that method. Do you know a way to charge vendors to list an auction? either with credits or on a per listing basis?

    5. For now, we are planning to do this manually, at least until we have more test auctions completed and the merchant account finalized.

    Do you know where the css styling is located for the menu? It’s currently appearing black and was wanting it to match or be close the themes button menu styling.

    Anna, you’re awesome, thank you!!

    Joel

    in reply to: Simple Auction – Pro Features Theme Integration #45525
    Carin
    Participant

    Anna,

    I found and deleted two dokan pages. I also reset the user roles but that didn’t correct the issue with no products displaying on the demo vendor page.

    I’m thinking there may have been a page for products that had an error on install. “Do you have documentation anywhere of all the pages the pro version should use and what the correct shortcodes should be?”

    I can manually create the products page, correct?

    Also, I attached a screenshot of all the user profiles on our site, is there a page you have that shows the profiles I should keep?

    I’m willing to hire someone to help on this and have posted about it two times on codeable but am not getting anywhere… We’re under a time cruch as we have a trip with the team schedule early next week and was planning to demonstrate a working vendor page! Any help would be appreciated!!

    Thank you,

    Joel

    in reply to: Simple Auction – Pro Features Theme Integration #45264
    Carin
    Participant

    Screenshots of the assigned products, but they aren’t showing.

    in reply to: Simple Auction – Pro Features Theme Integration #45263
    Carin
    Participant

    Also, the products set to a vendor aren’t showing under the vendors store page. They were already created before installing, but I assigned them to the test vendor account.

    in reply to: Simple Auction – Pro Features Theme Integration #45262
    Carin
    Participant

    Thanks BEN,

    This project came to me from another developer, not sure what Dokan is. Is that the free version of WC Vendors?

    I only see one page on the Pro tab for the [wcv_pro_dashboard] shortcode and I’ve got that set up and working. I set the other pages on the “Page” configuration tab but am having trouble getting the links to work right. On those page settings I’ve set the parent page to the vendor dashboard so links should be working, but its not loading the orders or products pages.

    Also the nav menu goes away when the settings tab is selected.

    Do you have documentation anywhere of all the pages the pro version should use and what the correct shortcodes should be?

    in reply to: Simple Auction – Pro Features Theme Integration #45105
    Carin
    Participant

    Thanks Ben, I’ve installed the free version, pro version, and SA plugin. I activated all of them and updated/saved the permalinks. I added the vendor dashboard to the top menu also.

    The pro vendor account pages linked are now showing shortcodes, yet I believe I followed the install guidelines and have set the pages correctly.

    I created a vendor account to test it and when clicked they link to the attached page displaying the shortcode only (see attached).

    Any ideas?

Viewing 22 posts - 1 through 22 (of 22 total)