Forum Replies Created

Viewing 38 posts - 1 through 38 (of 38 total)
  • Author
    Posts
  • in reply to: Stop using WC Vendor #60931
    Georgi Petrov
    Participant

    Hi,
    Why my licence is deactivated???

    I say we are planning to move away but not just yet as we need to get the new site set. Now with this deactivation, our market is a total mess.

    Any idea why this is happening? Thant much mess it is so we can’t edit any page or landing page to hide all this.

    I did deactivation and activate again but nothing changing.

    All I get is this message: Warning: strstr(): Empty needle in /home/flyerroo/public_html/wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store.php on line 82

    Thanks

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #56745
    Georgi Petrov
    Participant

    It’s ok Anna. No big deal.

    Thanks

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #56700
    Georgi Petrov
    Participant

    Hi Ali. I understand you have some issues with this site but I don’t have any so far and will appreciate if you don’t spam my posts as I don’t want to lose my topics.

    Find another way of communiv=cate with the admins.

    Thanks

    in reply to: WC Vendor Commisions #49785
    Georgi Petrov
    Participant

    Ok, Jamie. I will sort this myself. As you mention it will be great to have it as an option in case something go wrong. I don’t think anyone else offers this option and if you add to WC Vendor it will be smashing.

    Thanks

    in reply to: WC Vendor Commisions #49697
    Georgi Petrov
    Participant

    Can I update the commissions for already sold items or not?

    in reply to: WC Vendor Commisions #49696
    Georgi Petrov
    Participant

    I found it. Sorry. I was looking the general setting and not the commission one. This is my mistake. I was thinking this commission is for coupons only and set it to 1%

    Got the idea now.

    Thanks

    in reply to: WC Vendor Commisions #49695
    Georgi Petrov
    Participant

    Ok, how I miss that? Can you send me a screenshot or tell me where I am doing things wrong, please.

    in reply to: WC Vendor Commisions #49690
    Georgi Petrov
    Participant

    Also for some reason, some of the order was pending. In digital downloads, the order should go straight after purchase. No idea why this happening.

    in reply to: WC Vendor Commisions #49687
    Georgi Petrov
    Participant

    Yes, it happening for all. I set the commission in WC Vendor and is set to 80%. Do you want access to look at this?

    in reply to: WC Vendor Commisions #49682
    Georgi Petrov
    Participant

    I am still waiting for Anna or Ben to reply. Really need to find out what’s going on.

    Thanks

    in reply to: Error message line after saving product #48129
    Georgi Petrov
    Participant

    Cool, thanks 🙂

    in reply to: Error message line after saving product #48124
    Georgi Petrov
    Participant

    Hi, guys. After few weeks I finally manage to spend some time and investigate the error I have for all vendors. I mean is not really an error but annoying message after uploading new product. It shows on top of the page. The line is this – Warning: urlencode() expects parameter 1 to be string, array given in /home/flyerroo/staging/1/wp-includes/formatting.php on line 4694

    I did create staging site and disable all plugins. Only left WC Dashboard, WC Dashboard Pro, and Woocommerce. Sorry to say this but nothing change. Same warning message comes up soon I test the site only with this 3 plugins active.

    Back to you now. Do you think is the theme or some bug with your plugin. Everything works normally. I just want to make this warning disappear.

    Thanks

    in reply to: Error message line after saving product #46774
    Georgi Petrov
    Participant

    Hi, Anna. The code you send me works perfectly to hide inventory and variable products tabs. I test it on staging website and everything is fine. Today I will try to find out what cause the error message after uploading file. I’ll get back to you.

    Thanks

    in reply to: Hide Product Type and Inventory from Pro Dashboard #46728
    Georgi Petrov
    Participant

    I will create staging website today and may try then. This way no messing with the live site. I’ll let you know if I can work out 🙂

    in reply to: Hide Product Type and Inventory from Pro Dashboard #46638
    Georgi Petrov
    Participant

    No, because if I tick the boxes I also hide the add file option and I sell only digital products. This mean I need this option. I have added code to my functions.php

    The first one make virtual and downloadable selected by default:
    <?php
    function cs_wc_product_type_options( $product_type_options ) {
    $product_type_options[‘virtual’][‘default’] = ‘yes’;
    $product_type_options[‘downloadable’][‘default’] = ‘yes’;
    return $product_type_options;
    }
    add_filter( ‘product_type_options’, ‘cs_wc_product_type_options’ );

    The second one hide the quantity option on single product:
    function default_no_quantities( $individually, $product ){
    $individually = true;
    return $individually;
    }
    add_filter( ‘woocommerce_is_sold_individually’, ‘default_no_quantities’, 10, 2 );

    This way the vendor doesn’t have to worry about this. Now my next step is to hide all this from the vendor dashboard. All I need is the vendor to add prize and the downloadable file. I don’t want them to see this options at all.

    in reply to: Error message line after saving product #46516
    Georgi Petrov
    Participant

    Thanks, Anna. I will get this done. Speak soon I create the staging site and we can look the error message on uploading to find out what is the issue.

    in reply to: Error message line after saving product #46408
    Georgi Petrov
    Participant

    After few hours of learning and experimenting, this is the best I can but I am happy for the moment. I will look how to overlay the banner on left side only. Sending you the code as well to check if something does not belong there.

    .wcv-header-container #inner-element {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: #00b8c7;
    max-width: none;
    height: initial;
    padding: 10px 10px;
    }
    .wcv-header-container #inner-element .store-info, .wcv-store-msg {
    position: relevant;
    line-height: 1.1;
    text-align: centre;
    bottom: 10px;
    left: 20px;
    font-size: 16px;
    color: #363636
    }
    .wcv-header-container #inner-element .store-icon {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    float: left;
    margin-left: 80px;
    }
    .wcv-header-container #inner-element ul.social-icons li a {
    display: inline-flex;
    font-size: 1.2em;
    color: #363636;
    }
    .wcv-store-address-container {
    background:none;
    }
    .wcv-header-container #banner-wrap {
    position: relative;
    background: #363636
    }

    in reply to: Error message line after saving product #46384
    Georgi Petrov
    Participant

    Ok, lovely. I am about to create staging website soon. Been dealing with 2.7GiB database and was crazy cleaning everything. Soon is ready I will contact you to see if we can fix the error we talk before in the vendor dashboard.

    Thanks

    in reply to: Error message line after saving product #46348
    Georgi Petrov
    Participant

    Hi, I hope you can reply soon to the questions above. And one more thing I just found is the numbers for pages when vendor looks at their products. I don’t know if they can be in horizontal line and not vertical.

    in reply to: Error message line after saving product #46139
    Georgi Petrov
    Participant

    Ok, first question is regarding the dashboard. I have attached a screenshot. Only need some size adjustment and color change. screenshot 1

    Secondly is regarding the shop banner. I want to make it more relevant to my site and really use the image instead of being hidden under white overly. I have attached screenshots as well. screenshot 2 and 3

    Last question for now. I like to know if it’s possible to add image size requirement on the product future image and product gallery images – 000x000px min size (0000x0000px ideal for hi-res). This way vendors know what to upload. We will have it on our shop owner requirements page but I think it will be really good to show on the dashboard as well. Many other sites have it. Hope this is possible and few small custom stuff as well. All is explained on screenshot 4

    Thank you, Anna

    in reply to: Error message line after saving product #45969
    Georgi Petrov
    Participant

    Hi, Anna. My server takes daily backup for everything on the website so this is not an issue. The problem I have is my 36 active plugins. Also, as admin, I can’t be a vendor and this will be crazy because every time I disable or enable plugin to check this error I have to log out, then log in and upload test product. I think at the moment I have to put this on hold and get few other things done.

    Do I need to open topic for every question or we can just keep going here. I promise is only few things to make the WC Vendor spot on my market.

    Thanks

    in reply to: Change Color of Buttons on Dashboard Page #45919
    Georgi Petrov
    Participant

    This is brilliant. No worries regarding the links. I will leave it as it is 🙂

    in reply to: Error message line after saving product #45873
    Georgi Petrov
    Participant

    Here is the warning and you can see it on the screenshot as well. I didn’t deactivate any plugins because everything was working perfectly for past 4 months with woocommerce vendor plugin. And because the site is live the life I don’t want to mess around. All other plugins perform just fine.

    in reply to: Change Color of Buttons on Dashboard Page #45869
    Georgi Petrov
    Participant

    I hope is fair to ask 2 more questions regarding the dashboard. This way the rest of the users can find all in one place.

    General what is the code to change the dashboard menu bar from black to my website main color #00b8c7?

    And the other one is related to both screenshots. This text showing only if you hover over.

    Thanks, Anna and I really hope Renne doesn’t mind my questions 🙂

    in reply to: Change Color of Buttons on Dashboard Page #45866
    Georgi Petrov
    Participant

    Brilliant, this worked just fine. I have few more questions but I will open a new topic for them. So far is been great and the new vendors finding really easy to use it.

    Thanks Anna

    in reply to: Change Color of Buttons on Dashboard Page #45840
    Georgi Petrov
    Participant

    Hi, sorry to interrupt this topic. Hope you don’t mind. I had the same issue and almost fix it fallowing Anna suggestion. However, my buttons are tiny and not near to the demo or yours Renne.

    How I can fix this?

    Thank you and one more time apologies if I did interrupt 🙂

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45305
    Georgi Petrov
    Participant

    After creating test user I did go over almost every process and the icon worked this time. Will keep eye on this. I presume it was something for that moment. My site is https:// and I’ll save this plugin just in case.

    Ok, after testing and setting up all for 2-3 hours now I have a small list of questions. I will open a new topic for them. However, so far all looks good and 97% I am happy. Just need to get this 3% correct and all will be smashing.

    Thanks Ben

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45246
    Georgi Petrov
    Participant

    Ok, one more thing I really need quick resolving is the icon for vendor profile. I can upload banner but not icon. See the screenshot.

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45220
    Georgi Petrov
    Participant

    To be honest some of the stuff in the knowledge base are not very clear. For example, I want to change the menu bar in vendor dashboard to match my website but I can’t find it. This will be good if it’s an option in actual WC vendor setting. I am just exploring the knowledge base and making notes for some questions 🙂

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45219
    Georgi Petrov
    Participant

    Hi, Anna. I did move to pro and for now, I will use it as it is. Maybe at a later stage, we will request some custom work. For now, the PRO version will be more than enough. I just need to make head around it but so far all look good and working.

    Thanks
    Georgi

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45187
    Georgi Petrov
    Participant

    Thanks for your amazing help Ben. I am ordering in next 30 min and will have some nice time tonight setting up.

    Speak soon.

    You can close this topic now and I’ll see you in pro support if need anything.

    Regards
    Georgi

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45145
    Georgi Petrov
    Participant

    I did what you suggest with the products and not sure but don’t see much difference. Log in as a vendor I still have access to all users and orders. You know I can’t allow vendors to see other users info or orders details from other vendors.

    Thanks

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45140
    Georgi Petrov
    Participant

    Hi Ben, thanks for your superb support and quick reply. Moneywise is not an issue. We are really pushing to make this marketplace working and being user-friendly for vendors and customers. Without investment, this won’t happened. We all know that.

    We did a custom design for vendors but now is the question to find the right person to make it work. So far we have one proposal but wanted to ask if you do this type of service. And if you offer custom work, what will be the cost? No idea really, just trying all my options before decide where the money will go. I have attached the screenshots for you to see our idea.

    Regarding the widget, PHP is not my thing. Not yet, anyway and I will leave it for now till a decision is made what is our next step.

    I am sure we’ll make it work. Just need to happen really soon 🙂

    Thanks
    Georgi

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45119
    Georgi Petrov
    Participant

    Sorry forgot to attach the screenshot

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45115
    Georgi Petrov
    Participant

    Ok, just faced another small issue. If you can see from the screenshot I attached I am log in as a vendor and in the dashboard, I can see Jetpack setting, PushCrew Setting, and most important All Users and orders.

    This is not really good. Any idea what I am missing here.

    Thanks

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45110
    Georgi Petrov
    Participant

    Cool, I think all works now. The only think I lost from WCPV is the widget I was using to display the vendor logo and info in the sidebar. Not a big deal really because now is on top of the single product. However, when I add logo to logo to shop description this cause the layout to move and I didn’t like it.

    I really like the idea of having a small banner on top of the products but, to be honest, if I can remove this and have a banner only over the vendor shop profile this will be splendid. Hope this make sense 🙂 and here is just example of what I look to achieve – https://creativemarket.com/DESIGNROOM1229

    Is the PRO version have more compatibility options?

    Let me know if you want to check my theme and let me know. I can send login details if you want to have a look.

    But overall so far is smashing.

    Thanks

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45032
    Georgi Petrov
    Participant

    Well the only vendors at the moment are me and my partner. Not big deal about our sell history. But we have people on stand by to join. I will do this transaction over the weekend and if all go well soon we will move to pro version because we need pro support. We invest a lot si far and planing this market to keep up and growing.

    I will get back to you if need some help. Thanks for your quick reply.

    in reply to: Replace WooCommerce Product Vendors with WC Vendors #45004
    Georgi Petrov
    Participant

    Here is the fresh system status 🙂

    
    ### WordPress Environment ###
    
    Home URL: https://flyerroom.com
    Site URL: https://flyerroom.com
    WC Version: 2.6.4
    Log Directory Writable: ✔
    WP Version: 4.6.1
    WP Multisite: –
    WP Memory Limit: 768 MB
    WP Debug Mode: –
    WP Cron: ✔
    Language: en_US
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 5.6.26
    PHP Post Max Size: 128 MB
    PHP Time Limit: 120
    PHP Max Input Vars: 3000
    cURL Version: 7.50.3
    OpenSSL/1.0.2j
    
    SUHOSIN Installed: –
    MySQL Version: 5.6.28
    Max Upload Size: 128 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 2.6.4
    : 
    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: ✔
    
    ### Active Plugins (35) ###
    
    ManageWP - Worker: by ManageWP – 4.2.9
    AffiliateWP: by AffiliateWP
    LLC – 1.9.3.1
    
    AffiliateWP - Affiliate Area Shortcodes: by Pippin Williamson and Andrew Munro – 1.1.4
    AffiliateWP - Affiliate Area Tabs: by AffiliateWP – 1.1.4
    AffiliateWP - Affiliate Product Rates: by Pippin Williamson and Andrew Munro – 1.0.4
    Far Future Expiration Plugin: by Tips and Tricks HQ – 1.3
    Google Analytics by MonsterInsights: by MonsterInsights – 5.5.3
    Google AdSense: by Google – 1.2.1
    Indeed Share Mega Theme Pack (Social Share&Locker Pro Add-On): by indeed – 1.3
    Indeed Social Share & Locker Pro: by indeed – 6.8
    Jetpack by WordPress.com: by Automattic – 4.3.2
    Launcher: by MyThemeShop – 1.0.5
    WP Mega Menu: by MyThemeShop – 1.1.7
    MyThemeShop Theme/Plugin Updater: by MyThemeShop – 1.3
    PushCrew: by Wingify Software Pvt Ltd – 1.1
    Rating-Widget: Star Review System (Premium): by Rating-Widget – 2.8.3
    Say What?: by Lee Willis – 1.7.1
    Tesla Login Customizer: by TeslaThemes – 1.3.4
    WooCommerce Stripe Gateway: by Automattic – 3.0.5
    WooCommerce Menu Cart: by Jeremiah Prummer
    Ewout Fernhout – 2.5.7
    
    WooCommerce Product Vendors: by Automattic – 2.0.20
    WooCommerce Social Login: by WooThemes / SkyVerge – 1.8.0
    WooCommerce: by WooThemes – 2.6.4
    WooCommerce Helper: by WooCommerce – 1.7.1
    Yoast SEO Premium: by Team Yoast – 3.7.1
    WP Notification Bars: by MyThemeShop – 1.0.1
    WP Review Pro: by MyThemesShop – 2.1.4
    WP Shortcode by MyThemeShop: by MyThemeShop – 1.4.2
    WP Smush Pro: by WPMU DEV – 2.4.5
    WP Subscribe Pro: by MyThemeShop – 1.3.7
    WP Super Cache: by Automattic – 1.4.8
    WP Tab Widget: by MyThemeShop – 1.2.5
    WP User Avatar: by flippercode – 2.0.7
    WPMU DEV Dashboard: by WPMU DEV – 4.2
    Yoast SEO: WooCommerce: by Team Yoast – 3.7.0
    
    ### Settings ###
    
    Force SSL: ✔
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    
    ### API ###
    
    API Enabled: ✔
    
    ### WC Pages ###
    
    Shop Base: #3810 - /shop/
    Cart: #3820 - /cart/
    Checkout: #3821 - /checkout/
    My Account: #3822 - /my-account/
    
    ### Taxonomies ###
    
    Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    
    ### Theme ###
    
    Name: Flyer Room
    Version: 1.0
    Author URL: 
    Child Theme: ✔
    Parent Theme Name: eCommerce by MyThemeShop
    Parent Theme Version: 1.1.9
    Parent Theme Author URL: http://mythemeshop.com/
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Overrides: mts_ecommerce/woocommerce/archive-product.php
    mts_ecommerce/woocommerce/cart/cart-totals.php
    mts_ecommerce/woocommerce/cart/cart.php
    mts_ecommerce/woocommerce/cart/shipping-calculator.php
    mts_ecommerce/woocommerce/checkout/form-checkout.php
    mts_ecommerce/woocommerce/checkout/form-coupon.php
    mts_ecommerce/woocommerce/checkout/form-login.php
    mts_ecommerce/woocommerce/checkout/review-order.php
    mts_ecommerce/woocommerce/content-product.php
    mts_ecommerce/woocommerce/content-product_cat.php
    mts_ecommerce/woocommerce/content-single-product.php
    mts_ecommerce/woocommerce/global/breadcrumb.php
    mts_ecommerce/woocommerce/global/form-login.php
    mts_ecommerce/woocommerce/loop/add-to-cart.php
    mts_ecommerce/woocommerce/loop/orderby.php
    mts_ecommerce/woocommerce/loop/sale-flash.php
    mts_ecommerce/woocommerce/myaccount/form-login.php
    mts_ecommerce/woocommerce/product-searchform.php
    mts_ecommerce/woocommerce/single-product/add-to-cart/grouped.php
    mts_ecommerce/woocommerce/single-product/add-to-cart/simple.php
    mts_ecommerce/woocommerce/single-product/add-to-cart/variable.php
    mts_ecommerce/woocommerce/single-product/meta.php
    mts_ecommerce/woocommerce/single-product/price.php
    mts_ecommerce/woocommerce/single-product/rating.php
    mts_ecommerce/woocommerce/single-product/related.php
    mts_ecommerce/woocommerce/single-product/sale-flash.php
    mts_ecommerce/woocommerce/single-product/tabs/tabs.php
    mts_ecommerce/woocommerce/single-product.php
    
    
Viewing 38 posts - 1 through 38 (of 38 total)