Forum Replies Created
-
AuthorPosts
-
That seems to work thank you! You may close this ticket.
Once you fill in billing fields on checkout page, it disappears. If you try that, you should see what I mean. Thanks.
Thank you. Oddly however, it goes blank once I enter shipping details and it calculates tax. It is there for a second, and then goes away. Any idea why?
Hello Mike and thanks for this. What I was hoping for was to leave the word TAX there, and after it, text showing (TAX EXEMPT?), with the TAX EXEMPT part linked with an internal URL (and underlined) to a contact page. Is that possible? Also, can I add this to Code Snippets plugin so it does not get overwritten on theme updates? THanks!
- This reply was modified 3 weeks, 5 days ago by Illingco.
Yes, where the arrow is, thank you!
I’m not sure I understand. I have linked the checkout page. Please advise if this helps and what the JS might be to do this. Thanks!
Either of the areas noted in the screen shot listed. Please advise, thanks.
September 16, 2024 at 11:19 pm in reply to: Trying to access array offset on false warnings? #1467148Woocommerce status logs. Can you fix it, perhaps with a new release?
September 16, 2024 at 3:42 pm in reply to: Trying to access array offset on false warnings? #1467110This reply has been marked as private.August 19, 2024 at 10:05 pm in reply to: Make Woocommerce Products on Shop & Archive pages same height #1464935Thanks, I think you can close this for now.
August 19, 2024 at 5:34 pm in reply to: Make Woocommerce Products on Shop & Archive pages same height #1464917I added it, but then took it out because it did not work. Instead I figured out and added this:
@media only screen and (min-width: 768px) {
.inner_product_header_cell {
position: relative;
min-height: 84px;
}
}August 16, 2024 at 4:14 pm in reply to: Make Woocommerce Products on Shop & Archive pages same height #1464784I don’t think that changes anything that I can see.
I found the correct combination of code, thank you. You may close this ticket.
Hi Mike. I don’t see that it does work. That code takes it down to Home / Shop, and that is it. I’m just looking to ideally truncate the category page if a user is on it, but have it back on single product pages, but not the title of that page. However, this seems to work as asked for:
function avia_breadcrumbs_trail_mod($trail) {
if (is_singular(‘product’) || is_archive()) {
unset($trail[‘trail_end’]);
}return $trail;
}
add_filter(‘avia_breadcrumbs_trail’, ‘avia_breadcrumbs_trail_mod’, 50, 1);- This reply was modified 4 months, 1 week ago by Illingco.
Thanks for this. But I meant do not show the category that the user is on no matter what page they are on, be it category page or single product page. Like if I am on the page for Plastic Round Open Head Pails as linked, the breadcrumb would be Home / Shop / Pails & Buckets without Plastic Round Open Head Buckets as the last part of the string, since the user is already on that page. But I would like the full string on single product pages but without the product title on those pages. If both are not possible please let me know. Thanks.
Thank you for this! Is there any way to remove the category or product title of the page the user is on? Otherwise this will do. Also, what might the CSS be to change color as a user hovers on each part of the breadcrumb? Thanks for all the support!
August 1, 2024 at 10:08 pm in reply to: Control location of “Sort by” and “Display” section #1463560I have just used CSS to hide them (copied below). Not even the PHP code to hide them worked without moving the sidebar into the main area and at bottom. What is odd now is that on every page load, the side bar items are squeezed together initially and then spread out to normal size. Seems modifying any Woocommerce Archive/Shop/Category page hooks makes it do that. Any idea why?
CSS to hide:
div .product-sorting {
display: none;
z-index:99!important;
}- This reply was modified 4 months, 3 weeks ago by Illingco.
No I turned the snippet that moves those to the page bottom off for now and wanted to wait for verification that the PHP code supplied works ok. I have activated it and you can see on the linked page. Currently it is running as a Snippet on front end only. Please advise asap, thanks!
That works, thanks Mike! One other thing, how do I get rid of some of those sort options along with this snippet? Thanks again!
- This reply was modified 4 months, 3 weeks ago by Illingco.
Ismael, there seems to be an error on line 7 of your PHP snippet…
Snippet automatically deactivated due to an error on line 7:
Cannot redeclare function avia_woocommerce_frontend_search_params.I was curious about this too, but this did not appear to work. Further, I have asked in another thread if these elements can be moved to bottom of pages. Thanks.
And that wil fix banners AND nothing under tabs on initial page load? Thanks.
Is this a Woocommerce file or custom code for Enfold? If it is the former, it would break on WC update. Can it be added as a snippet instead? Which issue does this fix, the banner images being blank? What about the text under tabs not coming up on page load?? Thanks.
Hey Mike. I made some slight modifications to this, but I think this works. The only thing is that the “View all reseults” turns gray with a gray background on hover. If there is any small CSS change for that I’d love to see it. Also, is this creating a bigger gap below the main menu bar and sending content further down the page to start as the example page shows? Thanks!
- This reply was modified 7 months, 1 week ago by Illingco.
Yes that is my resolution and that is what I see, the bleed off the screen to the right. And the view all search results can be hard to see on hover and possibly cut off on the right as well.
Sorry my last reply did not go through. The ajax dropdown results go offscreen to the right, and the view all search results can be hard to see on hover and possibly cut off on the right as well.
Scratch that, I think I got it above 1440px. The issue seems to be the ajax dropdown goes offscreen…
Great thank you! What of that new code could be modifed to shrink the search width down a bit and align it right, away from the logo, but still just left of the cart icon? Thanks again!
Screen Resolution Test:
1920 x 1080Screen Width: 1920 pixels
Screen Height: 1080 pixels
DPR(Device Pixel Ratio): 1
Color depth: 24 bits per pixel -
AuthorPosts