damian.smith
Forum Replies Created
-
Ok scrap that, just read the link you posted and my problem was the archives not being ticked, all attributes are now public and working!
Hey,
I have a similar problem. I’m pretty sure it worked before but now it doesn’t.
Only pa_colour is working, none of my other attributes are filtering.
The only thing I can see is that colour type is set to (public) and the
- class contains pa_colour-colournamehere
Forum: Plugins
In reply to: [Woocommerce CSV importer] duplicate imageHey,
I also have this issue, when editing a bulk lot of products I delete them out of the database first and keep the images in the uploads folder. When I re import my updated products it also duplicates my images instead of linking back to the originals.
Forum: Plugins
In reply to: [jQuery Colorbox] Image title doesnt appearI also have this issue after the latest WP update all my titles have disappeared.
Will there be a response to this issue?
Forum: Plugins
In reply to: [Captain Slider] Vertical Slider Breaking sliderI have the exact same issue. Vertical completely falls down and horizontally has issues too. Seems to have been 2 months and no reply from author either :/
Forum: Hacks
In reply to: calling featured images from child pagesSorted, I was being simple!
just changed the_post_thumbnail to get_the_post_thumbnail
Forum: Installing WordPress
In reply to: Going to sitename.com/wp-admin/install.php gives me errorNo problem! ??
Forum: Installing WordPress
In reply to: Going to sitename.com/wp-admin/install.php gives me erroralso:
define('DB_HOST', 'myhost’);
Forum: Installing WordPress
In reply to: Going to sitename.com/wp-admin/install.php gives me errorIts probably not the issue but the password line has incorrect quote characters in it:
define('DB_PASSWORD', ’mypass’);
Forum: Installing WordPress
In reply to: Installer issue – function wp_guess_url() guesses wrongI had the same issue and submitted a ticket based on this… for now the way to resolve is too put
define('WP_SITEURL', 'https://www.yourdomain.co.uk'); define('WP_HOME', 'https://www.yourdomain.co.uk');
into your wp-config.php
Forum: Fixing WordPress
In reply to: get_post_meta displayI had to make some tweaks to your code to get it working:
<?php global $post; $related_cats = get_post_meta($post->ID,'related_cat', true); $related_cats = explode('|',$related_cats); foreach ( $related_cats as $related_cat) { if($related_cat != NULL){ echo '<div class="image-cat"> <a href="/?product_cat='.$related_cat.'"><img src="/wp-content/uploads/'.$related_cat.'.jpeg" alt="Related Cat1" width="200" height="200" /></a> <p><a href="/?product_cat='.$related_cat.'">'.$related_cat = str_replace("-", " ",$related_cat).'</a></p> </div>'; } } ?>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
But now works perfectly! Thanks for the help
Forum: Plugins
In reply to: [CSV Importer] Import custom field with multiple values (repeated)Bump! But im using Product CSV Import Suite
Forum: Plugins
In reply to: [Calendar Category] I make It works with Future Posts!LEGEND!
I had the original calendar set up to show future posts no problem and got concerned after I installed this plugin as it cancelled out my hacks, but now all good again ??
Forum: Plugins
In reply to: [Plugin: Woocommerce] Make a "Products per page" dropdownStar!
Forum: Plugins
In reply to: [Plugin: Woocommerce] Make a "Products per page" dropdownDid you get anywhere with this?
I am also looking into how this can be done.