Chip Bennett
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Newbie… be kindAs a newbie, doing it via FTP wasn’t a really helpful answer.
Tough love time:
Basic understanding of FTP is a fundamental requirement for hosting your own web site. Trying to host your own website without knowing how to use an FTP client is like trying to play tennis without a racquet.
Your life will be considerably easier if you are willing to learn how to use an FTP client. Using an FTP client is really no different from using a file manager.
Forum: Themes and Templates
In reply to: Problems with ads on a custom wordpress themei found a function named “theme_ads_show” on functions.php but when i remove it i can’t open the site anymore
Yeah… you can’t do that. You probably just crated an undefined function fatal error, by deleting that function definition.
What Theme are you using, and where did you download it?
Forum: Themes and Templates
In reply to: Non-blog website themeJust about every Theme in the WPORG repository will be suitable for a site with or without blog posts.
I’ve found that little checkbox to make pages static…
I have no idea what this means. Static pages are an entirely different type of content from blog posts, and one cannot be converted into the other.
the templates I’m finding still have blog buttons on the main navigation toolbar and I’m not seeing a way to edit them off
What do you mean by “blog buttons”? Can you give a specific example of such a Theme?
Forum: Themes and Templates
In reply to: sidebar and footer not display in homepage??theme designer by me. 🙂
Then in order to give specific help, we’ll need to see specific, relevant code…
Forum: Themes and Templates
In reply to: sidebar and footer not display in homepage??What Theme are you using?
When I activate the twenty ten theme I can see the Menus under appearance but the admin bar at the top is broken.
Have you deactivated all Plugins?
Forum: Themes and Templates
In reply to: Help me to add HOME buttonAlso: are you using a custom user navigation menu, or is the fallback menu being displayed? To find out, go to Dashboard -> Appearance -> Menus, and look to see what (if anything) is selected for the appropriate Theme Location in the Theme Locations meta box in the upper left-hand corner.
If the default fallback is being displayed (i.e. no custom menu is selected for the given Theme Location), then add the following to
functions.php:function themename_child_filter_wp_page_menu_args( $args ) { $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'themename_child_filter_wp_page_menu_args' );That should cause WordPress to output a “Home” link, if the Theme is using the default fallback functionm,
wp_page_menu().Forum: Themes and Templates
In reply to: Help me to add HOME buttonDoes your site front page display the blog posts index, or a static page?
Forum: Fixing WordPress
In reply to: Summary TextI just checked the code of the theme and there is no “the_content()” in it. What should I edit?
What Theme are you using?
Forum: Fixing WordPress
In reply to: editing home pageIt says recent Posts…
That means that your site front page is set to display your Blog Posts Index, in which case there isn’t anything to configure, unless you intend to modify your Theme’s template files.
…and I cannot find the home page in the list when I press static. What would happen If I choose blog ?
Let’s take a step back: what do you want to display on your site’s front page? Do you want to display your blog posts index, or a static Page?
Forum: Fixing WordPress
In reply to: Summary TextYou’ll need to modify your Theme.
Full post content is output via the
the_content()template tag. Post excerpt content is output via thethe_excerpt()template tag.Use the latter wherever you want to display excerpts instead of full content.
Can you activate both Twenty Eleven and Twenty Ten without problems?
Forum: Themes and Templates
In reply to: Problem with 'add_menu_page'You should be using
add_theme_page()for a Theme’s settings page, rather thanadd_menu_page().Forum: Themes and Templates
In reply to: style.css missingAs this is a commercial Theme, you will need to consult the support offerings of ThemeForest, for any Theme-specific support (which includes installation issues).
Forum: Fixing WordPress
In reply to: editing home pageGo to Dashboard -> Settings -> Reading
What does the Front page displays? setting say: blog posts, or a static page?
If static page, what page is selected in the Front Page dropdown immediately beneath?