Michael K.
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hoffman] Remove/add to footerThank you!
Forum: Themes and Templates
In reply to: [Hoffman] Remove/add to footerAfter the last theme update, it looks like the following custom CSS no longer removes the theme credit:
.credits .fleft p:last-child { display: none; }
Forum: Themes and Templates
In reply to: [Hoffman] Remove/add to footerThank you for responding. It’s not often you ask a question about a theme and have the creator answer you directly.
I’ve removed the footer but decided to forego the Mailchimp form in the footer for a less elegant bottom page bar.
Since I have your ear, I’d like to take the opportunity to say that your Hoffman theme (and Hemingway which I’ve used before) are some of the cleanest, elegant, and most aesthetically pleasing themes I’ve ever seen. I haven’t tried any of the others, but I’m sure they are created with the same style and integrity. I very much appreciate your efforts, skills, and dedication to keeping these themes updated and available.
Thanks again!
Forum: Themes and Templates
In reply to: Vocal theme – Homepage background image stretchedNot getting any help from the theme developers. Can anyone else help me resolve this?
Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownThanks. I just needed to change #primary to #main and it worked.
Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownYes! That did it! Do you still think the best way for me to center the text is by setting the width and left margin, or is there a better way to center it?
Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownI want NO sidebar and the margins larger. I didn’t want to adjust the main full width template because I wanted to create a specific page template just for this one specific need.
Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownI’m trying to remove the sidebar completely, center the text, and increase the margins. Aside from the sidebar still appearing, if you look at the page now, it’s aligned the way I want it after I added the above code to the custom template. Can you tell I’m pretty much fumbling around in the dark here? 🙂
Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownDoes that go in the custom.css? I just added this bit of code to the template which sizes the margins correctly, but still displays the sidebar (which I don’t want anyway) below the footer.
<div id="primary" class="page" style="width:600px; margin-left: 250px;">Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownNothing showed up in the validator. Any chance you could look at the template code and see anything wrong?
<?php if ( ! defined( 'ABSPATH' ) ) exit; /** * Template Name: Sales * * This template is a full-width version of the page.php template file. It removes the sidebar area. * * @package WooFramework * @subpackage Template */ get_header(); global $woo_options; ?> <div id="content" class="page col-full"> <?php woo_main_before(); ?> <section id="main" class="fullwidth"> <?php if ( have_posts() ) { $count = 0; while ( have_posts() ) { the_post(); $count++; ?> <article <?php post_class(); ?>> <header> <h1><?php the_title(); ?></h1> </header> <section class="entry"> <?php the_content(); ?> </section><!-- /.entry --> <?php edit_post_link( __( '{ Edit }', 'woothemes' ), '<span class="small">', '</span>' ); ?> </article><!-- /.post --> <?php } // End WHILE Loop } else { ?> <article <?php post_class(); ?>> <p><?php _e( 'Sorry, no posts matched your criteria.', 'woothemes' ); ?></p> </article><!-- /.post --> <?php } ?> </section><!-- /#main --> <?php woo_main_after(); ?> </div><!-- /#content --> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownThanks, WPyogi. I’ll check out the validator. The page should be publicly viewable now.
Forum: Themes and Templates
In reply to: Custom Full-width Template – Sidebar Getting Pushed DownThey don’t offer direct support for customizing themes, and their user forum is’t very active. I was hoping it was just a general coding issue someone could resolve here. The only difference between the two templates are the file names and the name at the top of each template. I was wondering if that was causing a conflict because I wasn’t calling the right php file or something.
Forum: Plugins
In reply to: [Edit Flow] Stopped getting notificationsYou’re right. Seems like we’re using the WP Email SMPT plugin:
http://www.callum-macdonald.com/code/wp-mail-smtp/To my knowledge, nothing has been changed behind the scenes. Our content editor is receiving emails from WordPress, but I’m not, and we both use Gmail.
Forum: Plugins
In reply to: [Edit Flow] Stopped getting notificationsI meant when I went to the email settings in WP and tried to send myself a test email. I tried sending to 3 different email accounts that receive email everyday. The test looked okay. Then I switched it from sending emails via SMPT to PHP and I received the test email fine.
Forum: Plugins
In reply to: [Edit Flow] Stopped getting notificationsWhen I changed the email settings in WordPress from SMTP to PHP, I was able to receive it fine. Can you not receive SMTP emails with Gmail?