gixxer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Thumbnails do not display in POST (?)The code is as follows;
[gallery id=X]
There is a space between “gallery” and “id”
Download the dutch language file from here -> https://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/languages/
Forum: Fixing WordPress
In reply to: Comment Bubble AlignmentThey updated their site and there is no comment bubble
Forum: Fixing WordPress
In reply to: Blank page with digits 54 in it.Website? Example?
Forum: Fixing WordPress
In reply to: Trouble adding HTML code to sidebar text widgetCan’t help without seeing your code.
Forum: Fixing WordPress
In reply to: Change font color of Post Titles- NOT WORKING!<div class="title"> <h2><a href="https://nuttsphotography.com/?p=230">The Crib - Such a happy place</a></h2>
In your style.css file edit this
/*POST TITLE FONT STYLE**/ .ti, .title h2 { margin:0; font-size:30px; color:#f8f7e1; font-family: Georgia, "Times New Roman", Times, serif; font-weight:bold; line-height:27px; }
Forum: Fixing WordPress
In reply to: Adding Author’s name to bottom of blog postEdit the Single Post (single.php) file and move the code
<?php printf(__('by: %s'), '<a class="url fn n" href="'.get_author_link(false, $authordata->ID, $authordata->user_nicename).'" title="' . sprintf(__('View all posts by %s'), $authordata->display_name) . '">'.get_the_author().'</a>') ?>
to the bottom near the Post a Comment code.
Forum: Fixing WordPress
In reply to: Help with echo post.If you’re using “Categories” you can create multiple categories and then check the boxes for those categories you want the Post to appear in.
Forum: Fixing WordPress
In reply to: How do I make my sidebar shorterRemove all the Google Adsense ads in the sidebar that are causing the pages to be long. Adsense will display as many ads as you insert code to display regardless of how long or short your Post may be.
Forum: Fixing WordPress
In reply to: Commenting problem…Remove the plug-in “Spam Karma”. Use https://recaptcha.net/
Forum: Fixing WordPress
In reply to: How to keep static first post and then show newest posts after?In 2.7.1 you have the option to set a Post as “sticky” which will keep that post on top of all other future Posts. Quick Edit a Post and then click on “Visibility” and there you will find the “Sticky” checkbox.
Forum: Fixing WordPress
In reply to: “blog title” and windows title barDepending on the theme you are using, usually in your header.php you will find code similar to this that you can edit to meet your needs.
<title><?php bloginfo('name'); if ( is_404() ) : _e(' » ', 'sandbox'); _e('Not Found', 'sandbox'); elseif ( is_home() ) : _e(' » ', 'sandbox'); bloginfo('description'); else : wp_title(); endif; ?></title>
Forum: Fixing WordPress
In reply to: Bookmarklet for Links/Blogroll?wp-admin -> Tools -> Press This
Forum: Fixing WordPress
In reply to: 2.7.1 no feed settings ?wp-admin -> Settings -> Reading
Forum: Fixing WordPress
In reply to: Top Toolbar is not there!Yes, you can either download and install the latest version or download and install a new TinyMCE or check your browser and make sure you have java enabled as the TinyMCE editor is a Java app and requires it.