Forum Replies Created

Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • in reply to: Auctions not displaying in Orders Tab in dashboard #77104
    Brendon
    Participant

    Hi Anna have you guys sorted this issue yet? If not is it possible go get a refund for my wcvendors purchase please its been almost 3 months that out site has been down and unusable due to this issue so we need to change products to get it back up and running again. Plesse advise asap. Many thanks

    in reply to: Auctions not displaying in Orders Tab in dashboard #72542
    Brendon
    Participant

    Hi Anna, thanks just following up to see if you have heard back regarding this if we have no time frame soon we may have to rebuild with Dokan as our site is unusable while this is an issue and certainly costing us in revenue so its starting to become a matter of priority for us now as its been almost a month already and as much as I appreciate your team is working hard on everyones issues we need to resolve our issue to continue operating.

    Please advise asap.
    Regards
    Brendon

    in reply to: Auctions not displaying in Orders Tab in dashboard #70477
    Brendon
    Participant

    Hey guys we can not use our site while this is not working can you please advise when we may see this issue resolved our clients are starting to get pissy with us now. Please advise

    Thanks!

    in reply to: Auctions not displaying in Orders Tab in dashboard #69792
    Brendon
    Participant

    Hi Anna thanks, any idea when this may be addressed by?

    Brendon
    Participant

    Thats where Im putting it is that right?

    Brendon
    Participant

    <?php
    add_action( ‘wp_enqueue_scripts’, ‘enqueue_parent_styles’ );

    function enqueue_parent_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri().’/style.css’ );
    }

    /**
    * Replace ‘customer’ role (WooCommerce use by default) with your own one.
    **/

    add_filter(‘woocommerce_new_customer_data’, ‘wc_assign_custom_role’, 10, 1);

    function wc_assign_custom_role($args) {
    $args[‘role’] = ‘vendor’;

    return $args;
    }
    /* This should be placed in your theme/child theme functions.php.
    Creates the function for the fields to collect the info, and adds the fields
    to the front-end store settings page (payments tab) and the admin user page. */

    add_action( ‘wcvendors_settings_after_paypal’, ‘store_account_type’ );
    function store_account_type( ){
    if ( class_exists( ‘WCVendors_Pro’ ) ){
    $key = ‘_wcv_custom_settings_account_type’;
    $value = get_user_meta( get_current_user_id(), $key, true );
    // Account Type
    WCVendors_Pro_Form_Helper::input( array(
    ‘id’ => $key,
    ‘label’ => __( ‘Account Type’, ‘wcvendors-pro’ ),
    ‘placeholder’ => __( ‘Savings’, ‘wcvendors-pro’ ),
    ‘desc_tip’ => ‘true’,
    ‘description’ => __( ”, ‘wcvendors-pro’ ),
    ‘type’ => ‘text’,
    ‘value’ => $value,
    )
    );
    }
    }

    add_action( ‘wcvendors_admin_after_commission_due’, ‘wcv_store_account_type_admin’ );
    function wcv_store_account_type_admin( $user ) {
    ?>
    <tr>
    <th><label for=”_wcv_custom_settings_account_type”><?php _e( ‘Account Type’, ‘wcvendors-pro’ ); ?></label></th>
    <td><input type=”text” name=”_wcv_custom_settings_account_type” id=”_wcv_custom_settings_account_type” value=”<?php echo get_user_meta( $user->ID, ‘_wcv_custom_settings_account_type’, true ); ?>” class=”regular-text”></td>
    </tr>
    <?php
    }
    add_action( ‘wcvendors_settings_after_paypal’, ‘store_bank_name’ );
    function store_bank_name( ){
    if ( class_exists( ‘WCVendors_Pro’ ) ){
    $key = ‘_wcv_custom_settings_bank_name’;
    $value = get_user_meta( get_current_user_id(), $key, true );
    // Bank Name
    WCVendors_Pro_Form_Helper::input( array(
    ‘id’ => $key,
    ‘label’ => __( ‘Bank Name’, ‘wcvendors-pro’ ),
    ‘placeholder’ => __( ‘ABSA Bank’, ‘wcvendors-pro’ ),
    ‘desc_tip’ => ‘true’,
    ‘description’ => __( ”, ‘wcvendors-pro’ ),
    ‘type’ => ‘text’,
    ‘value’ => $value,
    )
    );
    }
    }
    add_action( ‘wcvendors_admin_after_commission_due’, ‘wcv_store_bank_name_admin’ );
    function wcv_store_bank_name_admin( $user ) {
    ?>
    <tr>
    <th><label for=”_wcv_custom_settings_bank_name”><?php _e( ‘Bank Name’, ‘wcvendors-pro’ ); ?></label></th>
    <td><input type=”text” name=”_wcv_custom_settings_bank_name” id=”_wcv_custom_settings_bank_name” value=”<?php echo get_user_meta( $user->ID, ‘_wcv_custom_settings_bank_name’, true ); ?>” class=”regular-text”></td>
    </tr>
    <?php
    }

    add_action( ‘wcvendors_settings_after_paypal’, ‘store_account_name’ );
    function store_account_name( ){
    if ( class_exists( ‘WCVendors_Pro’ ) ){
    $key = ‘_wcv_custom_settings_account_name’;
    $value = get_user_meta( get_current_user_id(), $key, true );
    // Account Name
    WCVendors_Pro_Form_Helper::input( array(
    ‘id’ => $key,
    ‘label’ => __( ‘Account Name’, ‘wcvendors-pro’ ),
    ‘placeholder’ => __( ‘Majestic Pet Auctions’, ‘wcvendors-pro’ ),
    ‘desc_tip’ => ‘true’,
    ‘description’ => __( ”, ‘wcvendors-pro’ ),
    ‘type’ => ‘text’,
    ‘value’ => $value,
    )
    );
    }
    }
    add_action( ‘wcvendors_admin_after_commission_due’, ‘wcv_store_account_name_admin’ );
    function wcv_store_account_name_admin( $user ) {
    ?>
    <tr>
    <th><label for=”_wcv_custom_settings_account_name”><?php _e( ‘Account Name’, ‘wcvendors-pro’ ); ?></label></th>
    <td><input type=”text” name=”_wcv_custom_settings_account_name” id=”_wcv_custom_settings_account_name” value=”<?php echo get_user_meta( $user->ID, ‘_wcv_custom_settings_account_name’, true ); ?>” class=”regular-text”></td>
    </tr>
    <?php
    }

    add_action( ‘wcvendors_settings_after_paypal’, ‘store_account_number’ );
    function store_account_number( ){
    if ( class_exists( ‘WCVendors_Pro’ ) ){
    $key = ‘_wcv_custom_settings_account_number’;
    $value = get_user_meta( get_current_user_id(), $key, true );
    //Account Number
    WCVendors_Pro_Form_Helper::input( array(
    ‘id’ => $key,
    ‘label’ => __( ‘Account Number’, ‘wcvendors-pro’ ),
    ‘placeholder’ => __( ‘000-0000-0000’, ‘wcvendors-pro’ ),
    ‘desc_tip’ => ‘true’,
    ‘description’ => __( ”, ‘wcvendors-pro’ ),
    ‘type’ => ‘text’,
    ‘value’ => $value,
    )
    );
    }
    }
    add_action( ‘wcvendors_admin_after_commission_due’, ‘wcv_store_account_number_admin’ );
    function wcv_store_account_number_admin( $user ) {
    ?>
    <tr>
    <th><label for=”_wcv_custom_settings_account_number”><?php _e( ‘Account Number’, ‘wcvendors-pro’ ); ?></label></th>
    <td><input type=”text” name=”_wcv_custom_settings_account_number” id=”_wcv_custom_settings_account_number” value=”<?php echo get_user_meta( $user->ID, ‘_wcv_custom_settings_account_number’, true ); ?>” class=”regular-text”></td>
    </tr>
    <?php
    }
    add_action( ‘wcvendors_settings_after_paypal’, ‘store_branch_code’ );
    function store_branch_code( ){
    if ( class_exists( ‘WCVendors_Pro’ ) ){
    $key = ‘_wcv_custom_settings_branch_code’;
    $value = get_user_meta( get_current_user_id(), $key, true );
    //Branch Code
    WCVendors_Pro_Form_Helper::input( array(
    ‘id’ => $key,
    ‘label’ => __( ‘Branch Code’, ‘wcvendors-pro’ ),
    ‘placeholder’ => __( ‘000’, ‘wcvendors-pro’ ),
    ‘desc_tip’ => ‘true’,
    ‘description’ => __( ”, ‘wcvendors-pro’ ),
    ‘type’ => ‘text’,
    ‘value’ => $value,
    )
    );
    }
    }
    add_action( ‘wcvendors_admin_after_commission_due’, ‘wcv_store_branch_code_admin’ );
    function wcv_store_branch_code_admin( $user ) {
    ?>
    <tr>
    <th><label for=”_wcv_custom_settings_branch_code”><?php _e( ‘Branch Code’, ‘wcvendors-pro’ ); ?></label></th>
    <td><input type=”text” name=”_wcv_custom_settings_branch_code” id=”_wcv_custom_settings_branch_code” value=”<?php echo get_user_meta( $user->ID, ‘_wcv_custom_settings_branch_code’, true ); ?>” class=”regular-text”></td>
    </tr>
    <?php
    }

    /* WC Vendors Pro – Add a new link(s)to the Pro Dashboard */
    function new_dashboard_page( $pages ){
    $pages[] = array( ‘label’ => ‘Auction Activity’, ‘slug’ => ‘https://majesticpetauctions.co.za/my-auction-activity/&#8217; );
    return $pages;
    }
    add_filter( ‘wcv_pro_dashboard_urls’, ‘new_dashboard_page’ );
    function new_dashboard_page_2( $pages ){
    $pages[] = array( ‘label’ => ‘Wishlist’, ‘slug’ => ‘https://majesticpetauctions.co.za/wishlist/&#8217; );
    return $pages;
    }
    add_filter( ‘wcv_pro_dashboard_urls’, ‘new_dashboard_page_3’ );
    function new_dashboard_page_3( $pages ){
    $pages[] = array( ‘label’ => ‘Vendor Profile’, ‘slug’ => ‘https://majesticpetauctions.co.za/dashboard/settings/&#8217; );
    return $pages;
    }
    add_filter( ‘wcv_pro_dashboard_urls’, ‘new_dashboard_page_3’ );

    /**
    * Minimum Image Size.
    **/
    add_filter(‘wp_handle_upload_prefilter’,’child_handle_upload_prefilter’);
    function child_handle_upload_prefilter($file)
    {
    $minimum = array(‘width’ => ‘450’, ‘height’ => ‘450’);
    $img=getimagesize($file[‘tmp_name’]);
    $width= $img[0];
    $height =$img[1];
    if ($width < $minimum[‘width’] )
    return array(“error”=>”Image dimensions are too small. Minimum width is {$minimum[‘width’]}px. Uploaded image width is $width px”);
    elseif ($height < $minimum[‘height’])
    return array(“error”=>”Image dimensions are too small. Minimum height is {$minimum[‘height’]}px. Uploaded image height is $height px”);
    else
    return $file;
    }
    add_filter(‘manage_upload_columns’, ‘child_manage_upload_columns’);
    function child_manage_upload_columns($columns) {
    $columns[‘dimensions’] = ‘Dimensions’;
    return $columns;
    }

    add_action(‘manage_media_custom_column’, ‘child_manage_media_custom_column’, 10, 2);
    function child_manage_media_custom_column($column_name, $post_id) {
    if( ‘dimensions’ != $column_name || !wp_attachment_is_image($post_id))
    return;
    list($url, $width, $height) = wp_get_attachment_image_src($post_id, ‘full’);
    echo esc_html(“{$width}Γ—{$height}”);
    }

    /* WC Vendors Pro – Add a new link(s)to the Pro Dashboard */
    function new_dashboard_page( $pages ){
    $pages[] = array( ‘label’ => ‘My Account’, ‘slug’ => ‘https://your-website-here.com/my-account/edit-account/&#8217; );
    return $pages;
    }
    add_filter( ‘wcv_pro_dashboard_urls’, ‘new_dashboard_page’ );

    Brendon
    Participant

    Hi Anna, thanks so much but when i add that code to my child theme functions.php file it kills my site and I have to ftp in and remove that code?

    Brendon
    Participant

    may i also please ask what plugin do you guys use for your notifications on this site?

    in reply to: Auctions not displaying in Orders Tab in dashboard #66983
    Brendon
    Participant

    ok thanks Anna will have to wait till you guys sort that then πŸ™‚ many thanks for your time replying.

    While Ive got you something on a different subject is it possible to add the first and last name fields to the store settings tab in the dashboard? that way they can essentially edit their profile in full in the Store tab?

    in reply to: Auctions not displaying in Orders Tab in dashboard #66905
    Brendon
    Participant

    Also vendors don’t have the option to resist auctions when they post them… Should they?

    in reply to: Auctions not displaying in Orders Tab in dashboard #66904
    Brendon
    Participant

    Expired auctions don’t show under products they disappear from the vendor side but I can still see them in products under admin login. If they went unsold or any auction that didn’t meet reserve disappears. Items that sold successfully show under orders now

    in reply to: Auctions not displaying in Orders Tab in dashboard #66878
    Brendon
    Participant
    
    ### WordPress Environment ###
    
    Home URL: https://majesticpetauctions.co.za
    Site URL: https://majesticpetauctions.co.za
    WC Version: 3.0.7
    Log Directory Writable: βœ”
    WP Version: 4.7.5
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: βœ”
    Language: en_US
    
    ### Server Environment ###
    
    Server Info: Apache/2.4.6
    PHP Version: 5.6.30
    PHP Post Max Size: 32 MB
    PHP Time Limit: 120
    PHP Max Input Vars: 1000
    cURL Version: 7.29.0
    NSS/3.21 Basic ECC
    
    SUHOSIN Installed: –
    Max Upload Size: 24 MB
    Default Timezone is UTC: βœ”
    fsockopen/cURL: βœ”
    SoapClient: ❌ Your server does not have the SoapClient class enabled - some gateway plugins which use SOAP may not work as expected.
    DOMDocument: βœ”
    GZip: βœ”
    Multibyte String: βœ”
    Remote Post: βœ”
    Remote Get: βœ”
    
    ### Database ###
    
    WC Database Version: 3.0.7
    WC Database Prefix: wp_
    woocommerce_sessions: βœ”
    woocommerce_api_keys: βœ”
    woocommerce_attribute_taxonomies: βœ”
    woocommerce_downloadable_product_permissions: βœ”
    woocommerce_order_items: βœ”
    woocommerce_order_itemmeta: βœ”
    woocommerce_tax_rates: βœ”
    woocommerce_tax_rate_locations: βœ”
    woocommerce_shipping_zones: βœ”
    woocommerce_shipping_zone_locations: βœ”
    woocommerce_shipping_zone_methods: βœ”
    woocommerce_payment_tokens: βœ”
    woocommerce_payment_tokenmeta: βœ”
    
    ### Security ###
    
    Secure connection (HTTPS): βœ”
    Hide errors from visitors: βœ”
    
    ### Active Plugins (28) ###
    
    Admin Bar Disabler: by Scott Kingsley Clark – 1.3
    amr shortcode any widget: by anmari – 3.5
    BravoWP's Helpdesk: by BravoWP.com – 2.2.1
    Easy Watermark: by Wojtek SzaΕ‚kiewicz – 0.6.0
    File Manager: by  – 4.1.5
    Imsanity: by Shane Bishop – 2.3.9
    LoginPress - Customizing the WordPress Login: by WPBrigade – 1.0.14
    Nav Menu Roles: by Kathy Darling – 1.8.6
    Popups - WordPress Popup: by Damian Logghe – 1.7.1.1
    Quick Page/Post Redirect Plugin: by anadnet – 5.1.8
    Regenerate Thumbnails: by Alex Mills (Viper007Bond) – 2.2.6
    Restrict Usernames: by Scott Reilly – 3.6
    Scroll Back to Top: by Joe Sexton – 1.1.3
    Shortcodes Ultimate: by Vladimir Anokhin – 4.9.9
    Social: by Social Media Share Buttons By Sygnoos – 2.0.7
    UpdraftPlus - Backup/Restore: by UpdraftPlus.Com
    DavidAnderson – 1.13.1
    
    WC Force Pass: by Leo Baiano – 1.0.2
    WC Vendors Pro Simple Auctions: by WC Vendors – 1.0.3
    WC Vendors Pro: by WC Vendors – 1.4.3
    WC Vendors: by WC Vendors – 1.9.11
    WooCommerce PayFast Gateway: by WooCommerce – 1.4.3
    WooCommerce Quantity Increment: by Automattic
    WooThemes – 1.1.0
    
    WooCommerce Simple Auction: by wpgenie – 1.2.13
    WooCommerce: by Automattic – 3.0.7
    WooCommerce Helper: by WooCommerce – 1.7.2 – Network enabled
    Yoast SEO: by Team Yoast – 4.8
    WP-SpamShield: by Scott Allen – 1.9.11
    Forums - wpForo: by gVectors Team (A. Chakhoyan
    R. Hovhannisyan) – 1.3.0
    
    ### Settings ###
    
    API Enabled: βœ”
    Force SSL: βœ”
    Currency: ZAR (R)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: auction (auction)
    external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    ### WC Pages ###
    
    Shop base: #4 - /auctions/
    Cart: #5 - /cart/
    Checkout: #6 - /checkout/
    My account: #817 - /my-account/
    
    ### Theme ###
    
    Name: Essential WooCommerce Auction Theme Child
    Version: 1.2.30
    Author URL: http://prospekt.hr/
    Child Theme: βœ”
    Parent Theme Name: Essential WooCommerce Auction Theme
    Parent Theme Version: 1.2.34
    Parent Theme Author URL: http://prospekt.hr/
    WooCommerce Support: βœ”
    
    ### Templates ###
    
    Overrides: essential/woocommerce/archive-product.php
    essential/woocommerce/cart/shipping-calculator.php
    essential/woocommerce/content-product.php
    essential/woocommerce/content-product_cat.php
    essential/woocommerce/content-single-product.php
    essential/woocommerce/loop/add-to-cart.php
    essential/woocommerce/loop/pagination.php
    essential/woocommerce/single-product/product-thumbnails.php
    essential/woocommerce/single-product/related.php
    essential/woocommerce/single-product/short-description.php
    essential/woocommerce/single-product/up-sells.php
    essential/woocommerce/single-product.php
    
    ### WC Vendors Pro ###
    
    Theme Compatability: -
    Pro Dashboard Page: βœ” - #306
    Feedback form page: βœ” - #307
    Vendor Shop Permalink: βœ” - vendors/
    
    ### Templates ###
    
    Overrides: –
    
    in reply to: Auctions not displaying in Orders Tab in dashboard #66814
    Brendon
    Participant

    Hi can anyone help please? Auctions are not showing in wcvendors dashboard not in vendor or buyer orders if they win and if auctions don’t sell they don’t show in products. Changed to wp store theme and it’s the same

    Brendon
    Participant

    Anna your a Gem I have ticked thats and its now working thank you so much! WCVendors support truely is second to none!

    Brendon
    Participant

    you’re a legend Anna thanks Ive added those and the extra fields and its working exactly what we wanted within WCVendors! No we need a page for the accounts department to be bale to see all the users account details to pay them each week is there a way to create a private page only admin can see that will list all users with the details we just created within that payments page?

    in reply to: Products empty on Pro Dashboard #64394
    Brendon
    Participant

    Hi Anna now when I activated the storefront theme they show up just fine when I switch back they no longer do so I think we getting somewhere but should def be theme related from what this has shown (dont know if what you did fixed part of it because the storefront didnt how them either but does now) I will contact the theme developer again and put the ball in his court πŸ™‚ thank you so much for your help its very much appreciated. All the best and take care

    in reply to: Products empty on Pro Dashboard #64305
    Brendon
    Participant

    Hey Anna another thing I was meant to ask a while back and got busy was how do I get the my account page to look nice like your one on your site (image attached) you will see when you go to my account on the majestic site its very bland…? is that a wcvendors thing or a theme config?

    in reply to: Products empty on Pro Dashboard #64303
    Brendon
    Participant

    thanks so much Anna! I have no idea haha thats why I need to call the guru’s in πŸ˜€

    in reply to: Products empty on Pro Dashboard #64277
    Brendon
    Participant

    Hi Anna, the theme and simple auctions etc all came as one bundle so not sure why its wonky…?

    Please see screenshot attached the vendors can still not see their products to edit or modify i can send you this users login details if you wish to login with it and check for yourself?

    in reply to: Products empty on Pro Dashboard #64270
    Brendon
    Participant

    Hi Anna thanks so much for your reply, I am already running WC Vendors v1.4.3

    in reply to: Products empty on Pro Dashboard #64204
    Brendon
    Participant

    Hi no it doesnt and the theme developer has logged in and said everything is fine and all up to date i need to contact wcvendors to resolve this issue… so now Im lost I dont know who the issue is with, they logged in and said its a plugin issue and you said its a theme issue. Please help

    in reply to: Products empty on Pro Dashboard #63672
    Brendon
    Participant

    thanks will contact theme developer and see if they can fix it!

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