Forum Replies Created

Viewing 47 posts - 1 through 47 (of 47 total)
  • Author
    Posts
  • in reply to: Vendor categories #39632
    Mikaelfs
    Participant

    Hi Anna,

    Thanks for the reply.

    I do most of the coding myself, learning by doing. But this one is out of my scope, would really appreciate if you could come up with some guidance regarding this task 🙂

    I’m using Woocommerce Product Filter (https://codecanyon.net/item/woocommerce-product-filter) and I saw someone else asking about it regarding this filter aswell.

    Thanks,

    Mikael

    in reply to: Review customer name #28502
    Mikaelfs
    Participant

    Ohhh, now I get it 🙂 Thanks Ben

    in reply to: Vendor Store slug? #25341
    Mikaelfs
    Participant

    Ah, great, then I know nothing is wrong with the files 🙂

    But as for the page title (top of browser and when sharing the page etc.), shouldnt that title be the current stores name?

    BR

    in reply to: Vendor Store slug? #25338
    Mikaelfs
    Participant

    I’ve looked in to that with no luck.

    Got latest version of Free & Pro.
    Deleted all my child themes templates.
    Switched to Storefront.

    Very strange that it can’t get the right breadcrumbs..

    in reply to: Store settings not loading #23438
    Mikaelfs
    Participant

    Ahh, great thanks alot Ben! For help and update
    Yes, I started yesterday to clean up templates and css, have some work to do 🙂

    Damn, that code worked to save display and save the ACF fields for the store, but then it’s acf_form_head(); crashing it, since it’s hooked after the name.. time for some trial and error work!

    While we’re at it, have saved up couple of questions. First one is out of the scope of the support but if you have time I’m really interested in the answer.
    1) My orders will always have only one vendor, since I sell don’t use a cart and send the customer directly to the checkout. What I want to do is to be able to display the customers phone number in the CSV export. I can see how it’s setup in “class-wcvendors-pro-export-helper” with the output from the orders. But I can’t mess with that file since it will be overwritten. Any tip for best practice?

    2) This is a customize question I’ve touched by before, but I have put some time to look at it now how it’s setup. I sent it to Jamie earlier today, but don’t know if it’s the right mail ([email protected]).
    I need to add “Subscription” as a product type in the WC Vendors Pro frontend edit. I’ve been looking at the Woocommerce Subscription files and this product type is a extension of the regular product type with some additional fields. When it’s like this I presume it’s “easier” to implement it in the front using the existing code? So I wonder how much time you would estimate it to implement this customization?

    Tried to attach the php-file for Subscriptions but file isn’t supported. But it’s
    -192 lines of code
    -7 more variables than the regular product:
    class WC_Product_Subscription extends WC_Product_Simple {

    var $subscription_price;

    var $subscription_period;

    var $subscription_period_interval;

    var $subscription_length;

    var $subscription_trial_length;

    var $subscription_trial_period;

    var $subscription_sign_up_fee;

    Sending as private since it’s about customizing.

    BR 🙂

    in reply to: Howto: Add ACF fields to frontend shop edit #23412
    Mikaelfs
    Participant

    Ohh, sorry. Wasn’t clear.

    The pages loads but when I save it stops to load there.
    The changes is saved.
    When I reload (f5) the page it’s still not loading.
    If I click the tab (settings) it reloads and works again.

    in reply to: Howto: Add ACF fields to frontend shop edit #23409
    Mikaelfs
    Participant

    Strange..

    Memory Limits is 256Mb,
    Last error message is from the 5th

    in reply to: Howto: Add ACF fields to frontend shop edit #23389
    Mikaelfs
    Participant

    Hi Ben,

    There’s no error message for this error in the log…
    I deleted my own template and tried it with the original, and I still get the same error.
    Loading of the page stops at after the store name..

    BR
    Mikael

    in reply to: Howto: Add ACF fields to frontend shop edit #22934
    Mikaelfs
    Participant

    Hi Ben,

    I got it to work, but I bet it’s better a “pro” makes a best practice 🙂 I didn’t use the Pro Controller. But atleast it displayed the fields and save them to the backend.

    This is the code:

    add_action('wcvendors_settings_after_seller_info', 'wcv_add_acf_fields');
    function wcv_add_acf_fields() {
        acf_form( array(
            'form' => false,
            'return' => false,
            'post_id' => 'user_'.get_current_user_id() 
        ) );
    }

    Also, I’ve had a problem from the start that after I save the Store settings the page reloads with only the store name displayed (but of course settings are saved). I’m attaching image for reference. Is this something you’ve seen before?

    in reply to: Howto: Add ACF fields to frontend shop edit #22894
    Mikaelfs
    Participant

    Hey guys,

    I got this to work earlier, but not anymore. Is there any change in the code after the 1.2 update?

    Thanks for any help 😉

    in reply to: Questions 2.0 #21855
    Mikaelfs
    Participant

    Ahhhhhhhhhhhhh, *LIGHT BULB*
    Now it all makes sense, I thought “wcv_after_vendor_store_header” contained the output of products ! Haha

    All the changes in 2.0 that first felt like a huge uphill race has taught me alot instead! 🙂

    Yes, and it’s alot of fun practicing “trial and error” aswell… 🙂

    Thanks alot for the help!

    in reply to: Questions 2.0 #21828
    Mikaelfs
    Participant

    Hi Ben,

    I’m sending some private dumps, so hope private on this is ok.

    2) Yes, but I just want to “get” the products and let the “rest” of wcv_after_vendor_store_header execute separately..
    As of now I have setup the store-page with tabs and products is one tab, created in single-vendor_store.php, and now I won’t be able to use any of the customization I’ve done. And I’m all new to CSS and PHP, but I do it around the clock now so I’m learning alot. But stil this issue puts me in a spot.

    Any help would be much appreciated since I don’t want to change my design… :/

    Best Regards

    in reply to: Questions 2.0 #21686
    Mikaelfs
    Participant

    Thanks for the reply.

    I got it to work with Advanced Custom Fields late this night, so that’s good 🙂

    1) Okey, so before I setup my stores in /vendorstores/[the stores name] and it was by default a vendor listing when going to /vendorstores/ – What I have to do now is to create a page with that shortcode and set the permalink of the page to /vendorstores/ ?

    2) I have searched all my files (WC Vendors free & Pro) for “wcv_after_vendor_store_header”, but can’t find it? Since I use tabs in the store I only want to fetch the listing of the products of the store (to put in a tab) and then let “the rest” of what’s includeded in wcv_after_vendor_store_header execute after the tabs…
    Got it to work before using the templates which output the store products within a tab, and now I have to find another way to do it.

    BR
    Mikael

    in reply to: Questions 2.0 #21574
    Mikaelfs
    Participant

    Also,

    I had setup many fields with Advanced Customs Fields for the post type (vendor).
    I now changed it to be “role = vendor” for the fields. But now I don’t know how to get them displayed in the store header anymore…

    in reply to: Questions 2.0 #21563
    Mikaelfs
    Participant

    Yes, I use a child theme.

    But I have set up the vendor listing and store tabs as vital parts of the page.

    1) Is there no way anymore to list the vendors?
    2) Since I have to redo the store tabs someway now, I wonder where I can see what’s hooked in “wcv_after_vendor_store_header”?
    Since I used the templates single-vendor_store & store-products earlier to make tabs (Products/Contact/About), I have to find a new solution now where I only output the products from “wcv_after_vendor_store_header”…

    in reply to: Subscription Fix #21329
    Mikaelfs
    Participant

    Hi again Jamie,

    How’s it going? 🙂

    in reply to: Getting fatal ERROR on Product page #21182
    Mikaelfs
    Participant

    Okey, great. I’ll contact them. Thanks!

    in reply to: Getting fatal ERROR on Product page #21178
    Mikaelfs
    Participant

    Seems to be with Woothemes Subscriptions…

    in reply to: Getting fatal ERROR on Product page #21172
    Mikaelfs
    Participant

    Ben,

    I have a staging site and one that I will use (I update when the one I will use after testing new stuff),
    I installed Woo 2.5 on one site and when working with it this evening I found this error, first I thought it was me, but after a while I tried it on the other site there I didn’t have Woo 2.5.
    There the product edit page worked perfectly before I upgraded to Woo 2.5, after the upgrade it crashed with the same error message…

    Attaching reference

    in reply to: Getting fatal ERROR on Product page #21157
    Mikaelfs
    Participant

    Me to!

    I’m currently setting everything up, so didn’t know if I caused the error first… But now I know that it’s because of the Woocommerce 2.5 update 🙂

    in reply to: Vendor feedback & ratings #20991
    Mikaelfs
    Participant

    Cool, sounds great!

    in reply to: Vendor feedback & ratings #20989
    Mikaelfs
    Participant

    I’m getting the same issue testing on the dev-site. Try this:

    1) http://dev.wcvendors.com/shop/clothing/happy-ninja/
    2) Product ratings >
    3) ***** ( 15 ratings ) View All Ratings >
    4) http://dev.wcvendors.com/vendors/vendor-1s-test-store/?ratings=all

    It doesn’t display the ratings, atleast what I can see

    Earlier today I browsed the forum, and there was another thread involving this link (but not same problem), I tried that persons site and there it works like it should…
    thread: https://www.wcvendors.com/help/topic/no-vendor-ratings-showing-on-product-page/#post-11704

    in reply to: Vendor feedback & ratings #20968
    Mikaelfs
    Participant

    Hey again,

    The vendor rating system worked in a other way than I thought before, now I understand it. Very nice!

    Just need to go thru my issue from yday again…
    THE problem is that I don’t get the vendors feedback when I click on the link (/?ratings_all)
    It only displays the title “Customer Ratings”… (Yes, there is feedback, it’s visible on the vendors product page)

    If I just can get this to work then I can setup the tab with some changes in single-vendor_store.php…

    BR
    Mikael

    in reply to: Vendor feedback & ratings #20932
    Mikaelfs
    Participant

    Great, got it!

    Thanks for help

    in reply to: Vendor feedback & ratings #20914
    Mikaelfs
    Participant

    Super quick replies 🙂 Shortcode would be cool

    I got tabs setup already for product, contact etc, just needed to add this one to be all set.

    Since I “just” want to display the same that’s already done in single product tabs in store page…

    Row 400 in class-wcvendors-pro.php
    $this->loader->add_action( ‘woocommerce_product_tabs’, $this->wcvendors_pro_ratings_controller, ‘vendor_ratings_panel_tab’ );

    I guess it’s “vendor_ratings_panel_tab” I want to grab 🙂

    in reply to: Vendor feedback & ratings #20909
    Mikaelfs
    Participant

    Oh, could be good to attach image! haha 😉

    in reply to: Vendor feedback & ratings #20908
    Mikaelfs
    Participant

    Hehe, thought I did that above (second part of initial question).
    But I can try to be more clear, attaching image for reference.

    1) This is from a “Single product” and the Vendor ratings tab.
    2) This is from the Vendor store (selling the same product) when clicking on reviews.
    3) This is what’s displayed when /?ratings_all is active…

    So, how can the vendors rating be displayed on product page but not vendor?

    And by that, “the struggle” is that I’m trying to find a way to display these ratings in a custom place. And since it’s displayed in the single product page tab I guess there should be a somewhat easy way to echo it…?

    BR
    Mikael

    in reply to: Vendor feedback & ratings #20905
    Mikaelfs
    Participant

    Ahh, okey, then I got it 🙂

    Still struggling with the display of the vendor ratings, many hours of (trial and) error 😉 any ideas there?

    in reply to: Admin sales report per vendor #20816
    Mikaelfs
    Participant

    Yes, figured it would be something like that 🙂

    Actually sent a PM to Jamie couple of hours ago asking about possiblity to custom work: front end Variations / Attributes for Subscriptions. Very nice that regular variations / attributes only is somewhat a month away. It’s only 3 fields that I need included in the subscription variant that isn’t in the regular variant. 🙂

    in reply to: Admin sales report per vendor #20814
    Mikaelfs
    Participant

    Thanks for the instant reply 🙂

    1) Oh, of course it’s that.. didn’t think about that
    2) Cool, and can see by your other posts now that it won’t be too far in the future neither! Heya!

    in reply to: Admin sales report per vendor #20810
    Mikaelfs
    Participant

    Okey, thanks. Yes, seen it but didn’t know about the output of it. Have been waiting or the Stripe gateway to get ready so that I could try everything out with real orders. But tried it out now with your test gateway.

    It’s for the accounting (both me and vendors). That’s a wish from me for the future updates 🙂
    To be able to export sold products by vendor, filtered by a date selector (will mainly use monthly sales).

    Two questions occurred now when trying out the gateway:
    1) If a customer leaves a order note in the checkout, the note is not visible in the vendor front end order list.
    2) I tried it out with a variable product and the attribute of the variable is neither visible in the order list.

    BR
    Mikael

    in reply to: Subscription Fix #20756
    Mikaelfs
    Participant

    @digitalchild

    Hi! From my understanding you haven’t had time yet for this fix? U just wanted to check in for a update and estimate, because I’m sort of in a limbo right now. Choosed to go with WCV because of this functionality was in place… Totally understand the issue with the code from before but really need to know a estimate since this puts us of our timeframe…

    Best Regards,
    Mikael

    in reply to: Vendor Dashboard setting not loading #20477
    Mikaelfs
    Participant

    Sure thing.

    Okey, got it. Thought he was on his way with it now, since he said he would begin with it week 1 😉 Eager because it’s a vital part in my release and its the main thing missing. But i’ll keep cool and cross my fingers.

    in reply to: Vendor Dashboard setting not loading #20469
    Mikaelfs
    Participant

    Hi,

    I located the problem to be something with this code that I use:

    It seems to save the data but the user have to refresh the page because it won’t load by itself. Very strange.
    But hey, see that it’s not supported 🙂 I will continue trying 🙂

    Btw, wrong section of the forum, but do you know have it’s gone with your partner with the Stripe Subscription fix?

    Best Regards,
    Mikael

    in reply to: Subscription Fix #19111
    Mikaelfs
    Participant

    Hi,

    Can imagine moving overseas takes it time 🙂
    Thanks for the information! Now I get a sense of what kind of time frame we are talking about.

    Merry Christmas!

    BR,
    Mikael

    in reply to: Subscription Fix #19024
    Mikaelfs
    Participant

    Just logged in to see if there was any updates about it.
    I’m in the same situation, set it all up because of the integration with Woo Subscriptions and Stripe connect.
    I truly understand your problem with the coder that didn’t finish it upp, but I really need some sort of estimate, because I might have to change much of my plans if it’s to far in the future (I’m sort of on a deadline).
    Are we talking days, weeks or months?

    Best Regards,
    Mikael

    in reply to: PHP Error Setting up Stripe #18046
    Mikaelfs
    Participant

    Hi,

    Ahh sorry, just used to click private as default.

    Okey thanks then I know a approx price for that task.

    How’s it going with the fixes of Stripe Subscriptions? When will it be available?

    BR
    Mikael

    in reply to: PHP Error Setting up Stripe #17553
    Mikaelfs
    Participant

    Thanks for the reply,

    Got it!

    Is the integration of the Subscription forms in the front end something that you do as a customize job? If so, about how much would it be?

    BR
    Mikael

    in reply to: PHP Error Setting up Stripe #17518
    Mikaelfs
    Participant

    Hi,
    Great, thanks for info!

    Regarding Stripe, is the Managed accounts feature something that you have in mind for the near future?

    And also, maybe wrong part of the forum, but when we are talking about Subscriptions: When you release the variants for the frontend of the Pro Vendor Dashboard, will it include subscription variants (and simple subscription) ?

    Best Regards,
    Mikael

    in reply to: Edit product layout #15540
    Mikaelfs
    Participant

    Ok, thanks!

    Last thing, when is the next update of the plugin approx.? (My theme bug is removed in it)

    in reply to: Edit product layout #15477
    Mikaelfs
    Participant

    Thanks! Glad to hear that, especially since I’m new at it 🙂

    1) Got it, should have searched the files before I posted it to you.

    2) Yes I found that part, thanks. But for the other part of the question is there any simple way to just display Vendors name with php or any way to remove “add to cart” from ‘woocommerce_after_shop_lop_item’ ? [attached image with markup]

    3) I have 4 customization tasks that I would like to have a estimation of when you got time and approx what it would cost. I found your “Paid support”-page but I want to include images for the explanations and it’s not possible there. Where should I send it?

    Best Regards,
    Mikael

    in reply to: Edit product layout #15399
    Mikaelfs
    Participant

    Hi again!

    1) Image sizes (image_issue.jpg)
    Noticed that I had maintenance activated, now its off: http://se.subscribr.com/butiker/gronsaksbutiken/ (Site slow because of lame host right now)
    Attaching print screens highlighting the problem. Tried changing: Settings > Media > Sizes without any luck of the banner

    2) Content Product display (product_content.jpg)
    I guess this is a Woocommerce “issue” but it seems that Vendor name is hooked to the “Add to cart” part of product display.
    This code in Content_Product.php displays Price, Add to Cart and Vendor name: do_action( ‘woocommerce_after_shop_loop_item’ );
    I don’t want “Add to cart” to be displayed and actually want to display Vendor rating instead here, but I guess that’s something that could be saved for when it’s time for external customization, but if you could point me in a direction for this issue I would appreciate it alot!

    Thanks for all the quick replys

    in reply to: Edit product layout #15356
    Mikaelfs
    Participant

    Hi, thanks for the reply!

    Can I also find how to only pull out “Vendor name” instead of getting add to cart and duplicate of the price? In the KB that is 🙂

    This is the url: http://se.subscribr.com/butiker/gronsaksbutiken/
    Do you also need to login?

    Middle of customizing it so it’s kind of messy. Have decided to do what I can do first and then I would like to hire you for some customizing, but instead of thing here and there – everything at once.

    Mikael

    in reply to: Edit product layout #15302
    Mikaelfs
    Participant

    Btw, forgot a problem I’ve been struggling with today.

    The store banner and icon is displayed with bad resolution. They are right resolution in the media library but this is what banner link looks like:
    /uploads/2015/11/5-220×150.jpg

    Seems to take the thumbnail size? How do I fix this?

    Thanks again!

    in reply to: Edit product layout #15300
    Mikaelfs
    Participant

    Hi again

    The theme I’m using displays “add to cart” and “vendor name” on hover over product.
    I just wanted to display the sellers name in the description, I took away the hover effect and instead put the php code in the description. But I just want the name and not cart and the additional “product price”. (Attached image)

    I’m using this code: do_action( ‘woocommerce_after_shop_loop_item’ );

    Is there any SAFE way to edit this so that only the name appears?

    And what is the best way to remove the text before the vendor name (Sold by:), is it by removing the text in my child theme from languages\wcvendors-pro.pot? Or is there a better way?

    Thanks in advance! 🙂

    in reply to: Vendor Page etc. #14178
    Mikaelfs
    Participant

    1) I’ll mail it to you
    3) Ahh, got it 🙂

    I’m new working with WP and I actually chose it partly of your plugin. I tried to customize the templates, amazing stuff! Vendor grid and customizing the vendor page easy as ABC!

    in reply to: Vendor Page etc. #14145
    Mikaelfs
    Participant

    Hi,

    Thanks for the reply!

    1) I’m using Atelier (http://themeforest.net/item/atelier-creative-multipurpose-ecommerce-theme/11118909), is that a theme that you have tried with?

    2) Cool, will try to customize it in my childtheme during next week 🙂

    3) I got Woocommerce > WC Vendors > Vendor Ratings > And here I can check that box, but I don’t get any ratings on the 2 stores I’ve set up. Could I’ve missed anything? Else I have to get back to you with page info in private.
    (Other info as store description, name, banner etc. could be seen on the vendor page)

    Thanks for a great plugin btw!

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