dclardy
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Problems with PHP 7I just wanted to post to say thanks to Kimberly for the fix that she has here! I was having an issue with the CDN aspect of the plugin, and this completely cleared it up! Thank you so much!
Forum: Themes and Templates
In reply to: Clear out Live Preview StylingI am pretty sure that I found this information stored in the wp_options table. I deleted out that row, and the styling was removed.
Forum: Themes and Templates
In reply to: Twenty Eleven Custom Query HelpI already have the custom post type for beers built. Are you saying to create another custom post type? I don’t understand why I can’t just modify the loop that I am running. I guess that I am just making it too simple.
Messed up title. It should be Breaks instead of Brings
Forum: Themes and Templates
In reply to: Twenty Eleven Custom Query HelpI tried setting this up, but I have gotten nowhere! The taxonomy is not the route that I want to go. Any help would be appreciated.
Forum: Themes and Templates
In reply to: Twenty Eleven Custom Query HelpI tried setting this up, but I have gotten nowhere! The taxonomy is not the route that I want to go. Any help would be appreciated.
Forum: Themes and Templates
In reply to: Twenty Eleven Custom Query HelpThanks for the idea. I have toyed around with moving this to a taxonomy, but it seems like so much work! I guess that I will just have to do it. I saw that scribu has a plugin to convert everything.
I guess that I will have to convert the Country first. Then move the Brewers.
How would I go about setting up the archive page. I want it to show like this.
Country
–Brewer
—-BeerAlso, sorry for not representing Australia properly. I will make an effort to find more from that country. They just don’t seem to have that many of them in Texas.
Forum: Themes and Templates
In reply to: Lost page title colorI hate to say it, but you could add !important to your css changes. If the plugin is doing it, that might be the easiest way without having to change all of its styling.
Forum: Themes and Templates
In reply to: Home Page trouble with HatchI am a member at DevPress, and the creator of this theme essentially says that it is not possible with this theme. He told another user to pick another theme because they would have to completely change the way that theme works to accomplish this.
Forum: Themes and Templates
In reply to: Home Page trouble with HatchAre you trying to get it to look like the screenshots?
Forum: Themes and Templates
In reply to: No Install Themes TabI am not sure that I can help here, but I will try.
In the dashboard, go to Appearance -> Themes.
Once you are there, you will see two tabs.
Manage Themes | Install Themes
Click on Install Themes.
Once that tab has loaded, you are loaded on the search section. If you look right above the search box, you will see a link called Upload. Click on that. You should be able to upload your theme from that point on.
Forum: Themes and Templates
In reply to: Home Page trouble with HatchSo you are trying to show just that image? No menu or anything? If so, you are going to have to create a new template for that. You will probably have to create a custom header as well and remove the call to get the menu.
Otto,
Thanks! I never login to Twitter so that explains the issue. I thought that this worked a little differently, but I will login to Twitter more often now.
Forum: Plugins
In reply to: [FoxyShop] Can't Login into Upload ProcessSubscribing…
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Can it do this?That works just fine. Here is what I ended up using. It follows your previous convention of naming. You could probably just paste it in.
function cf7_post($atts){ extract(shortcode_atts(array( 'key' => -1, ), $atts)); if($key == -1) return ''; $val = $_POST[$key]; return $val; } add_shortcode('CF7_POST', 'cf7_post');