edosantillana
Forum Replies Created
-
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Show cart only on mobileHello @rusesandrino83
Is your website online? Maybe I can check and help you with that. Let me know.
Regards.
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Show cart only on mobileHello.
@xootix & @rusesandrino83 the second option worked for me, thank you..xoo-wsc-basket[style*='block'] {
display: none !important;
}Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Show cart only on mobileHello.
Did you figured out how to display the floating basket only on mobile?
@xootix your answer is not working, there is a direct html style=”display:block” on the .xoo-wsc-basket div.<div class="xoo-wsc-basket" style="display: block;">
<span class="xoo-wsc-items-count">5</span>
<span class="xoo-wsc-bki xoo-wsc-icon-basket5"></span>
</div>Thanks in advanced.
Hello.
?How can I contact your team?
Thank you for your quick response.
Best regards.Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Last update broke my CSSHi,
Thank you for your quick answer.
There is no conflict with other plugins and we are using the Storefront theme.
We just figured out that the last update brings a lot of changes in the plugin frontend.css file, that is the problem because those new changes modify ours.
If someone else have the same problem you have to check the changes and fix them in your child themes css file.Best regards.
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Reviews not showing in all languagesHello.
Our first thought was to contact WPML for this issue, so we did, they told us to contact the plugin author looking for support, then you told us to contact WPML, now we are finding out that any of both can help us with this issue, so please if someone else have the same problem and know how to resolve it, let us know. Thank you.Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Reviews not showing in all languagesHello.
Thank you for your answer.
Yes, we know that, but it only works for the single product page and exclusively in the Reviews tab, the reviews amounts are not showing next to the product title, stills showing “0 reviews” and the same for categories and shop pages, and most important it also not showing on the reviews slider or carousel at the homepage. How can we fix that?Best regards.
Hello Yordan.
Review done! Thanks again.
Best regards.Hello Yordan.
Works like a charm, great support.
Thank you very much.Best regards.
Hello Yordan.
Now it works! The underscore behind the meta key made the trick. Thank you very much.
I just have a couple of doubts:
You mention: I just added a check to the code in order to display previous generated invoices, even if the customers didn’t include the VAT number.I notice that the invoice button appears only in the customers that included the VAT number at it suppose to be, but the check to the code that you mention should show all the invoices, even if the customer didn’t include the VAT number. As I said, it works fine now, at it suppose to be, but your argument makes me think.
The invoice button appears with a red dot over it, it means that I have to click in the button in order to send the invoice to the customer? Because once click the button a green check appears, or the invoice is sent automatically once the order was completed? In the settings is selected that way, once Completed.
Thank you very much Yordan, great plugin and the best support.
Regards.Good morning Yordan.
?Any ideas? ?Am I doing something wrong?
Thank you.
Regards.Hello Yordan.
Thank you for your quick answer.
I think it’s not working because the Actions column shows nothing, and inside the plugin settings the first invoice number stills showing the number 1, so I think that any invoice was created despite some customers filled the VAT number option.
Any ideas? I copy/paste again the code in case you can see something strange./**
* Enable invoice only if the customer fill the NIF/CIF field
*/
add_filter( ‘wpo_wcpdf_document_is_allowed’, ‘wpo_wcpdf_allow_invoice_if_customer_has_vat_number’, 10, 2 );
function wpo_wcpdf_allow_invoice_if_customer_has_vat_number( $allowed, $document ) {
if ( $document->type == ‘invoice’ ) {
if ( $order = $document->order ) {
$allowed = ( ! empty( $order->get_meta( ‘billing_nif’ ) ) ) ? true : false;
}
}
return $allowed;
}Thank you Yordan.
Regards.Hello Yordan.
Very sorry for answering so late.
I’m not sure if it is working, this is my code:/**
* Enable invoice only if the customer fill the NIF/CIF field
*/
add_filter( ‘wpo_wcpdf_document_is_allowed’, ‘wpo_wcpdf_allow_invoice_if_customer_has_vat_number’, 10, 2 );
function wpo_wcpdf_allow_invoice_if_customer_has_vat_number( $allowed, $document ) {
if ( $document->type == ‘invoice’ ) {
if ( $order = $document->order ) {
$allowed = ( ! empty( $order->get_meta( ‘billing_nif’ ) ) ) ? true : false;
}
}
return $allowed;
}The meta key is billing_nif. Where can I found the invoices already sent, in case it is working? I look for them but can not find them. In case it is not working and need some changes, how can I test it without sending real invoices? Thanks in advanced.
Best regards.
Forum: Themes and Templates
In reply to: [Storefront] Make Mini-cart display with click instead of hoverSomeone?
Hello @stuartduff. I don’t see any mouseover event called from navigation.js so I’m not sure this is the right file to look out for a solution to this problem.
And @jarretc, once you get to open the widget with a click you can notice that the last product item of the list is removed because of the css line you recommend, so this solution is not accurate neither.
This problem can look simple, but is turning into quite a challenge.
Hope anyone can help. Thanks in advanced.
Regards.Forum: Themes and Templates
In reply to: [Storefront] Make Mini-cart display with click instead of hoverHello @jasonpkc
Did you find out how to make it work? I’m looking for the same solution, I want the header cart button shows the minicart on click, not on hover.
Hope you can help me. Thank you.Regards.