Forum Replies Created
- AuthorPosts
- sarahParticipant
I don’t work with the developers – just another user like you and I ran across this issue a couple weeks ago. Glad it works for you now.
sarahParticipantThis was an issue on the WordPress 5.4 update. They just released 5.4.1 and it appears to be working now (still testing in my stage environment).
sarahParticipantWhat setting did you save to fix this? I had the colors working great in my stage environment, but then after I pushed them to live, they reset to the default settings. I can’t seem to get the custom colors back, even though they show up correctly in the Dashboard Style settings page.
April 8, 2020 at 3:33 am in reply to: Integrate with WooCommerce Services or similar for USPS Shipping #116570sarahParticipantI’ve looked at that one a few times, but from what I understand reading about it, it doesn’t provide the ability to print USPS labels. My vendors all use USPS, so I’m trying to figure out an easy way to integrate that ability into my site.
sarahParticipantI need this also and am having the same problem with the variations. I have the appropriate attribute enabled, but using the code above, the variations section does not change and load the appropriate variation fields. Even if I uncheck the attribute and then recheck it, the variations section does not trigger and open correctly.
sarahParticipantWCLOVERS support is amazing! They fixed both of my issues. I’ve included the code below in case anyone else runs across these problems and needs help.
1) Custom sort order doesn’t work for attribute terms
Add to child functions.php
// Custom sort order for attribute terms
add_filter( ‘wcfm_product_attribute_terms’, function( $args ) {
if( isset( $args[‘orderby’] ) ) {
$args[‘orderby’] = ‘menu_order’;
}
return $args;
});2) Product category and attribute term drop-downs do not display properly. (I think this was a conflict with Select2 and the MyListing theme.)
Add to child style.css
/* Select2 fix for Add Product dropdowns */
.wcfm-dashboard-page .select2-container–default .select2-selection–multiple .select2-selection__choice__remove:before {
display: inline-block;
font-size: 10px !important;
}
.wcfm-dashboard-page .select2-container–default .select2-selection–multiple .select2-selection__choice {
display: inline-block !important;
width: auto !important;
padding: 0 5px !important;
}sarahParticipantCraig, you’re totally right. I switched to Twenty Twenty theme and the attributes box populates the selections all into the box rather than as an extended list. I’m using MyListing theme, so I guess I need to contact them for a fix. I attached a screenshot so you can see what it looks like.
The custom sort order is still an issue though.
Attachments:
You must be logged in to view attached files. - AuthorPosts