Forum Replies Created
- AuthorPosts
- WWWParticipant
Can you confirm that you can reproduce this bug on your test site?
WWWParticipantOK, This took some time, but finally i know what is causing this.
It’s the
WooCommerce Frontend Manager – Ultimate
When I disabled it. Everything started working normally. Even with the https://themify.me/themify-product-filter which I thought was causing the problem earlier.The filtering is causing all products to appear on the page, but it is not causing the “Do not mix auctions and regular products on shop page. Just show auctions on the auction page (auctions base page)” option to become inactive and buggy.
I quess the reason why filtering is causing all products to appear instead of just auctions or regular products is because I have a single shared categories for both types and the themify filter does not take in to account that the page is signed either the auctions only or the regular products only.
When i disable both the themify filter and the WCFM-Ultimate, then both pages work normally, but I have no advanced filtering available.Please investigate, why the WCFM-Ultimate is causing this issue for me.
WWWParticipantActually, no to my last post.
The problem still exists. I am trying to figure out what is causing this. Debuging plugin shows no errors.
WWWParticipantHi and thanks for response.
I found the plugin causing the issue. Its https://themify.me/themify-product-filter
As soon as I deactivated it, everything started working as normal.
Thats a shame because its an awesome product filtering plugin!WWWParticipantI managed to solve the issue #2. There was info missing on the testsite vendor membership billing amount cell. I probably accidently used comma instead of dot to write down decimals.
WWWParticipantAbout the subscription plugins.
It seems that the only official subscription plugin currently is the “woocommerce subscriptions”?
It’s too expensive for my needs.
Is there another more affordable option available?Currently I used “YITH WooCommerce Subscription” free version, but this seems to work only on backend.
WWWParticipantYes, this I know, but my question was about the 3 options which we can choose. What are those?
Direct Charges
Destination Charges
Transfer ChargesWWWParticipantPlease explain what is a “Stripe Split Pay Mode”? And what do those options in there mean exactly?
Could not find anything about it.WWWParticipantYes, the default options are a OK, but they miss some features.
I am talking about carrier focused shipping plugins, which apply the shipping cost automatically based on the buyer and seller address or a parcel machine selected by the buyer.
WWWParticipantStill an issue. Now less stuff is suggested, but the progress bar still shows only 44% and all field that are available are filled in.
Attachments:
You must be logged in to view attached files.WWWParticipantThanks. The snippet works fine. I disabled the bar until its fixed.
WWWParticipantYes, that is correct. I apologize for my lack of clear explanation in the first post. Thanks for quick response and I’ll be waiting for that little fix! 🙂
WWWParticipantAnd of course my custom plan page is set under the membership settings.
WWWParticipantThere is not that much to configure. Point me to custom member options page tutorial or say what and where i have to configure. As far as i know there is only a
settings/dashboard page and in there an option to set a membership page.My custom membership page has a subscribe buttons copied from the created memberships.
When those buttons are clicked, an applicant is sent to /vendor-membership/?vmstep=registration
and then to the /vendor-membership/?vmstep=payment
and then redirected to paypal sandbox account (on the test site that is). https://www.sandbox.paypal.com/cgi-bin/webscr#/checkout/subscription
Applicant now clicks “Cancel and return to test facilitator’s Test Store”
… and is redirected to /vendor-membership/?vmstep=cancel page which is the default membership options page, not my custom made membeship options page.Is there anything else important?
WWWParticipantOk, I figured out that if I have Membership option short code in the page, or if I have WCFM default member option page with the “wcfm_vendor_membership” short code then the registration completes a OK, but this is a problem because I want to use a custom member options page. I do not want a membership option short code on that page.
Also, If a vendor applicant is directed to paypal and he clicks “cancel and return to merchant” link, he will be directed to default membership option page NOT to the custom membership option page. This is also an issue.
I would like to get rid of the “wcfm_vendor_membership” option short code and the default membership option page.WWWParticipantOK, thanks I got the side bar solved. The problem was in quotation marks which are not the same as mine if copy-pasted. The rest I can probably get better with some css, but I would definitely prefer my own custom pages.
WWWParticipantThanks for reply. The shortcodes in text a widget sidebar do not work for me. I double checked and there is no typo’s or anything. Overall, the store layout and the stores page with a shortcode [wcfm_stores] is way too space wasting in my opnion.
If you could provide me a solution how could I use my custom theme based layout pages for vendor shop and vendors list, that would be just awesome. Please.WWWParticipantI think Netta has a similar issue to mine. I think the default vendor store page is not a best looking one. Here is a screenshot of my demo site vendor store page in a second attachment.
What I am looking for is a custom store page similar to my rehub theme original looks like the first attachment.
Would be awesome if I could set up a custom vendor store instead of the original one. I am not a coding expert, but perhaps a snippet for this purpose is possible?Attachments:
You must be logged in to view attached files.WWWParticipantI definitely vote for single product, multiple vendors feature.
WWWParticipantIf I set a commission rate for a specific category, example “front page product category”, and set it higher than the vendor default commission, then would the category commission rate override the vendor default rate for the product(s) in this category? Im yet to test this, but that would be cool and let me charge a higher rate for front page products.
WWWParticipantThanks for a reply.
So it is not possible for me to set a fixed fee + percentage for all vendor levels?WWWParticipantSo in case of Woocommerce marketplace, which setting overwrites the other? Lest say I have WCMP setting of 0.5usd + 5% per order (admin fee) and I have a WCfM set to 10%? How much it is then?
WWWParticipantI added an extra function to put another bandage on this problem, but I would also like to have this as a functionality.
function filter_site_upload_size_limit( $size ) {
$current_user=wp_get_current_user();
if ( is_user_wcmp_vendor($current_user->ID) )
// Set the upload size limit to 500KB for users lacking the ‘manage_options’ capability.
if ( ! current_user_can( ‘manage_options’ ) ) {
// 500 KB.
$size = 1024 * 500;//chnage this code as oer your size requirement
}
return $size;
}
add_filter( ‘upload_size_limit’, ‘filter_site_upload_size_limit’, 20 );This will help me to limit vendor single uploads and therefor making them harder to build up a huge media library without actually using it.
WWWParticipantNo, the product limit works fine.
Do you understand what the problem is for me? Lets say I am a malicious user. I make a free account in some wcfm marketplace and will be limited to lets say 1 free post. I can get in to media library by clicking add thumbnail and upload gigabytes of media without really using it for its purpose. Instead I can freely use that uploaded media URL and share it anywhere and to anyone. In other words, I could use it like a cloud storage If i want to.
As an admin I can run daily cleanup and delete the non-indexed media, but that is not a solution but a bandage.
WWWParticipantInteresting, why isn’t this working for me then. I restricted the disk space for vendor to 1 and its showing on the dashboard, but I can still upload a ton of files exceeding the 1MB limit a 1000 times if i want to.
Logged as an admin I can see all those files uploaded as a vendor on wp back-end media gallery.
So the feature is not working. - AuthorPosts