dustylavender
Forum Replies Created
-
Make sure you are not editing a specific field. You should see “publish” in the upper right corner.
Just hover over the gear and then you should see a trashcan icon. That’ll delete it.
Forum: Plugins
In reply to: [File Away] Search all directories and files possible?Thanks for the quick reply!
Forum: Plugins
In reply to: [woocommerce] Override theme files doesn't workThis has worked for me for the most part.
Take the folder ‘templates’ from the woocommerce plug-in and add them to the theme folder in ‘woocommerce’. It should have the folders; cart, checkout, emails, etc. with a few files outside those; archive-product.php, loop-product-cats.php, loop-shop.php, etc.
So, once you add all the files you will need to edit; /wp-content/themes/your-theme/woocommerce/single-product/price.php
Although, for some reason, when my client adds a new variable product, it uses the formatting from the plug-in folder and when I add a new variable product it uses the formatting from the theme/woocommerce folder.
Forum: Plugins
In reply to: [Plugin: WooCommerce] Product type not changingUPDATE: The database contains two entries for each product;
_transient_wc_product_type_xxx', 'variable', 'yes'); _transient_woocommerce_product_type_xxx', 'variable', 'yes');
When I update a product type in WordPress, the second entry (woocommerce_product_type_xxx) does not update and I have to manually go through the database and change the product type.
Since I’m passing this off to my client, I don’t expect him to do this when he runs into this problem again.
Does the database need both entries for a product, or can I delete one of them?
Forum: Plugins
In reply to: [Plugin: Woocommerce] Filtering products by product tag problemsThumbnails are working for everything else, it just won’t work when I set an image to my product categories.
Forum: Plugins
In reply to: [Plugin: Woocommerce] Filtering products by product tag problemsSlider issue sorted out. Apparently if i have less than 4 products in my slider (which is how many it displays at a time) it tries to fill up the space with duplicates.
Still can’t figure out the product category page thumbnail/excerpt issue or what file to edit to even begin.
Forum: Plugins
In reply to: [Plugin: Woocommerce] Filtering products by product tag problemsDidn’t seem to do anything. I’m guessing there is a jquery problem somewhere (it is an infinity slider, so it might want to duplicate it instead of going back to the first product)
I’ve put this issue to the side because my category thumbnails won’t display at all. It defaults to the placeholder.png file.
the code;
<?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, ‘shop_catalog’); else echo ‘<img src=”‘.$woocommerce->plugin_url().’/assets/images/placeholder.png” alt=”Placeholder” width=”‘.$woocommerce->get_image_size(‘shop_catalog_image_width’).’px” height=”‘.$woocommerce->get_image_size(‘shop_catalog_image_height’).’px” />’; ?>I’ve tried substituting out ‘shop_catalog’ with ‘thumbnail’ and ‘large’ also. While messing around and re-uploading backup files, my category descriptions don’t display now either and I can’t remember where to edit that.
It’s gonna be a long night.
Forum: Plugins
In reply to: [Plugin: Woocommerce] Filtering products by product tag problemsThat finally got it to work, but for some reason it displays 3 of the same product in my slider.
I’m not sure if my problems are in the database because I tried wp-ecommerce and jigoshop before switching to woocommerce.
Does that sound like a thing that could happen?
Is there an easy way to delete all other e-commerce data from the database, without removing all of my post/page data?