mswenson2
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Primer] change header on different pagesThis worked out perfectly thanks!
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Multiple download not workingEnabling zip option in PHP tools seems to have fixed it. Thanks for all the help!
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Multiple download not workingI have done all that already and everything should be set up correctly. When I try and do a download all it redirects me to http://westcoed.com/wp-admin/admin-post.php which shows a blank white page and nothing downloads
Forum: Themes and Templates
In reply to: [Primer] change header on different pagesSo this would be an example of a page I want to change http://edufund.westmusic.com/new-site/funding-resources/. I changed the featured image to be a bar that is #b20e24 in color. What I want to do is change that space to be 100px tall and still have the words Funding Resources be centered in the bar. I want to do this for all pages except for the home page. I also want to get rid of the faded out color on the #b20e24 colored bar so you see the full intense color
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Multiple download not workingAnyone have any suggestions?
This fixed it! thank you
Forum: Plugins
In reply to: [eCommerce Product Catalog Plugin for WordPress] Header ImageWhen I replaced the header.php section in my child theme the website broke. I had to put it back the way it was. I added in the other line to the functions.php but nothing has changed. I also regenerated all the thumbnails using the plugin you suggested.
Forum: Plugins
In reply to: [eCommerce Product Catalog Plugin for WordPress] Header ImageThis is mine
/**
* 2.3 – Tip07 – Add new image size for custom post/page headers and select default header image.
*
* $args in add_theme_support() in child theme will auto override what defined in parent’s.
*
* @link https://core.trac.wordpress.org/browser/tags/3.5/wp-includes/theme.php#L1292
* @link https://wordpress.stackexchange.com/questions/108572/set-post-thumbnail-size-vs-add-image-size
*/function tinyframeworkchild_custom_header_setup() {
// Set custom default header. Uncomment if you need to change height and width, name, etc.$$args = array(
‘width’ => 1000,
‘height’ => 140,
‘default-image’ => get_template_directory_uri() . ‘/images/header.jpg’,
);
add_theme_support( ‘custom-header’, $args );// Add new custom image size, so later you could call it in the theme. Unique image name should be specified, eg. custom-featured-image-small, custom-header-image-large, etc.
// add_image_size( ‘custom-header-image-large’, 1600, 9999 ); // 1600 pixels wide (and unlimited height)
}
add_action( ‘after_setup_theme’, ‘tinyframeworkchild_custom_header_setup’ );Forum: Plugins
In reply to: [eCommerce Product Catalog Plugin for WordPress] Header ImageHi Tomas,
I have tried changing the code at 2.3 – Tip07 and for some reason the theme doesn’t recognize that I changed it. I have it set to 1000 wide by 137 tall.