Forum Replies Created
-
AuthorPosts
-
Thanks a lot, I disabled lazyload and the issue went away, We will reconsider this plug-in going forward.
Best,
JaimeThanks, Nikko. The trick didn’t work, unfortunately. Could you please share another tip? It only happens with the first slide, when the site is loaded. I also disabled plug-ins, it seems to be a theme issue. The mobile version seems to be loading correctly.
- This reply was modified 3 years, 1 month ago by k593.
That worked! Thanks!
There are several “About” pages with sections that need them and possibly on other sections throughout the site. Would be good to set any given section this way as needed. Developer ID in color sections make the most sense to me.
That worked for the whole site, but I’m just looking to do it with specific color sections using the developer ID. I tried putting the ID #aboutIcons into the CSS, but couldn’t get it to work.
- This reply was modified 7 years, 4 months ago by k593.
That worked! Thank you Mike
I added this code to my child theme functions.php file and it did not work, the same as all the other code I have tried. So I added it then directly to the main Enfold theme functions.php file and it worked. I’m not sure why the child theme didn’t work, but at least I have a solution now even if I need to repeat it for theme updates. Thank you for your help!
Hi Jordan,
I am able to create SKUs and don’t want them to be automatically generated. What I am looking for is to have the SKU display on the product category page. Right now it is just a thumbnail and title (I’ve hidden the price). I haven’t been able to find plugins and no PHP snippets have worked so far. Is there anything further that you could suggest?
I’ve added the following code to functions.php, but it is still not working.
/**
* Adds product SKUs above the “Add to Cart” buttons
* Tutorial: http://www.skyverge.com/blog/add-information-to-woocommerce-shop-page/
**/
function skyverge_shop_display_skus() {global $product;
if ( $product->get_sku() ) {
echo ‘<div class=”product-meta”>SKU: ‘ . $product->get_sku() . ‘</div>’;
}
}
add_action( ‘woocommerce_after_shop_loop_item’, ‘skyverge_shop_display_skus’, 9 );That worked! Thank you Nikko.
This worked. Thank you!
Safari, iPhone 6s, iOS 10.2
I found the issue. There was this custom CSS preventing the mobile menu:
#header_main > .container {
display: none;
}To have that top header show only on mobile I changed it to this:
@media screen and (min-width: 750px)
{
#header_main > .container {
display: none;
}}Hi Andy,
Deactivating the caching of the site and clearing the browsers cache did not work. Deactivating plugins also did not work. Is there something else I can try?
Thank you for your help!
Thank you Rikard. The information is in the private content section.
Beautiful. It worked. Thank you!
-
AuthorPosts