jfitzsimmons2
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Theme Customizer: Dynamic Customizer Controls via JavaScriptI’m currently in the same position. I’m looking for a way to show additional options based on what previous options are selected. I think I can figure out how this is done, just haven’t had time to test it. I’ll report back if I figure out a solution.
Forum: Localhost Installs
In reply to: instal- sure it's an easy answer, been addressed beforeUsually I get that message when I create the database, but forget to add a user to the database. Did you add a user named target to the database?
If not, double check the values you put into wp-config.php. I apologize if you tried all this, just thought I’d throw in my two cents.
Forum: Themes and Templates
In reply to: I want to make a child theme but nothing shows upYou said you made a .css file on your computer, but did you upload it to your GoDaddy server?
The path “/wp-content/themes/twentyeleven-child/” should contain the style.css file you made.
The Codex entry on child-themes is pretty comprehensive, I’d give it another read through to make sure you’re not missing anything. The top of the style.css file should contain:
/* Theme Name: Twenty Eleven Child Theme URI: http://example.com/ Description: Child theme for the Twenty Eleven theme Author: Your name here Author URI: http://example.com/about/ Template: twentyeleven Version: 0.1.0 */Forum: Plugins
In reply to: [TPG Get Posts] [Plugin: TPG Get Posts] how to invoke from a template file?Hey Dean,
I came across this page while looking for the answer to your problem. I found the answer so I came back to share.
To incorporate TPG Get Posts into a template try using
<?php echo do_shortcode('[tpg_shortcode]'); ?>in your template file.
Good luck!
-Joe