josiahmann
Forum Replies Created
-
Thanks so much for this response @bcworkz, very clear and helpful!
This made me chuckle:)
Forum: Plugins
In reply to: [WP Store Locator] Changes to Page TemplateThat is exactly what I was looking for! Thanks for your response Menslow.
Forum: Fixing WordPress
In reply to: .htaccess keeps getting modified – taking down siteI haven’t tried activating another theme, as far as I know it’s just this one. I developed this theme based off the underscores starter theme. Since it’s a redesign, I’m trying to avoid reverting back to the old theme.
Forum: Fixing WordPress
In reply to: Help with dynamic metabox functionality calling a Custom Post TypeThat is very helpful.
I’ve got that in and changes the CPT name, but it doesn’t populate the metabox. I changed it to a wp_query and that populated the box, but I don’t know that it’s the best way to code it.
What am I missing?
function cd_meta_box_cb () { $foo_widgets = get_post(array ( 'numberposts' => -1, 'post_type' => 'call_to_action' )); ?> <select name="foowidget"> <option value="">Please choose...</option> <?php foreach ($foo_widgets as $foo_widget): ?> <?php if ($foo_widget->post_status == 'publish') :?> <option value="<?php echo $foo_widget->ID; ?>"><?php echo $foo_widget->post_title; ?></option> <?php endif;?> <?php endforeach; ?> </select> <?php }
Thanks again for your help.
Forum: Fixing WordPress
In reply to: Help with dynamic metabox functionality calling a Custom Post TypeI don’t know how to make the metabox select populate based on the Custom Posts. FYI, I’m a PHP beginner so this is pretty new to me.
Forum: Fixing WordPress
In reply to: Help with dynamic metabox functionality calling a Custom Post TypeThanks catacaustic. Any other thoughts on how to complete?
Forum: Fixing WordPress
In reply to: Can't find where in my site's css to change nav hover colourYay! Glad to help:)
Forum: Themes and Templates
In reply to: change navigation menu font colorThe one you’re looking for is
.main-navigation a { color:#fff; }
That’s what is making them white:)
Forum: Fixing WordPress
In reply to: Can't find where in my site's css to change nav hover colourHello,
The class you need to edit is
.navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li > a:hover { color:insert color here; }
This is currently being pulled from your bootstrap.css file. ??
Forum: Fixing WordPress
In reply to: How to hide a category without deleting it?Can you post a link to your site?
Hello,
There seems to be two things going on here. The header margin isn’t causing a lot of space… there is an empty <p> element at the beginning of the page content that is causing space.
You really need to find that <p> and remove it. The other option is to add a negative margin to your title to compensate. You could do that by placing this in you stylesheet.css file (or theme custom css file if you have one)
#content h1:first-of-type {margin:0px 0 -25px;}
Hope that helps:)Forum: Plugins
In reply to: Need small slider like this siteSir that helped tremendously:D Thank you very much,
Forum: Themes and Templates
In reply to: WordPress page is pulling post from main index pageOk, apparently it is working now, but I’m not really sure what fixed it… Thanks for the help.
Paulwpxp thanks for the tip, thats a great idea.
Forum: Themes and Templates
In reply to: WordPress page is pulling post from main index pageWow I didn’t know about that validation tool- is it kind of an industry standard tool?
The homepage is set to home- which doesn’t have a name in my wp page. When i set it to products it loads properly. Then when I reset the front page to home, it temporarily works right before reverting…