Serene Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Clean Yeti Basic] Finding this theme in the admin panelLol, I guess there are a lot of themes that are described as clean and basic.
Forum: Themes and Templates
In reply to: [Clean Yeti Basic] Improve internationalization of comment formI’ve updated number 2 as recommended and will upload the changes along with the others.
As for number 1. I’ve built the theme off of Thematic and I believe this may be a question for the guys from Thematic. I had a dilemma as to whether or not to include the translation files as provided by Thematic. I’ve been doing some work for a bilingual site that uses the WPML plugin, which I’ve found to be very useful. You can use the plugin to scan themes and plugins for strings and translate accordingly or choose to use the theme’s POT files. I just looked and Thematic hasn’t been updated in 10 months, so it’s possible that it’s been scrapped.
I believe you could override in a similar manner to how you overwrote the nav menu args.
function my_args($args) { $args['logged_in_as'] = '<p>Some new input field here</p>'; return $args; } add_filter('cleanyetibasic_comment_form_args','my_args');Forum: Themes and Templates
In reply to: [Clean Yeti Basic] Dropdown menus not working in 2.0.1I can’t manage to recreate the problem. I’ve inserted your code to test it out and the child elements seem to be working fine. It may be a javascript error. Which browser are you using? Have you tried different browsers?
Depending on which browser you are using, you can check the console for errors by right-click -> inspect element and then click on the console tab. Let me know what you find.
Forum: Themes and Templates
In reply to: [Clean Yeti Basic] Serene Themes SupportThanks Daedalon,
I appreciate all the input and feedback that you’ve provided. I’ve tried to answer a few of your questions and will try to update the theme accordingly. I will have to get back to you as soon as possible for the other requests.Forum: Themes and Templates
In reply to: [Clean Yeti Basic] Finding this theme in the admin panelNot sure what to say about that. As you can see, this is my first theme. I am still new to the development world.
Not sure if this is an issue with WordPress or perhaps the way I’ve set up the theme.
Forum: Themes and Templates
In reply to: [Clean Yeti Basic] How to not display post images?I believe I’ll remove the function from format-standard.php and leave it in format-image.php. That way the standard post format will not display an image, but can be accomplished through the image post format.
Forum: Themes and Templates
In reply to: [Clean Yeti Basic] How to customize sidebar width?I justed realized this won’t work with cleanyetibasic_sidebar()
I’ll revise the code so that it the opening element for the sidebar uses an action.Forum: Themes and Templates
In reply to: [Clean Yeti Basic] How to customize sidebar width?line 207 of widgets-extensions.php handles the code for the main container
function cleanyetibasic_container()It basically changes the width from large-8 to large-12 based on whether or not the full-width page template is chosen or if the sidebar is active.
I figured using css would be an easier way around than editing the files.you would also have to edit sidebar-extensions.php
Also found a good link on overwriting functions in your childtheme here:
http://venutip.com/content/right-way-override-theme-functionsso you could do something like
function remove_container() { remove_action( 'cleanyetibasic_abovecontent', 'cleanyetibasic_container', 1 ); } add_action( 'init', 'remove_conatiner' ); function childtheme_container() { ... } add_action( 'cleanyetibasic_abovecontent', 'childtheme_container', 1);Forum: Themes and Templates
In reply to: [Clean Yeti Basic] Dropdown menus not working in 2.0.1Do you have custom code for the menu in your child theme? If so I can take a look at it and come up with a fix. I know that for one I had to add data-topbar to the nav element like so
<nav class="top-bar" data-topbar> ..... </nav>Forum: Themes and Templates
In reply to: [Clean Yeti Basic] Serene Themes SupportI’m sorry, this was this first notification that I’ve recieved from the forum. I was unaware that other posts had been made.
I appreciate your input about copyright law, and I’ll try to incorporate your suggestion into the next version.
The biggest change to 2.0.1 is that the Foundation framework has been updated from version 4 to version 5. There are some slight style differences such as the button styles. You can see more at foundation.zurb.com
Changing Widths:
My best advice is to use the following css to change widths of the sidebar and main content area. Just add it to syle.css in your child theme@media only screen and (min-width: 64.063em) { #container.large-8 { width: 75%; /* your custom percentage */ } #main .large-4 { width: 25%; /* your custom percentage */ } }disable post-images:
add the following line to your childtheme’s functions.php file
remove_theme_support( 'post_thumbnails' );
Reference Link