xclamation
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] coupon questionHave you tried the following plugin?:
https://wordpress.org/plugins/woocommerce-auto-added-coupons/
It looks like this was being caused by the Advanced Custom Fields plugin.
In ACF version 5.5.13, they added a setting to remove the default WordPress custom field metabox to speed up the load times on the post edit page.
Adding the following code to the theme (child theme) functions.php file fixes it and the custom fields are now displaying again:
add_filter('acf/settings/remove_wp_meta_box', '__return_false');Custom checkout fields don’t appear to be displaying on the order details page since updating WooCommerce. Is this going to be fixed?
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Conflict with ‘Really Simple SSL’Screenshot here:
Just a further update. The issue also appears to be theme related. Switching to a default WordPress theme allows me to activate successfully. Theme being used is: Lush Theme from Iron Templates – http://irontemplates.com/
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Conflict with ‘Really Simple SSL’There also appears to be a conflict with the ‘WooCommerce Services’ plugin from Automaticc and also Visual Composer…
Forum: Themes and Templates
In reply to: [Vantage] Issue with Footer WidgetsIt looks like you’ve managed to sort it now. Did you have to amend the footer text too? I noticed that you had lots of ‘s causing the text to overflow on to the next line…
Forum: Themes and Templates
In reply to: [Vantage] Overwriting Sub-Folder with Child ThemeHi Al,
In short, no. These functions of the theme are not ‘overidable’ via a child theme. You would therefore need to code this in yourself from scratch, within your child theme.
Which icons have you added? I’ve recently requested that the theme author update the font awesome icons are there have been several new icons added since the themes release…
Forum: Themes and Templates
In reply to: [Vantage] Issue with Footer WidgetsHi Bobby,
With the footer widget, you will need to alter/add some CSS. Please try the following:
#footer-widgets .widget {width: 25%;}
#black-studio-tinymce-3 {width: 50%;}Forum: Themes and Templates
In reply to: [Vantage] Child themeThomasVIg,
Your code is incomplete…
You have to declare what version is your parent’s theme…among others !Theme Name: vantage-child
Theme-URI: ???? here you put your info http://yoursite.com/vantage-child
Author : Your name
AuthorURI : your personal site
Template : vantage (parent’s theme name
Version : ???? (this is the version’s number of your parent name : for example 1.3.2No, you don’t need the version number, it’s optional…
Hi all, I’m getting exactly the same error/message here but I’m using WordPress 3.8.1 and WooCommerce 2.1.3…
@esmi: How is it impolite to let someone know that they aren’t the only one in this position? Surely it’s helpful, both to the posted and to the developer as the developer will understand that it’s not just one persons setup/issue…? Won’t posting their own question about the same error just be impolite to the forum posters who will then see the same issue in multiples posts?
Getting exactly the same here but using WooCommerce 2.1.3…
Any ideas???
Forum: Themes and Templates
In reply to: [ButterBelly] ButterBelly theme feature links do not work!Would love to help you but unfortunately the moderators here moderate a little too much for my liking – help is help, is it not?… If the moderators change their petty little attitudes I might come back…
Forum: Themes and Templates
In reply to: [ButterBelly] ButterBelly theme feature links do not work!butterbelly_get_option('butterbelly_link1')
butterbelly_get_option('butterbelly_link2')
butterbelly_get_option('butterbelly_link3')Should be:
butterbelly_get_option('butterbelly_feature_link1')
butterbelly_get_option('butterbelly_feature_link2')
butterbelly_get_option('butterbelly_feature_link3')Forum: Themes and Templates
In reply to: [ButterBelly] ButterBelly theme feature links do not work!Yes, I’ve just had a client come to me as the front-page.php featured links aren’t working when set in the admin area.
I’ve jumped in to the code and it appears there a few mistakes with your option names.
For anyone else with this problem I’ve corrected the code, please see below:
Replace the contents of front-page.php entirely with the following code:
[ Code moderated, that’s just way too much. For that many lines of code please use pastebin.com instead. ]
Hope this helps!
[ Signature moderated. Really, don’t do that please. ]
Forum: Plugins
In reply to: [BlackBox Debug Bar] Display debug bar only to adminsThanks to both daigo75 and Greg! I went with Gregs solution in the end.