ywickham
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingRight. That’s like the example given in the codex:
/** * Proper way to enqueue scripts and styles */ function theme_name_scripts() { wp_enqueue_style( 'style-name', get_stylesheet_uri() ); wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );http://codex.wordpress.org/Function_Reference/wp_enqueue_script
Or am I missing something?
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingSure!
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘story_child_scripts’ not found or invalid function name in /home/domainname.com/wp-includes/plugin.php on line 470
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingSure. Here it is:
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingI just got back to adding the following code to my child theme’s function.php file and it throws the following error:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘story_child_scripts’ not found or invalid function name in …
I did an exact copy/paste of the code above and rechecked the spelling of the function name, but I’m not sure why this is causing the error.
Ideas? Thanks!
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingThank you so much for the explanation! I’ve seen this happen before, but have never understood the why behind it.
I appreciate it!
Forum: Plugins
In reply to: [ExpressCurate] Plugin Throwing ErrorsI had to change domain names and moved the site completely, but whatever was causing the issue is no longer doing so. I was able to curate a post with no error messages. Maybe it had to do with the recent update?
Regardless, this is no longer an issue. Thank you for responding so promptly, though! I appreciate it.
Forum: Themes and Templates
In reply to: [Story] Child theme loses color scheme stylingI solved this issue by simply copying the styles from the color scheme into the style.css of my child theme. However, the original issue of not being able to select a color scheme when using a child theme still exists.
Forum: Themes and Templates
In reply to: Explanation request for underscores _s theme responsive menuThis is for language files. It allows translators to translate your theme into another language.
See: http://codex.wordpress.org/Function_Reference/_e for further explanation.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Installed on multisite, but not displaying on siteI don’t know what happened, but I returned to the admin panel a few days later and found Contact Form 7 displaying in my admin settings.
I wish I had a solution for what happened, but this problem is now fixed.
Forum: Themes and Templates
In reply to: Insert tagline manuallyAlli – It looks like you fixed this, correct? If not, would you post what code you used to try and add the site tag line?
Forum: Plugins
In reply to: [Plugin: WooCommerce] Show Cart Items on Checkout PageI’m going to answer my own question, since I solved it with some additional poking around. Hopefully it will help someone else later down the road.
I didn’t find a shortcode to to simply add the cart to the top of the checkout page. I had to edit the template file directly.
So, I copied:
/wp-content/plugins/woocommerce/templates/checkout/form-checkout.php
to:
/wp-content/mytheme/woocommerce/checkout/form-checkout.php
to make my edits to that file directly so I wouldn’t lose them when WooCommerce was upgraded. I then copied the form code from:
/wp-content/plugins/woocommerce/templates/cart/cart.php
And pasted it in the file I copied to my theme directory (/wp-content/mytheme/woocommerce/checkout/form-checkout.php
) where I wanted the form to appear.There may be more elegant ways, but this fixed my issue.
Forum: Plugins
In reply to: [WooCommerce] email address where orders are sentThank you! I must have just spaced out when reading the header text for that.
Regarding your question, I believe I read somewhere about using “wordpress@mywebsite.com”. Try that.
Also, here is the email doc for troubleshooting: http://docs.woothemes.com/document/email-faq/ Maybe that might help you out.
Forum: Plugins
In reply to: [WooCommerce] email address where orders are sentI also need to know, too. I have two admins and I’d like to set it so a particular admin receives the emails.
Forum: Themes and Templates
In reply to: [Visual] Video post not showing on home pageTurns out the extension I was using to repost a video marked created a “Video” post, which isn’t supported with your theme. I just changed the post format to “Standard” and it works just fine.
This issue is fixed. We changed the page name from “portfolio” to anything else and the theme worked.