superkot
Forum Replies Created
-
Forum: Plugins
In reply to: [Menubar] Center Menu Items on pageThis one was tricky, I’ve spent some time to make it work. But the author’s response is hillarious!
Anyway, if someone still needs the answer, the following must be applied to .sf-blue (or .sf-gray if that is the case)
display:table; margin:auto;
Forum: Plugins
In reply to: [WooCommerce] Shopping cart and wishlist not working non-logged inI have just tried it again and looks like you have it solved.
Forum: Plugins
In reply to: [WooCommerce] Shopping cart and wishlist not working non-logged inHave you tried disabling the wishlist plugin? Would the cart behave the same if you did?
Forum: Plugins
In reply to: [WooCommerce] Product title alignmentYou need to apply fixed height to your .content-product .product-image-wrapper
It would require a number of different heights for different screen resolutions though.Forum: Plugins
In reply to: [WooCommerce] Internal Server Error in cart when trying to make a purchaseHave you tried disabling Woocommerce Subscriptions plugin and switching to default template?
Forum: Plugins
In reply to: [WooCommerce] Show button for nominated category only?Wrap your echo in
if( is_category( ID ) ) { ... }
where ID is the required category’s id
Forum: Plugins
In reply to: [WooCommerce] Hide variation price, if 0.00?If you need to hide the prices for all products in your store that are variable, the following could work:
.variations_form .price {display:none;}
add this to your theme custom CSS.
Forum: Plugins
In reply to: [WooCommerce] Internal Server Error in cart when trying to make a purchaseTurn on debug mode in WordPress and get the debug.log for the event.
Also you need to contact your hosting support and request the server error logs for the event (or get them yourself, if you have the access).Forum: Plugins
In reply to: [WooCommerce] Multiple order by in WooCommerce Ask QuestionYou need something like this as a part of your $args array:
'meta_query' => array( 'relation' => 'AND', 'for_price' => array( 'key' => '_price', 'compare' => 'EXISTS', ), 'for_rating' => array( 'key' => '_wc_average_rating', 'compare' => 'EXISTS', ), ), 'orderby' => array( 'for_price' => 'asc', 'for_rating' => 'desc', )
Forum: Plugins
In reply to: [WooCommerce] Cyrillic Attribute Slugs for Archive PagesAttribute slug is limited to 27 chars max. Применение is %D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D0%BD%D0%B5%D0%BD%D0%B8%D0%B5%0D%0A, which is way longer.
Forum: Plugins
In reply to: [WooCommerce] Is there a plugin for that?Hi,
You dont need to create user’s account. All you need is to create order and send payment email to the required address.Forum: Plugins
In reply to: [WooCommerce] Remove / Hide WooCommerce Product IDI dont think it makes much difference in this case. If you use Chrome, right click on that line and select “inspect element”, then see if the line has peculiar class or id.
Forum: Plugins
In reply to: [WooCommerce] Show Product Quantity – On WordPress Product PageThe “Excel like product attribute and tag manager for WooCommerce” plugin might be what you are looking for.
As I can see from the Stackoverflow page, you have found your solution. And I am not completely sure that this is a bug, not all of data is supposed to appear when the new order is created.
Forum: Plugins
In reply to: [WooCommerce] TRANSALTION ISSUESome text might be coming from the theme you are using, you can also fix that with Loco Translate.