harrydevries
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] orders don’t show up in reportsOrders do not show up in the old historical Woocommerce > reports. This is how in woocommerce old versions always we checked the order related reports.
However in the new: statistics > overview etcetera so under the statistics tab. Everything shows fine.
So i am using this now and i guess you can put this issue on solved as far as i am concerned.
Forum: Plugins
In reply to: [WooCommerce] orders don’t show up in reportsThanks!!
I have done all the things you mentioned (as a matter of fact i did all these steps already a few times before)
Nothing changed still everything on zero.
https://pastebin.com/dPvJf12nForum: Plugins
In reply to: [Weight Based Shipping for WooCommerce] Polylang problemIn case somebody else encounters this issue the solution:
1) i deleted all my shipping options i had configured (i only left the shipping zones intact) So the shipping zones showed without any shipping options configured.
2) i added all the shipping options for all zones again so i configured all the shipping options again.
After that i tested and now it works in both languages.
So it seems that because i configured the shipping options BEFORE I INSTALLED POLYLANG that it was not working with polylang.
But when i configured the shipping options once more after installing polylang now they are working with polylang.
Thanks for this good reply Piotrek.
Indeed i have another question: I am using Polylang for a multi language store. I used weight based shipping for woocommerce plugin for the shipping and it worked perfectly but unfortunately it does not work with polylang as soon as i click another language flag and i want to checkout the checkout process breaks because of the shipping.
Does your plugin work with Polylang? And if yes what do i have to do to make it work well with polylang? i have noticed polylang is a very complicated multilanguage plugin that’s being plagued with millions of issues but i kinda like it because i don’t like machine translations, i like to be in charge myself of all the translations and everything and polylang offers this.
So the question: does your shipping plugin work with polylang and if yes how to make this work together?
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] How to display store review form on sitehttps://frisiamunten.nl/reviews/
still same generic form not showing the additional questions and subrating questions
i got it by using shortcode [cusrev_reviews_rating] in a function after shop loop item title
add_action(‘woocommerce_after_shop_loop_item_title’, ‘display_custom_review_rating’, 2 );
function display_custom_review_rating() {
echo do_shortcode( ‘[cusrev_reviews_rating color_stars=”#FFBC00″ product=”” group=”false”]’ );}
in css style hide the generated rating:
ul.products li.product .star-rating{display:none!important}
maybe somebody else can benefit from it, always willing to share.
- This reply was modified 1 month, 4 weeks ago by harrydevries.
Forum: Themes and Templates
In reply to: [Storefront] quantity selector in sticky cartadd_action( ‘storefront_sticky_single_add_to_cart’ , ‘woocommerce_quantity_input’, x );
somehow it does not hook anything, i tried multiple functions but it does not show any output.
Maybe, perhaps i am doing something wrong
I solved it for now. I changed to Ti wishlist plugin and it does the job in the loop.
Forum: Themes and Templates
In reply to: [Storefront] at 769 breakpoint cart icon to stay in headerits still in localhost.
No worries i already fixed it
the problem lies not in the load more products plugin. I disabled this ajax plugin and the issue is still the same.
Thx Shahzeen i already gave the 5 star review
i decided to do the ones i cannot change through functions (too lazy now to do poedit) with css as follows (perhaps for somebody who also wants to make button text for instance shorter for smaller viewports). This in the go to cart (in dutch: “Naar winkelwagen”) button in the mini dropdown cart in header. The text as you can see is very long and i wanted to make it a lot shorter.
p.buttons a:not(.checkout) {
color:transparent!important;
position:relative;
}p.buttons a:not(.checkout)::after {
content:”Naar mand”;
font-family: “Overpass”, sans-serif, Roboto;
font-optical-sizing: auto;
font-weight: 500;
letter-spacing:0.03em;
color:#fff;
position:absolute;
display:block;
top: 50%;
left: 45%;
transform: translate(-50%, -50%);
}- This reply was modified 5 months, 2 weeks ago by harrydevries.
Forum: Themes and Templates
In reply to: [Storefront] change mobile menu breakpoint from 769 to 1069no worries managed to solve it nicely.
Forum: Themes and Templates
In reply to: [Storefront] wishlist left to header cart in topit worked a charm thanks!
Forum: Themes and Templates
In reply to: [Storefront] New picker select pseudo elementreview added