vfmweb
Forum Replies Created
-
managed to get attributes back
1. deactivate plugin
2. go to product attributes
3. create a new attribute “test”
4. refresh page 2-3 x
5. delete new attributeAll back to how it was before
I’m guessing this did work once upon a time, but the way that it is hooking into the attribute function of woocommerce it seems to corrupt it
If there is any further work on this I Would be very interested in the plugin still as it serves a great purpose, but in it’s current format no good I’m afraid
BR
RobI also had immediate issues, day I was due to launch a website…
However the main problem I had is with the wc_product_class function, in that it generates NOTHING
the 2 main files effected are
/woocommerce/content-single-product.php
/woocommerce/content-product.phpthe instant fix, was to remove the auto class function – and set my own class. though this is not ideal
around line 25 on content-single-product
<div id="product-<?php the_ID(); ?>" class="product">
and around line 19 on content-product
<li class="product type-product status-publish has-post-thumbnail instock product-type-simple customify-col product-has-gallery">
note that all of my products meet the above classes, yours may not!
This is a temp fix, and hopefully there is an official fix at a later date – if i solve myself I’ll keep you posted
BR
Rob- This reply was modified 5 years, 10 months ago by vfmweb.
Forum: Themes and Templates
In reply to: [Customify] Fontawesome icons – Needing newer onesNot my theme.. just browsing the forums while bored!
If you create a childtheme you could find the file where the original code is copy that file, and add in the line for discord.
You could then also change what icons are used for the social icon area
- This reply was modified 5 years, 11 months ago by vfmweb.
Forum: Themes and Templates
In reply to: [Customify] Woocommerce Image Blurry on Single Product Page#main {
max-width: 1200px;
margin: 0 auto;
}This might make it look a little smarter too – but up to you
quickest way is to change the layout options to fixed instead of stretch, with a width of around 1200px
Forum: Themes and Templates
In reply to: [Customify] Woocommerce Image Blurry on Single Product PageHey Ian
Not my theme – but is the original file this?
https://theamazingamelia.com/wp-content/uploads/2019/03/amazing-amelia-1.jpgTry adding this to your customiser css
div.product div.images img {
width: auto;
height: 500px;
margin: 0 auto;
}This will fix the height to 500px which seems a reasonable size for that page
Aside from this – you need a better quality image to start#
BR
Rob