fwoan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: receiving error on widget.phpRemove that function from widgets.php and place it into functions.php
Forum: Fixing WordPress
In reply to: How do you display featured image (thumbnail) on posts page?I believe this will help you:
https://codex.www.ads-software.com/Function_Reference/the_post_thumbnailForum: Fixing WordPress
In reply to: receiving error on widget.phphttps://codex.www.ads-software.com/Function_Reference/add_theme_support
Support for something like widgets should be done in functions.php
Forum: Fixing WordPress
In reply to: Title Repeating on Mobile OnlyTry clearing your browser’s cache and refreshing your site.
Forum: Fixing WordPress
In reply to: HELPRather, the
is_single()
Forum: Fixing WordPress
In reply to: HELPYou can use WordPress conditional Tags ( https://codex.www.ads-software.com/Conditional_Tags ) to add code in specific circumstances.
You will porbably be interested in the is_post() conditional.
Forum: Themes and Templates
In reply to: Help me wih appearance of my Company Portfolio SiteForum: Themes and Templates
In reply to: Categorywise ThemeGlad to help.
Forum: Themes and Templates
In reply to: How to add 3 images as backgroundThis reaction is classic.
Forum: Themes and Templates
In reply to: Categorywise Themepraveen_khm, I think I misunderstood your original post.
Another fix without having to edit the theme too much would be to create as many menus as your site needs and then set up a php if statement to decide if it should be shown on your site.
pseudocode:
if ( is_category( 'my-custom-category' ) ) { INCLUDE RELEVANT MENU } else if ( is_category( 'my-other-custom-category' ) ) { INCLUDE RELEVANT MENU }
Is this more in terms of what you were looking for
?Forum: Themes and Templates
In reply to: Trouble with .page-title and menuGreat!
Forum: Themes and Templates
In reply to: Reverting back to parent themeDeactivate the plugin that created the problem?
Forum: Themes and Templates
In reply to: Categorywise ThemeI suppose it is possible to copy the code you currently have in
header.php
and post that intocustom-cat-head.php
(making the edits your category requires) and instead of calling get_header() on your template you would just get_template_part() (https://codex.www.ads-software.com/Function_Reference/get_template_part) your custom header.Forum: Themes and Templates
In reply to: theme REQUIRES image for every postOh, there’s always a way! However the creators of your theme will be your best resource for discovering how.
Forum: Themes and Templates
In reply to: theme REQUIRES image for every postLots of blogs’ layouts depend on having an image associated with a post. Otherwise it would look pretty awkward, look at gawker.com
Requiring an image is a way of making sure you never forget it and ruin the layout of your site. I have a couple of sites that depend on having an image in each post.