-wp-user-
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Enqueue Styles for Child Theme In Addition to Style.cssHuzzah! That fixed it.
I added queen-child-“” to everything but custom.js and style.css and it is working now.Thanks so much for your help
Forum: Themes and Templates
In reply to: Enqueue Styles for Child Theme In Addition to Style.cssNo prob, I appreciate your help.
The second: WordPress is loading the versions from the parent theme when I would like WordPress to load the versions from the child theme.
Except for the style.css and custom.js. WordPress is loading the child versions of those two files, but loading the parent version for the others.
Forum: Themes and Templates
In reply to: Enqueue Styles for Child Theme In Addition to Style.cssThanks for your help.
The styles/scripts I have listed are all included in my child theme, in the css folder. They are still not loading on the site, though, it is calling the stylesheets from the parent theme instead.
Oddly, it is loading the style.css from my child and the custom.js, just not bootstrap.min.css or responsive.css or dark.css.
Forum: Networking WordPress
In reply to: Default Reading SettingsThank you!
I changed the front-page.php to home.php, but it still isn’t setting the reading settings to static/home, even though the home page is displaying as the first page…kinda odd?Forum: Networking WordPress
In reply to: Default Reading SettingsIt has reading settings, but there is no area to set the front page display:
http://www.image-share.com/ijpg-2384-99.htmlI found this in a link in the codex, but it doesn’t seem to work in my functions.php, if you have any suggestions there:
<?php // Use a static front page $about = get_page_by_title( 'About' ); update_option( 'page_on_front', $about->ID ); update_option( 'show_on_front', 'page' ); // Set the blog page $blog = get_page_by_title( 'Blog' ); update_option( 'page_for_posts', $blog->ID ); // Switch to our theme //switch_theme( 'Template', 'stylesheet' ); ?>Forum: Networking WordPress
In reply to: Default Reading SettingsThe wp-config default is perfect.
I installed the WPMU plugin but it doesn’t seem to have the ability to predetermine the reading settings for new sites…am I missing something?
Thanks for your help!
Forum: Hacks
In reply to: Make multiple pages and set template/content on theme activation?Thank you for including the finished code.
Where are you inserting this, functions.php?
Is it inserted between <?php and ?> or use the wp_insert_post() call?