CharlyIBC
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Featured Image Not ShowingI went to your site and see images in both the shop, single product and lightbox. So where are you not seeing the image? You prolly know this, but the feature image is what’s shown. If you’re trying to use 2 different images for product and feature, then I cannot help you with that as I haven’t tried it.
I’m not clear where you have the Title that you don’t want. All I see is titles to movies on both shop and single product page.
As to the Page Options, that must be in your theme, as I don’t see them anywhere in WC. Although if you find what the title is set under using Firebug or other, you can try to put display: none; in your custom.css or childtheme.css
Sorry I couldn’t be more help ??
Forum: Plugins
In reply to: [WooCommerce] Hook WooCommerce message on archive/category pageJust letting you know: I went to your site and it was so slow that I didn’t check anything out. All other sites load normally, yet yours was painfully slow for me.
Forum: Plugins
In reply to: [WooCommerce] Featured Image Not ShowingCan you provide a link? Did you use the shop page provided by WC or change it?
I’m a bit confused. What do you mean by you have F.I. manually set on page and show post title disabled?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Crashes WP Admin Since UpdateHave you contacted the devs of Virtue to see if they’ve updated to work with the new version of WC? I’ve read many themes haven’t updated.
If you haven’t already, I’d suggest submitting a ticket to the Ninja’s. Go to woothemes.com, sign in and click on Submit Ticket in menu
To get your site back up and running, you could do a restore of a known good backup. Though you’ve prolly done that. ??
Forum: Plugins
In reply to: [WooCommerce] Special case for variant productAll the images in your links are broken
Forum: Plugins
In reply to: [WP SEO] Cannot get title to work on 2 pagesI finally figured this out. If anyone is having the same trouble, on changing your shop page name in woocommerce: go to Post Types in WP Seo, scroll down to the bottom to Custom Post Type Archives and change to:
name you want %%page%% | %%sitename%%
Whereas you type in what you want the paged named; i.e. My Products or My Equipment, etc.
For search go to Other in WP SEO and change %%sep%%, which is the hyphen and replace with | (the pipe separator)
Forum: Fixing WordPress
In reply to: Change full size image background color and URLI decided to go with a lightbox instead
Forum: Fixing WordPress
In reply to: Two things I need assistance withOh my apologies, I didn’t realize that…. Thanks!
Forum: Fixing WordPress
In reply to: Two things I need assistance withI’m using WooThemes Mystile, dl’d from their site and WooCommerce
Forum: Plugins
In reply to: [WooCommerce] Remove login from checkout page in WooCommerceI double checked and none of the above mentioned boxes are checked, yet when I took the site live, the Returning Customer / login box was present.
I can prolly figure out how to hide it in my custom.css, but would prefer to add an action/filter to the functions.css Can anyone give me something to work off of?
here is the code that would prolly hide it:
`article.post-180 .woocommerce-info }
display: none;
}’I’m pretty sure if I use the code by bmaggot that will render all my wc-info boxes hidden throughout my site, when I just want to remove the one on the checkout page.
Thanks in advance for any assistance!
Forum: Fixing WordPress
In reply to: How to remove dot/dash boxes?I did find the solution for this awhile ago, but thank everyone for trying to help.
If anyone is interested, under my custom.css I put this code in:
a:active, a:focus { outline-style: none; -moz-outline-style:none; }
Forum: Plugins
In reply to: WooCommerce – exclude category from shopI found a code that worked for me, finally solved!
Forum: Plugins
In reply to: [WooCommerce] Removing "Billing Address" Title on Checkout PageThanks so much! With that I was able to get where you were with the OP, with only needing to remove the Billing Address. ??
Forum: Plugins
In reply to: [WooCommerce] Removing "Billing Address" Title on Checkout PageSo glad it worked. To be honest, I couldn’t say why it didn’t work in your child.css. I don’t use a child, cuz my Theme comes with a custom .css, which is what I use exclusively. Though sometimes I have to input !important; after what I’m changing. i.e. display: none !important;
Thanks for the info! I guess to clarify, how did you get rid of all the woocommerce checkout area fields for the customer to put in their info? I want just the order items listed with PP button showing on the checkout page. ??
Forum: Plugins
In reply to: [WooCommerce] Removing "Billing Address" Title on Checkout PageI’m not a coder, but in Firebug it states the Billing Address is .span6, so I would try putting this in your custom/child.css:
.span6 { display: none; }
Might you tell me how you are using only Paypal? That is what I want to do with my site, but I still have the woocommerce checkout come up.