pixel-Jay
Forum Replies Created
-
Forum: Themes and Templates
In reply to: 2011 Theme .entry-title is being overridden somewhere..@kinkylilswitch@live.com, try .entry-title, .entry-title a instead of just .entry-title
Forum: Themes and Templates
In reply to: [dkret3] [Theme: dkret3] Right Hand sidebar IssuesIt seems those widgets are hard coded into sidebar.php, you could remove them manually, or try adding other widgets to the Primary Sidebar. Those default widgets will be replaced by whatever widget you use there. I have just checked, it works on my test install.
The theme is widget ready, it just has a fallback for when no widgets are placed in the sidebar.
Forum: Fixing WordPress
In reply to: Drop Down navigation adviceIn your Menu edit screen, add a custom link, with # as the URL (remove http:// and replace with #), to the menu, once it’s in the menu, remove the #. Then add your other pages like you normally would creating a drop down menu.
Here is something just as reference, Allow ‘non-clickable’ menu items
Hope that helps
Forum: Themes and Templates
In reply to: [dkret3] [Theme: dkret3] Right Hand sidebar IssuesYou should be able to remove those from your widgets settings screen in the admin, the specific widgets you are looking for are, Meta, Archives and Categories. Just drag them from the Primary Sidebar area to anywhere else, or open the settings for the widgets and click on the delete link.
If you get stuck, Appearance Widgets Screen
Hope that helps
Forum: Themes and Templates
In reply to: Website died due to new themeDelete the theme folder, alkivia-chameleon, from your wp-content/themes directory, that should restore access.
Forum: Themes and Templates
In reply to: Dynamic link to blog from a static pageWell, if it’s a link in your navigation menu, you can add the blog page and change the reading settings like I described, but if it’s just a normal link, from anywhere in your front page, then doing what lockettpots said is best.
Forum: Themes and Templates
In reply to: Dynamic link to blog from a static pageNope, not a bad thing at all. If it was just a page you created in the WordPress admin, and set as the front page via Reading settings, then you could have added a separate blog page as the main blog page (changed in Reading settings), and then just add it to the navigation of your site via the Menu settings (with custom labels).
But since you are using a static, html and css front page, lockettpots’ solution is the best for your situation.
Forum: Themes and Templates
In reply to: Dynamic link to blog from a static page@joshpuffpuff, are you using a separate static page (one not generated by WordPress) in normal html and css, or are you using a static front page set in the Reading settings under the Settings menu in the admin?
Forum: Themes and Templates
In reply to: Adding RSS message to Plaftform themeFor the RSS feed, Customizing Feeds,
As for the excerpt, in your theme folder there should be a folder called includes, in that folder is a file named library.functions.php. The function for the excerpt length is around line 500 ->
$excerpt_length = apply_filters('excerpt_length', 25);, the number after ‘excerpt_length’ is where you can change the length.If you’re using a child theme, it’s a bit different, you would be able to define your own custom excerpt functions.
Hope that helps
Forum: Themes and Templates
In reply to: Style.css file missing in uploaded theme@sally@eventsatbrookhills.com, you usually won’t find help for premium themes in these forums, but as a start, try extracting the .zip you downloaded from ThemeForest. There are a lot of files inside that zip, including the actual theme .zip. In this case would be something like modern-elegance.zip, you should upload that via the WordPress admin, or extract it, and then upload via FTP.
WordPress looks for the style.css in the main theme directory, it is what defines a WordPress theme, the theme name, author, version, tags, etc…
If you’re still stuck, contact the theme author.
Hope that helps
Forum: Themes and Templates
In reply to: Style.css file missing in uploaded themeThe style.css should be included in all WordPress themes, what theme are you using or trying to use?
Forum: Themes and Templates
In reply to: I'm looking theme like this@emreotay, that’s a Tumblog theme on tumblr. Try searching in the WordPress theme directory for “post formats”. There are quite a few themes that support post formats, with similar layouts to what you are looking for.
Pick one (or two), install it, look at the theme options, if there are any, perhaps you could get it to look like the one you found.
Google the term Tumblog, it should give you a better idea of what it’s all about.
Hope that helps
Forum: Themes and Templates
In reply to: spacing not right (images, comments out of margin)Did you add post thumbnail support to your theme’s functions.php? That might not be the problem, but it’s a good place to start, also, have you defined the post thumbnail size in your CSS?
Forum: Themes and Templates
In reply to: [Coraline] [Theme: Coraline] Excerpts in categories?@kisarune, I agree with alchymyth, it should work that way by default, but looking at the loop, it seems the it needs one more conditional, is_category().
Try this:
In your loop.php find these lines:
<?php if ( is_search() ) : // Display excerpts for search. ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary -->Right after that (before the else statement) paste:
<?php elseif ( is_category() ) : ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary -->That should display excerpts for the categories.
Hope this helps
Forum: Fixing WordPress
In reply to: A simple P problem??Just a quick question, are you creating new lines in the post editor for the shortcodes you’re using? If you are, my first suggestion would be to use normal spaces, or no space between shortcodes.
If you’re doing it the way I suggested, then you can Google for WordPress shortcode_unautop(), you should be able to find something, but just to start you off, here’s a link or two: shortcode_unautop, Shortcode is being surrounded by p tags. If you’re really stuck, contact the theme author.
Hope that helps