Sean Davis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [evolve] Built in Tab Widget broken tabs formattingGlad I could help!
Forum: Themes and Templates
In reply to: [evolve] Blog Comment Avatar Replaced with Placeholder TextIt looks as if the theme specifically calls for gravatar.
Do you get the same behavior if you paste the following code into your child theme functions.php file? (do so carefully, and preferably through FTP and not the WordPress dashboard)
function evolve_comment_avatar( $avatar = true, $gravatar_size = 45 ) { global $comment; $author = get_comment_author(); if ( $avatar ) { // Get author's gavatar $gravatar_email = get_comment_author_email(); $gravatar_size = apply_filters( 'evolve_gravatar_size', (int) $gravatar_size ); // Available filter: evolve_gravatar_size $gravatar = get_avatar( $comment, $gravatar_size ); // get the $src data from $gavatar if ( preg_match( '/src=\'(.*?)\'/i', $gravatar, $matches ) ) $src = $matches[1]; // Rebuild Gravatar link because get_avatar() produces invalid code :/ (P.S. adds "gravatar" class) $output = "<img class=\"avatar gravatar gravatar-{$gravatar_size}\" alt=\"{$author}'s Gravatar\" src=\"{$src}\" width=\"{$gravatar_size}\" height=\"{$gravatar_size}\" />"; if (get_option('show_avatars')){ // Avatars enabled? return apply_filters( 'evolve_comment_avatar', (string) $output ); // Available filter: evolve_comment_avatar } } }That slightly modifies the method for retrieving the image. Let me know.
Forum: Themes and Templates
In reply to: [evolve] Built in Tab Widget broken tabs formattingIt looks like you have a plugin conflict. CSS coming from this stylesheet is causing the issue: http://briarcraft.net/wp-content/plugins/smpl-shortcodes/assets/css/smpl-shortcodes.css
Find the plugin that is related to “smpl shortcodes” and temporarily deactivate it. You should be able to confirm that it fixes the widget display.
What’s actually going wrong is that both the Evolve theme and that plugin are using very generic CSS classes. So both products are using the same CSS classes and can both stand to be more specific in their naming conventions.
Forum: Themes and Templates
In reply to: [JustWrite] header height modificationHi, juanyo. As I believe you already noticed, the header is designed to fit the image into a maximum height of 150px. You absolutely can adjust the height to fit in a bigger image but it will require more than just one CSS adjustment. You’ll want to do this in either your child theme style.css file or perhaps a custom CSS plugin.
Increase the height of the area holding the image:
.top { height: 180px; }Increase the height of the header to handle the above adjustment.
.header-wrap { height: 250px; }You’d adjust the pixel count as needed.
Forum: Plugins
In reply to: [Simple Course Creator] Can't select classI’m really sorry for the delay here. You shouldn’t have any issues adding a post to a course using either method. When you say you are “not able to select it,” what exactly is happening? Is the course selection list there? If so, does it simply not save?
If you are still having this issue, please temporarily deactivate all other plugins (you won’t lose settings) and try once more. Let me know where you stand. And again, I apologize for the delay!
Forum: Reviews
In reply to: [Pluginception] Perfect for support!Haha duly noted.
Forum: Themes and Templates
In reply to: [Presentation Lite] Broken custom meta boxesI’m marking this ticket as resolved due to inactivity. Feel free to provide more information if you’re still having issues and believe it’s because of the theme, though.
Forum: Themes and Templates
In reply to: [Enterprise Lite] NooB looking to leave bigcommerce.comJust to let you both know, I do see this support thread and I am following the conversation. But Timothy’s advice is nothing different than what I’d give. So feel free to continue to conversation. I’ll chime in if there are any questions about my theme!
Forum: Themes and Templates
In reply to: [Presentation Lite] Broken custom meta boxesI apologize for the delay here.
What method did you use to confirm that Presentation Lite is the culprit?
Forum: Themes and Templates
In reply to: [Presentation Lite] Unable to show New Page with 'Home' menuI will assume you are no longer having issues so I’m going to close this thread.
Forum: Themes and Templates
In reply to: [Presentation Lite] Unable to show New Page with 'Home' menuYou have to assign your own menus to theme menu locations when you activate a new theme. Menu configuration does not go from theme to theme. However, that’s not 100% what the issue is here.
In the last theme that you used, it’s not that you assigned a menu to a menu location. It’s that if you DIDN’T assign a menu to the menu location, it would automatically default to showing your WordPress Pages instead… which is a choice made by the theme author. In Presentation Lite where I am the theme author, I chose not to display all WordPress Pages as a fallback for empty menus (because some sites have dozens of pages). Instead, nothing more than a home link appears and you need to go put your own menus in place.
Go to dashboard -> Appearance -> Menus and build one menu for the primary spot and another for the header spot. Put whatever links you want in each menu and assign those menus to Presentation Lite’s two menu locations.
Here’s a video: http://quick.as/mz64in6z
Forum: Reviews
In reply to: [Super Simple jQuery Parallax Background] Yup!Anytime, bud. I’m experiencing the same ratio myself. You (and your work) are appreciated!
Forum: Plugins
In reply to: [Simple Course Creator] Can Course List Be Rearranged?Indeed! The post list is actually arranged by publish date just like your typical blog home, archives, or search results.
So to insert a post in between two other posts, it’s published date needs to be between those two posts. You can always edit that date on the edit posts screen.
As of now, there is no way to manually arrange the post listing order regardless of publish date but that is a great idea that I will consider building into an add-on.
Forum: Themes and Templates
In reply to: [isis] simulate hover effect on touch screenNot without actually touching it. There is no hover state for touch devices.
Forum: Themes and Templates
In reply to: [Undiscovered] Problem with child themeI think what you may be pointing out is actually a Chrome bug. And though it’s not the fault of the starter theme _s (Underscores), many themes built on _s will face this issue unless the theme developer makes some key changes.
There have been many reports of this on the _s theme repo itself. See here https://github.com/Automattic/_s/issues/426#issuecomment-36730758. While it’s not the theme developers fault and it’s not _s’ fault, if I were the theme developer, I would try to modify the default _s CSS a bit to avoid this.
But first, @felice, make sure you’re using the most up-to-date version of Chrome. I’ve seen reports that this has been fixed.