Forum Replies Created
-
AuthorPosts
-
dfaldin
ParticipantOK. Thanks for your answer. I am going to upgrade to Pro something later. Currently I am testing overall functionality of my site, then I will invest on some upgrades 🙂
Regards
dfaldin
ParticipantOK. I have done that way and it works. 🙂
Thanks for your help.
Regardsdfaldin
ParticipantHello,
I added $user_id = get_current_user_id(); before $shop_name = get_user_meta( $user_id, ‘pv_shop_name’, true );, and now it seems it is OK 🙂
dfaldin
ParticipantHello,
Thanks for your answer.
I have tried this combination:
/* Add avatar before the Seller Info tab text */ add_filter( 'wcv_before_seller_info_tab', 'avatar_wcv_before_seller_info_tab' ,10, 1 ); function avatar_wcv_before_seller_info_tab( $message ) { $shop_name = get_user_meta( $vendor_id, 'pv_shop_name', true ); $message = get_avatar($vendor_id, 200) . '<br>' . $shop_name . '<br>' . '<br>'; return $message; }
But that does not work. I have missed something again 🙂
dfaldin
ParticipantHello,
I have still one unexpected problem here:
I am trying to put the shop name below avatar. I have tried$message = get_avatar($vendor_id, 200) . '<br>' . get_user_meta( $vendor_id, 'pv_shop_name', true ) . '<br>' . '<br>';
and$message = get_avatar($vendor_id, 200) . '<br>' . $shop_name . '<br>' . '<br>';
But none of them work.Please do you have a solution for this?
Thanks
dfaldin
ParticipantThanks
This is resolved. 🙂
Regardsdfaldin
ParticipantHello,
I am here again. 🙂
With this code I can get avatar on the right place:
/* Add avatar before the Seller Info tab text */ add_filter( 'wcv_before_seller_info_tab', 'avatar_wcv_before_seller_info_tab' ,10, 1 ); function avatar_wcv_before_seller_info_tab( $message ) { $message = (get_avatar($vendor_id, 200)); ?><br /><?php return $message; }
But I can not get break line after that. ?><br /><?php does not work that job.
dfaldin
ParticipantOK. I am not some coding expert, but I hope I will succeed to do that. 🙂
Thanks
Regardsdfaldin
Participantthe code is without strong
dfaldin
ParticipantSorry, the code is without
/** * */ public static function seller_info_tab_panel() { echo get_avatar($vendor_id, 200); ?><br /> <?php echo self::$seller_info; }
dfaldin
ParticipantOK
Thanksdfaldin
ParticipantHi Ben,
Everything is now OK.
Thank you for your help.Regards
dfaldin
Participant@mcgregormedia – It is interesting that I can update any product in the dashboard, not only the product to be entered and after that it is displayed on the sale_products page.
dfaldin
ParticipantHi Ben,
Thanks for your answer. That’s great news about version 1.3. 🙂
Until then, I have to deal with this what I have.
Hope the version 1.3. coming soon.Regards
dfaldin
ParticipantHello mcgregormedia,
I am using WPUF because of subscription based product posting.
The code above works OK for me, but I have now still two issues:
1. To display the product which is on sale on the page with Woocommerce shortcode [sale_products per_page="12"] I have to manualy update any product in admin dashboard (I do not know why).
2. The No. of items on stock is not displied in Product page if there is not at least one of the prices entered (_regular_price or _sale_price).
I would appreciate for any help.Thanks
Regardsdfaldin
ParticipantHello Ben,
Thank you for your answer. I think this has been resolved.
The seller gets mail notification that their vendor application has been pending. And that is OK.
Please can you suggest me how the seller can get mail notification: approved or denied.Thanks
Regardsdfaldin
ParticipantHello,
I’m sorry, I think that first point is resolved, because I tested registeration with administrator email address and got the two same email notifications. Apparently administrator and seller get the same email notifications.
But the secend point is not resolved. “Apply to become a vendor?” does not work on the page Shop Settings.Thanks
dfaldin
ParticipantOK. Thanks. Now it is all solved.
I hope that you will also have all these features in your upcoming pro editions.
Regardsdfaldin
ParticipantHello again,
I think with WPUF it can be solved subscription issue, for now. But I am still looking for a solution for a product inquiry form with possibility of sending enquiry to seller (instead of site owner).
I have checked many of them (included Woo Product Enquiry Form) but currently they do not have that possibility.
Please do you have any suggestion?Thanks
dfaldin
ParticipantOK
Thanksdfaldin
ParticipantHello again,
Please is there a way to set thumbnail image for shop on this page?
Thanks
dfaldin
ParticipantThank you for your suggestions.
With this job I am going in the other direction.
I am going to make subscription based multi vendor shop. I will try to use WP User Frontend for allowing the number of posting products per time unit. And also to integrate some Product enquiry plugin. So there would not be direct sale. The sales would be realised in further mutual communication between seller and buyer. So no shopping cart.Regards
dfaldin
ParticipantOK
Thanks
Regardsdfaldin
ParticipantI have solved this. The problem was with my local server. I had to adjust one Apache module.
Thank you for your help.
Regardsdfaldin
ParticipantCurrently I have these Permalink settings:
– Common setting: Default
– Product permalink base: DefaultShould I change them and should I add something in Optional fields?
Thanks
dfaldin
ParticipantOK. Thank you. I’ll work on it.
Regardsdfaldin
ParticipantHello,
Here’s me again 🙂
What do you thin about this plugin: https://wordpress.org/plugins/wp-user-frontend/ or https://wedevs.com/products/plugins/wp-user-frontend-pro/
It says in FAQ for Subscription Features:Yes, WP User Frontend has built in subscription features and you can specify the number you want to allow for each post type for each package.
Suppose you are making a subscription pack for $30 and you can allow the user to make 30 blog posts, 10 product submission and 20 order for 1 month.Could this plugin work with WC Vendors?
Thanks
dfaldin
ParticipantThank you @ben. I will consider your suggestion.
-
AuthorPosts