frangoaoalho
Forum Replies Created
-
Right, I solved it like this:
.elementor-nav-menu–dropdown .elementor-item:focus, .elementor-sub-item:focus {
background-color: #ffffff !important;
}
Now, I there any better solution than that?
Appreciated,Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Hook to Sliding Menu / Pop UpFigured it out. Appreciated.
Dear Kris, I hope to find you well.
I fixed it, literally jut by adding the position: fixed !important.
Appreciate your support, and the fact that with your screenshot, I needed to add a gap to the Product Category displayed, as it was altogether > ‘inSnack’ instead of ‘in Snacks’.
Regards,Hello @iapial, hope you are well.
Any news?
Best regards,Thanks a lot @iapial
I will be attentively awaiting your feedback.
With my best regards!Dear Pial, I hope you are well.
Appreciated your prompt reply and I and looking forward to hearing from you soon.
With my best regards,
Forum: Plugins
In reply to: [WooCommerce] Order Table in My AccountDear Miss Roxy, hoep you are well.
I am kind of stuggling to increase the orders table width.
I am doing width: x% and adjusting margins, but I believe there should be a more neat and corrct way to do it.
Any thoughts?
Thans a lotForum: Plugins
In reply to: [WooCommerce] Order Table in My AccountYou gotta simplify this stuff for guys like me please lol
Forum: Plugins
In reply to: [WooCommerce] Order Table in My AccountGot it
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-total { font-size: 0px; } td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-total::before { font-size: 14px; }
Thanks
Forum: Plugins
In reply to: [WooCommerce] Order Table in My AccountCouldnt attach screenshot, sorry
Dear Mr Clayton, hope yo are well!!
Thank you for clarifying, I will be attentively awaiting for Google to sort it.*
Although, you mentioned links not working in my Shop Page, could you specify?
Many thanks Mr Claytonn!UPDATE!
I basically gave it a quick fix for now by
.swipper-wrapper.product {
display: none !important;
}
Until you guys can help me out ??Also I noted that what is not swapping for the notice message is the
.woocommerce ul.products
and.woocommerce-page ul.products
Maybe that is were the stuff is breaking.
Can you help me please- This reply was modified 1 year, 2 months ago by frangoaoalho.
hey, thanks again for the reply.
Yes, I am. The woocommerce shortcode is not the most flexible, intuitive and maneuverable unfortunately.
I noticed thatBy default your .wpf-no-products-found is set to display: none always.
If I display:block instead then it will always be showing up.
I tried several ways like:
JS:
<merlin-component id=”merlin-code-summarizer” class=”merlin-code-summarizer”></merlin-component>jQuery(document).ready(function ($) {
// Check if the 'No products found' message is displayed
if ($('.wpf-no-products-found').is(':visible')) {
// Hide the products container if the message is displayed
$('.elementor-posts-container').hide();
}
});
or<merlin-component id=”merlin-code-summarizer” class=”merlin-code-summarizer”></merlin-component>j
Query(document).ready(function($) {
// Wait for the filter form to submit
$('.wpf-widget form').submit(function() {
// Set a timeout to ensure that the filter has taken effect
setTimeout(function() {
// Check if there are any products displayed
if ($('.products').children().length === 0) {
// If no products found, display the "No products found" message
$('.wpf-no-products-found').css('display', 'block');
} else {
// If products found, hide the "No products found" message
$('.wpf-no-products-found').css('display', 'none');
}
});
});- This reply was modified 1 year, 2 months ago by frangoaoalho.
Thanks for the prompt reply.
– What would you advice for a solution, use the shortcode instead?
–I cant see the ‘product filter unaccessible dropdown’ issue, either on mobile, tablet, laptop or desktop. (Both on Chrome, Safari and on Edge
Thanks for the heads up, its fixed! Now its accessible ??- This reply was modified 1 year, 2 months ago by frangoaoalho.
- This reply was modified 1 year, 2 months ago by frangoaoalho.