bradfranklin
Forum Replies Created
-
i’m really interested in this functionality as well.
Forum: Plugins
In reply to: [WP-Invites] Where is the code field?I’m using Ultimate Members as well. That would be great if there was someway to have your plugin incorporated with UM.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Products in wp-admin not showing.UPDATE — I think it’s RESOLVED. Using credits points plugin. Even though they are not “products” they are showing up in the products count as well as database table. If I add all them up with the actual products they equal the total amount listed in the woocommerce – all products – section.
Forum: Plugins
In reply to: [Accordion] Accordion not opening/collapsing – Not workingGood news. Got it fix! Was trying to use the accordion shortcode within a duplicate widget created by a shortcode itself. Was calling it twice.
Found old closed forum answer.
yes. it will work with the wc vendors free version
Forum: Plugins
In reply to: [WooCommerce] Products Missing After WooCommerce Update 3.07Products are missing from my admin panel as well. This began a couple of updates ago. It shows I have 28 products (development site) but only shows 18. Settings are to show all, 100 results per page.
Help needed!
- This reply was modified 7 years, 5 months ago by bradfranklin.
Forum: Plugins
In reply to: [WooCommerce] Woo 3.0.7 – Products not showing in Wp-admin@lorro Didn’t know that these tools existed. On mobile. Will try it when on desktop late tonight. Will follow up on thread
Forum: Plugins
In reply to: [WooCommerce] Grouped product not working. Option to link missingHi @mikejolley
Wasn’t sure if this was fixed in woocommerce 3.0.6, woo subscriptions or woo memberships, but unfortunately issue over catelog visibiity remains.
Parent Group product – membership container
Child product 1 – One day membership
Child product 2 – two day membershipGoal:
NOT have the “membership products” show on the SHOP CATELOG PAGE but have them visible in the “a membership is required to purchase this item. Click (the membership product link) or login (login link) to make a purchase.”The membership product needs to be visible as a single product though.
Background
If setting visibility is set to search or hidden not only does it not show up on the Shop categlog page, but now disappears from showing as an option to purchase this membership when trying to purchase a membership only product.Woocommerce settings – memberships
Content Restricted Messages
To access this content, you must purchase {products}, or log in if you are a member.Any ideas? Tried to hide category from displaying on shop page but not working.
https://docs.woocommerce.com/document/exclude-a-category-from-the-shop-page/
/* Excludes products from a particular category on the shop page – WooCommerce Docs
* https://docs.woocommerce.com/document/exclude-a-category-from-the-shop-page/
*/
add_action( ‘pre_get_posts’, ‘j66_custom_pre_get_posts_query’ );function j66_custom_pre_get_posts_query( $q ) {
if ( ! $q->is_main_query() ) return;
if ( ! $q->is_post_type_archive() ) return;if ( ! is_admin() && is_shop() ) {
$q->set( ‘tax_query’, array(array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘slug’,
‘terms’ => array( ‘membership’ ), // Don’t display products in the membership category on the shop page
‘operator’ => ‘NOT IN’
)));}
remove_action( ‘pre_get_posts’, ‘j66_custom_pre_get_posts_query’ );
}
Forum: Plugins
In reply to: [WooCommerce] Grouped product not working. Option to link missing@mikejolley ?? Cool thanks!
Forum: Plugins
In reply to: [WooCommerce] Grouped product not working. Option to link missinghi @mikejolley .. Thanks for info. Also i had visibility of single products (that are part of the grouped product) set to “search”. i guess they need to be set at minimum to “catelog”.
i’d like to find a way to hide it from shop page though. will try css i guess
___
@123ana456 — Good question. Not sure. i have a feeling though you may have to do it manually.
Forum: Plugins
In reply to: [WooCommerce] Grouping option missing from Single Producti’m having this exact problem. i will start a new thread, reference this thread.
Forum: Plugins
In reply to: [View Admin As] plugin error on all attempts to view as anotherInteresting. Cool. Got it working. Thanks and thanks for building this useful plugin!
Forum: Plugins
In reply to: [Job Manager] Job Manager User Role Editor & PermissionsHi @neulaender378 Any luck solving this issue? I’m trying to do something similar but am seeing no assigned user role capabilities other than wp core read permissions for the employer userrole.
hi @jithinaj I too am using Woocommerce Product Vendors and am trying to figure this out. Any luck?
I’m not sure how to do this as Woocommerce Product Vendors has its own sign up shortcode [wcpv_registration]
i created a new UM form for registration, assigned it to a new UM userrole i named “UM Pending Dual”. i then synced it its “Pending Vendor Dual” (a new userrole i created; a duplicate of woocommerce product Vendors “Pending Vendor” role.
Next i created a new page and added the UM form shortcode from the UM Form I just created [ultimate member form_id=481]
(NOTE: replace form_id number with your form id post number.)One page can’t have two shortcodes, yes?
At this point I’d prefer Woocommerce Product Vendors NOT BE linked as a type of Ultimate Member to just get the workflow working.
Do you know by chance how to force Ultimate Member to not take over registration / sign up with Woocommerce Product Vendors? Possibly we can collaborate on a solution.
Forum: Plugins
In reply to: [Multiple Roles] Assign Multiple roles upon registration?hi everyone. i’m having the same need but i’m using Woocommerce Vendors and Ultimate Members.
i don’t see the addition default mode to have a user automatically assigned to two user roles when registering. Anyone figure this out? i think hard coding it may be my best bet if I can figure out how to do so.
ideas/suggestions?
thanks in advance for input.
Cc @aaronkin @mista-flo