battra
Forum Replies Created
-
Hi @wooassist,
Is there any new version release after the update? I’m using version 1.2.3 which is the latest version in WP plugin repository.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Error when generating PDFWill do, Ewout ?? Thanks again!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Error when generating PDFThat does the trick! Thank you for your help, Ewout!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Error when generating PDFYesterday I couldn’t install it through the admin panel (can’t remember the error) so I uploaded the zip file manually. I couldn’t update WooCommerce too yesterday although updating WC works now.
If I re-install the plugin through Dashboard, will I lose my settings?
Forum: Plugins
In reply to: [Storefront Product Sharing] Location & PrintI managed to move the buttons under the product meta using the functions below by unhook it from the default location (woocommerce_after_single_product_summary) and hook it after the meta (woocommerce_single_product_summary):
add_action( 'init', 'my_remove_product_sharing' ); function my_remove_product_sharing() { remove_action( 'woocommerce_after_single_product_summary', array( Storefront_Product_Sharing(), 'sps_product_sharing' ), 5 ); } add_action( 'woocommerce_single_product_summary', 'my_single_product_sharing', 45 ); function my_single_product_sharing() { return Storefront_Product_Sharing()->sps_product_sharing(); }
I believe replacing ‘woocommerce_single_product_summary’ with ‘woocommerce_after_main_content’ should achieve what you need.
Forum: Plugins
In reply to: [Storefront Product Sharing] Changing button size?Not sure if you’ve managed to change the button size but all styling are done through the CSS in storefront-product-sharing/assets/css/style.css. You can override it in your own theme’s custom CSS.
.storefront-product-sharing ul li a:before { font-size: 2.618em; /* Change this to change the button size */ }
Forum: Themes and Templates
In reply to: [Storefront] Creating Boutique Child Theme?Thanks for your offer to help with the code, I really appreciate it. I’m still in the early stage of designing my site so nothing much for now.
After checking the template files, I assume I can play with removing/adding filters and using webhooks to alter the layout? I’m going to give it a try first.
Thanks again, James!
Forum: Themes and Templates
In reply to: [Storefront] Creating Boutique Child Theme?Hi,
Sorry to bump this thread but I need to do similar thing, i.e customize Storefront’s child theme.
What should I do if I need to customize WooCommerce template files in ‘wp-content/plugins/woocommerce/templates’? Should I copy them to the child theme folder? Will future updates to the child theme overwrite these template files?
TIA!
I have the same issue as the OP. I have read the readme.txt file in both wp-subdomains and wp-subdomains-revisited but couldn’t see where/how to fix this problem?
Forum: Plugins
In reply to: [WP Subdomains (Revisited)] Option is not savedFound the problem. The plugin somehow didn’t create the database table no matter how many times I deactivate/activate and delete/install it. I ended up creating the table manually and the options are saved now.
Forum: Plugins
In reply to: [Plugin: Google Analyticator] No GA code?Just to update .. found the problem is because I was loading the site while still logged in as admin. I have disabled admin logging so the code is not inserted.
Forum: Plugins
In reply to: [Plugin: Simple Taxonomies] Warning: Invalid argument supplied for foreach()I have the same problem. Anyone know how to fix this? This thread is 2 months old without any reply from the developer.
Forum: Your WordPress
In reply to: Using wordpress for more then just a blogHow about mine? ??
Forum: Themes and Templates
In reply to: Fantastic Four New themes for youYou have very nice templates! Thank’s for sharing ??
Forum: Fixing WordPress
In reply to: NEW: Upgrade to 1.5.2Updated my site in 5 minutes following the unofficial method. So far so good. Thank’s for the guides!