SelfOutlet
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] product image not showingHi @thingslittle05,
We see images, but the sample images of the theme, no one seems be your own product.
It’s what we see: https://ibb.co/54TpvjL
What do you see?
Good luck!
Forum: Plugins
In reply to: [WooCommerce] Sorting by Newest firstHi,
Whene? you enter to your backend in: Appearance > Customize… i think that you can have in Woocomerce the option to sort them as you like, by newest.
Good luck!
Forum: Plugins
In reply to: [WooCommerce] Buy Button & Shop categories images problemsHi,
First, why not change “Aggiungi al carrello” with “Acquista ora” or something shorter? It’s so long for a button and your button will still be big with a big text.
And with some Css you can edit the buttons: some border-radius, some padding 5px 15px, and maybe change the button background to white and color text to #06243b (blue) with borders in blues #06243b too. And a text-align: center to center buttons…
An example:
add-to-cart-button {
text-align: center;
}add-to-cart-button a {
border-radius: 5px;
padding: 5px 15px;
}.button.primary:not(.is-outline) {
background-color: #fff;
color: #06243b;
border: 1px solid #06243b;
}It will be looks something like this: https://ibb.co/G5zZ2wQ (Categories smaller too).
As plugin, there is “Woo Button Text” but seems not updated, so i don’t recommend use it, it will be at your own risk.
For categories menu you can make the text a little small with:
.widget ul { margin: 0; font-size: 14px; }
Try to creat a Child-theme and use it to edit your css as u like, like this all modifications won’t be lost if you update the theme…
Good luck!
Forum: Plugins
In reply to: [WooCommerce] Removing page titleIt’s a bad idea for your SEO @midi15, as @serafinnyc says.
But if you insist, you can us Css to hide it using a “dispplay:none;”.
If you are not familiarized with Css, you can shoot your site’s link and we give you the code to put with the correct class/id.
Good like.
Forum: Plugins
In reply to: [WooCommerce] Missing BRAND fieldHi,
1. Check if your Brand’s plugin is active.
2 – In the edit page (that you put above on the screen) see at the top at “Screen Options”, maybe the Brand’s block is deactivated (unchecked).Good luck!
Forum: Plugins
In reply to: [WooCommerce] Website Crashes when activating WooCommerceHi @swagher,
As you know, Woocommerce, WordPress… changes constantly and themes, plugins needs to be updates. So, the only solution as @serafinnyc says is to update your theme or maybe change it.
The problem with your site is that the code used by your theme to refer to Woocomerce is old, and a lot of variables…. are not used for example and this causes errors.
Good luck!
Forum: Plugins
In reply to: [WooCommerce] Website Crashes when activating WooCommerceHi,
It seems like a theme conflict. What version of Pressroom are you using? There was an update the 23.05.2019 of your theme to v4.2 where they updated templates of woocommerce. Have you did the update?
23.05.2019 – v4.2
Security improvements.
WooCommerce template files update.
WPBakery Page Builder update (to version 6.0.2).
Theme Dummy Content Importer plugin update (to version 1.5).
Minor code fixes.Forum: Plugins
In reply to: [WooCommerce] How to link a previous order to a new account?When you enter to the Order in Woocommerce you have an input with list that put “Costumer”.
I think is searching the costumer there and saving the order it will assign the order to your costumer. No?
Good luck!
Forum: Plugins
In reply to: [WooCommerce] 1 product quantity bugHi,
As i see, the type of the quantity is marked as “type=”hidden”” and that’s why you can’t see it.
<input type="hidden" id="quantity_5cf16c6958e4b" class="qty" name="quantity" value="1">
I guess that you need to change it to. Doing this it’s showing:
<input type="number" id="quantity_5cf16c6958e4b" class="qty" name="quantity" value="1">
The problem is that i don’t know why is marked as Hidden and where you need to change it. Maybe in your Theme code?
Let’s see what the specialists says.
Forum: Plugins
In reply to: [WooCommerce] Orders being cancelledYou can see too in: Woocommerce > Setting > Products > Inventory: and make sure that the “Hold stock (minutes)” option has blank value (no value).
Maybe the order for WC isn’t detected as paid (as @webmasterhouston says, for communication problem with paypal) and as WC understand that isn’t paid, it cancel the order automatically.
Forum: Plugins
In reply to: [Social Share Icons & Social Share Buttons] Icons won’t display on siteIn the console there is some errors, i guess caused by the Minifying of Js, try to look this. Look too to the Manify plugin, sometimes comes with own cache, so clear the cache of all the plugins you have, exemple if you have both: W3C and Fast Velocity Minify.
If not solved, you can use this plugin: Social Media Follow Buttons Bar. I use it and works fine.
Good luck!
Forum: Plugins
In reply to: [Contact Form 7] ReCaPTCHA not workingThe other option is install the plugin: Contact Form 7 Captcha.
Do you have any “Theme Options” in the admin for your theme? Maybe there you can find the Shop display.
For testing, try to added more products.
Forum: Plugins
In reply to: [WooCommerce] Variable product display as ‘out of stock’ when there is stockAre you using DropshipMe maybe? I’ve seen this problem with this plugin some weeks ago and i don’t know if is your case.
If you are on DropshipMe i think that when you edit anything in the products imported, the Stock goes to Out of Stock.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce latest update error (of type E_ERROR) can’t log inHi,
Maybe if you try to update it by FTP (think to a backup before). Sometimes a corrupted download can causes this.
Can you give the page link?