bkcol
Forum Replies Created
-
Anybody able to help with this issue? Maybe the theme developer might know why this is occurring with their theme?
This was built with YITH Bazar themeHaving the same issues with WP 4.4.2.
Also cannot load a new countdown timer into a post/page. Load bar displays but never gives me the options.
Forum: Plugins
In reply to: [Simple Dropbox Upload] Place public upload field in templateThank you so much for that. Worked a treat!
Forum: Plugins
In reply to: [WooCommerce] Variations keep resetting/changingAnybody had this issue where they have over 35 variations and they won’t all load?
Forum: Plugins
In reply to: [WooCommerce] Product pagesSorry for such a late reply. How’d you go with this issue?
To me it looks like the issue lies with the way you’ve implemented ‘cufon’. I guess you’ve used cufon to replace the font with a non-web safe font?
It seems whatever way you’ve implemented it; it is adding a new
<div>
to every new line of text.Forum: Plugins
In reply to: [WooCommerce] Display attribute description in product variationThanks Morollian. After I posted about the active class I came to realise that Woocommerce would probably need it to utilise the variations. Look forward to seeing what you discover!
Forum: Plugins
In reply to: [WooCommerce] Display attribute description in product variationI think it could be failing because all options have ‘class=”active”‘. Anybody know how to deactivate this?
Forum: Plugins
In reply to: [WooCommerce] Display attribute description in product variationSo I’ve made a bit of progress. I combined a solution to show/hide div areas dependant on the dropdown value. I’ve got the values hidden with js but I can’t get them to display. Still chipping away at it but if anybody else has an idea it would be much appreciated
js
$(document).ready(function(){ $('.box').hide(); $('#pa_assembled').change(function() { $('.box').hide(); $('#div' + $(this).val()).show(); }); });
PHP in ‘variable.php’
foreach ( $terms as $term ) { $term_desc = strtolower($term->description); if ( 'pa_assembled' !== $term_desc ) { echo "<div class='box' id='div$term->slug'>$term_desc</div><br />"; } else { // } }
Forum: Plugins
In reply to: [WooCommerce] Woocommerce unable to add to cartHi run,
I went onto your site and was able to add to the cart. Maybe check again to see if you’re having the issue.
The only other thing is the website is loading really slow (from my location in Aus anyway) so this might be a contributing factor to your cart issue.
Forum: Plugins
In reply to: [WooCommerce] Display attribute description in product variationI’m really not sure sorry. I don’t see why it couldn’t be displayed using PHP/HTML but I’d say it would need to continue to hook into JS. My knowledge is quite limited too.
Forum: Plugins
In reply to: [WooCommerce] Display attribute description in product variationActually its displaying exactly what I was seeing with my code. I am only seeing the attribute descriptions that relate to my variables but they’re all showing (all the attributes desc for each variable) instead of showing just the one relating to the dropdown choice.
Forum: Plugins
In reply to: [WooCommerce] Display attribute description in product variationI added your code below over the top of my code in /add-cart/variable.php and it did render the descriptions so its close. Now just need to hide what we don’t need to see
Forum: Plugins
In reply to: [WooCommerce] Display attribute description in product variationThanks Tor.. What exactly did you find? Look forward to seeing the results
Forum: Plugins
In reply to: [WooCommerce] Dynamic Shipping PriceGreat find! Might have to use this one myself
Forum: Plugins
In reply to: [WooCommerce] Product pagesCould you post a link to your site?