pixel-Jay
Forum Replies Created
-
Forum: Themes and Templates
In reply to: wootheme (buro woocommerce) or elegant theme (estore)?Go with Buro – WooCommerce, plugin with theme or theme version. It’s solid, and very easy to extend. Estore is good too, don’t get me wrong, but at the rate WooCommerce is moving forward, you won’t regret it.
Forum: Themes and Templates
In reply to: Adding jquery to WordPress Theme the right wayA good place to start would be How to Include JavaScript and CSS in Your WordPress Themes and Plugins,
and just for reference The Ins and Outs of The Enqueue Script For WordPress Themes and Plugins. You should have a good idea on what to do after reading those.Hope it helps
Forum: Themes and Templates
In reply to: Get rid of Parent Page for Sub-Menus? – Twenty ElevenThat’s great! Always good to have options.
Forum: Themes and Templates
In reply to: how to change font on the date/author line under title#body-wrapper a controls all the anchor tags, per the original post: article .meta and article .meta a, might just be for those specific one’s.
Firebug is great, Chrome’s Inspect Element works too ??
Forum: Themes and Templates
In reply to: Theme not showing snippet on homepageFor the excerpt:
Add this at the bottom of your functions.php file, just before the closing php tag:if( !function_exists( 'dp_excerpt_length' ) ) { function dp_excerpt_length( $length ) { return 45; } add_filter( 'excerpt_length', 'dp_excerpt_length' ); }
45 is the number of words the excerpt_length returns, you can change that to your liking.
In your content.php file find this line:
<?php the_content( __( '', 'wplook' )); ?>
, it’s right above wp_link_pages, around line 60. Comment it out, then add this<?php the_excerpt(); ?>
right underneath it, before wp_link_pages.As for the duplicate plain text title, I would suggest the same as esmi. I’m using the older version of this theme for a friend’s blog, and it’s fine, I checked the updated version, no problems there either.
Hope this helps
Forum: Themes and Templates
In reply to: Get rid of Parent Page for Sub-Menus? – Twenty ElevenThe Menus edit screen has a box on the left hand side called “Theme Locations”, right underneath that is one called “Custom Links”. Enter the Label for the link (the “Learn” link you want to use) and remove the URL (URL field must be blank).
Then add the link to your custom menu, use it as the parent menu item, that should make it not clickable. You don’t have to create pages for top level menu items that you don’t want clickable.
Hope that helps, have fun, cheers
Forum: Themes and Templates
In reply to: how to change font on the date/author line under titleUse “font-family” instead of “font-style” for all the elements you want to change. The font-family property should do it, just checked, and it works.
Hope that helps, have fun, cheers
Forum: Themes and Templates
In reply to: [Adventure] [Theme: Adventure] Nav Bar on TopYou would have to change the css in style.css. Find this line:
#bar{ background:#512e36; width: 100%; height: 50px; position: fixed; text-align: left; bottom: 0; left: 0; }
Change the ‘bottom’ property to ‘top’, and that should do it. If the content is too close to the top, you will have to change the padding of the center div to something like 25px, just so there’s a clear separation.
Hope that helps. Just as a side note, you would be better off using a different theme, one that allows you to change these options without having to pay for it.
Have fun, cheers
Forum: Themes and Templates
In reply to: Theme not showing snippet on homepageIf you’re comfortable with editing some php, I can post the code here, just a few lines in two files need changing. But just a quick question first:
The only problem I can’t seem to reproduce, is the duplicate title. Are you running the latest version of the theme?
Forum: Themes and Templates
In reply to: Custom Theme/Template Help@applescruff, use
.post { margin-top: 15px; margin-bottom: 25px; }
in your main CSS file as a start, you can change it to your liking. I’ve just checked with Chrome’s Inspect Element and it works.Forum: Themes and Templates
In reply to: Removing Sidebar Items (Hello Sexy Theme)You should be able to do that from the Widgets settings screen under Appearance-> Widgets. Just drag them from the Primary Sidebar box on the right hand side of the Widgets screen, or use the Delete link in the individual widget settings.
That will just remove them, not “delete” them.
Forum: Themes and Templates
In reply to: Removing header image from selected pagesHi mendok1!
That’s not too difficult to do, but you will have to modify the header.php file, not upgrade safe though.In your header.php file, find this line:
if ( ! empty( $header_image ) ) :
And replace with:
if ( ! empty( $header_image ) && is_home() && is_front_page() ) :
I think it’s around line 81, not too sure, but just in case, find these words // Check to see if the header image has been removed, it’s right under that.
Just remember, you will not be able to display featured images for posts and pages in that section, if you want to keep the featured images functionality, I suggest you modify the necessary template files. If you need more info, just drop me a line and I’ll try and help as best I can. Have fun, cheers