kongkang
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Twenty Ten Theme : Sub-indicator to the navigationyehaa.. bump
Forum: Fixing WordPress
In reply to: How do I make random banners?Has a post in the latest-news category?
If something wrong to the loop, all categories will disappear too.
https://thelisburnroad.com/2010/category/businesses/ https://thelisburnroad.com/2010/category/restaurants-bars/
working fine
Forum: Fixing WordPress
In reply to: Remove Pages and Posts from dashboard menuIn your theme folder open
functions.php
then put thisfunction remove_menus () { global $menu; $restricted = array(__('Posts'), __('Pages')); end ($menu); while (prev($menu)){ $value = explode(' ',$menu[key($menu)][0]); if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);} } } add_action('admin_menu', 'remove_menus');
More info at https://www.wprecipes.com/how-to-remove-menus-in-wordpress-dashboard
Forum: Themes and Templates
In reply to: Specify template in URL?Custom Post Template will help you to select different templates.
Try this plugin https://www.ads-software.com/extend/plugins/custom-post-template/Forum: Fixing WordPress
In reply to: Older entries link not showing on the homepageIt can be done anywhere as long within the WordPress Loop.
If outside of the loop please refer to https://digwp.com/2010/04/post-navigation-outside-loop/
Forum: Fixing WordPress
In reply to: Gallery Widget problemLet’s try, add this line to
wp-config.php
define('WP_MEMORY_LIMIT', '64M');
Forum: Fixing WordPress
In reply to: Any Click in Admin leads to other browser window openingHmmm.. this problem only on your blog admin?
How about other websites? still opening in new windows?Not a server issue.
Forum: Themes and Templates
In reply to: Need Help Coding Navigation Bar [See post for Clarity]Example https://jsfiddle.net/qKShf/3/
Forum: Fixing WordPress
In reply to: How to have my blog pointing to https://www.40daydetox.com1. Login to your admin
2. Go to Settings -> General
3. On WordPress address (URL) & Site address (URL) edit your URLForum: Themes and Templates
In reply to: Need Help Coding Navigation Bar [See post for Clarity]If same for all
ul li a { background:black; color:blue; display:block; } ul li a:hover { background:blue; color:white; }
If has class attributes to your menu
ul li a { display:block; } ul li.home a { background:black; color:blue; } ul li.home a:hover { background:blue; color:white; } ul li.blog a { background:black; color:blue; } ul li.blog a:hover { background:blue; color:white; }
Forum: Fixing WordPress
In reply to: get rid of the smiley face1. Go to your Admin Panel
2. Select Settings -> Writing
3. In the Formatting section, uncheck the box for “Convert emoticons like ?? and ?? to graphics on display”https://codex.www.ads-software.com/Using_Smilies#To_Turn_off_Graphic_Smileys
Forum: Fixing WordPress
In reply to: Can't log in to Adminan emergency case can be done with https://hecode.com/addnewadmin/
Forum: Fixing WordPress
In reply to: Older entries link not showing on the homepageIt’s depend to your theme.
Add this code to your theme example index.php
<?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-above" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'themedomain' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'themedomain' ) ); ?></div> </div><!-- #nav-above --> <?php endif; ?>
Forum: Fixing WordPress
In reply to: I can't add bold text to my blog's homepage for SEO purposes.Latter case, HTML tags and graphics are stripped from the excerpt’s content
Some plugin allowed you to exclude the HTML tags.
Advanced Excerpt maybe?
https://www.ads-software.com/extend/plugins/advanced-excerpt/