wooassist
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Hide page title on the front pageHi James
I sent you an email, did you get it? Also our comments from this thread are being deleted, do you know what might cause this?
Forum: Plugins
In reply to: [WooCommerce] accidentaly updated Woocommerce and now all the orders are goneUnless you have backup, sadly to say the changes you’ve made directly on that plugin won’t be reverted. That’s why it is recommended to copy the WC templates to your theme and do your edits there. And for other parts of the plugin you can always inspect the hooks available for it and do your code on your custom functions.php file.
The point is, always create a backup (database and files) whenever you are updating something especially when working with WC.
Forum: Plugins
In reply to: [WooCommerce] Changing order form titleAnother way is to copy the template to your theme and edit it there
from:
\woocommerce\templates\checkout\form-billing.php
to:
\yourtheme\woocommerce\checkout\form-billing.php
and then in the copy of that file in your theme, just find and edit the text in this code
<?php if ( WC()->cart->ship_to_billing_address_only() && WC()->cart->needs_shipping() ) : ?> <h3><?php _e( 'Billing & Shipping', 'woocommerce' ); ?></h3> <?php else : ?> <h3><?php _e( 'Billing Details', 'woocommerce' ); ?></h3> <?php endif; ?>
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] Add a custom upload field into the product admin panelI suggest using a different plugin for this. There’s a lot of plugins out there that can easily create metaboxes and custom fields for you.
The best right now would be Advanced Custom Fields as it is very simple to work on, but very powerful plugin. You can also use shortcodes to display your custom fields on the frontend.
Hope this helps!
If you look into the theme, you can check that the product categories in the homepage is under
\inc'structure\template-tags.php
in a function calledstorefront_product_categories
.If you inspect the function, there’s an apply_filter code there, which means we can adjust the arguments used here in a different function. Try the code below:
add_filter( 'storefront_product_categories_args', 'customize_home_product_categories' ); function customize_home_product_categories( $args ) { $args['limit'] = 4; $args['columns'] = 4; return $args; }
If this doesn’t work, then remove the first line of the code above, and add the code below as well:
function customize_storefront_home_init(){ add_filter( 'storefront_product_categories_args', 'customize_home_product_categories' ); } add_action( 'init', 'customize_storefront_home_init' );
Hope this helps!
What theme are you using? If you have breadcrumbs enabled in your theme, then that would be the best navigation for your users to go back to your parent category.
Hope this helps!
How did you do the transfer from local to your server? At first I thought this was a permalink issue, but it seems you are using the default.
You are not getting any server errors, so I guess this could be a template or a setting issue.
Try to check the status of your WooCommerce installation and see if there are errors in there. You can check it out by going to Dashboard > WooCommerce > Status.
Forum: Plugins
In reply to: [WooCommerce] Max characters for order_commentsYou just need to hook your function for the filter
woocommerce_checkout_fields
. Just add the line below.add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
Hope this helps.
Forum: Plugins
In reply to: [WooCommerce] Price size on Product Shop page.Try this CSS to adjust your buttons
.woocommerce #page-wrapper .single_add_to_cart_button { text-shadow: 0 0 0; border: 0; box-shadow: 0 0 0; }
If you’d like to have the shadow on the text remain, just remove the text-shadow line. Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] How to stop cart, checkout pages from using page.php?Have you tried creating a page template specific for the slug?
example for the checkout, create a page-checkout.phpYou can also do this with page IDs. For more information checkout https://codex.www.ads-software.com/Page_Templates and go straight to Specialized Page Templates.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] i cant add new product categories ..HELP!!!That seems to be a problem with your installation with WP. Have you tried creating a different admin account and have it create the product categories?
Forum: Plugins
In reply to: [WooCommerce] Missing footer in woocomerce category pageI believe this is an issue with your theme and not with WooCommerce, as WC doesn’t control the display for your footer.
Try checking other archive pages that you have, like the category page for your posts and see if the footer is available there.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] Selecting countries by groupHave you checked this extension? https://www.woothemes.com/products/woocommerce-gateways-country-limiter/
With it, you can set the countries that you want to sell on.Forum: Plugins
In reply to: [WooCommerce] WooCommerce – saving custom data from input fieldsThere’s already an available extension for this. If you haven’t checked it out, here’s the link: https://www.woothemes.com/products/product-add-ons/
I haven’t really inspected you’re code, because it’s really a mess to look at in the way you posted it. Try updating it wrapped in a code tag.
If you still want to continue on this, I suggest checking each function by dumping out the values or add it on a log.
Forum: Plugins
In reply to: [WooCommerce] Product Gallery & Add Media button not functionCan you add images in Post or Pages? If not then this is a hosting issue, and not a problem with WooCommerce.
What you need to do is either find a solution regarding image upload for your hosting, or contact support for your hosting.
Hope this helps!