threestyler
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Rough Free Theme Release.Thanks for the heads up, does it happen on any other of the pages?
I dont see any of the chars but I have a feeling it’s to do with simplepie.
Forum: Themes and Templates
In reply to: Brightside Theme – add previous and next links?Code for previus and next posts (used in single.php):
<?php previous_post_link('« %link') ?> <?php next_post_link('%link »') ?>
Code for previous and next page (used in index.php):
<?php next_posts_link('« Older Entries') ?> <?php previous_posts_link('Newer Entries »') ?>
Forum: Themes and Templates
In reply to: change body text colorSearch you style.css for:
.entry { display:block; margin: 0 0; padding: 5px 25px; color:#fff; }
Replace with:
.entry { display:block; margin: 0 0; padding: 5px 25px; color:#000; }
Forum: Fixing WordPress
In reply to: number of entries in archiveYou could try this plugin: https://coffee2code.com/wp-plugins/custom-post-limits/
Forum: Fixing WordPress
In reply to: upload problemForum: Fixing WordPress
In reply to: Headlines on Main Pagetake a look at: https://codex.www.ads-software.com/The_Loop_in_Action
Forum: Fixing WordPress
In reply to: Nav bar link to external page?You can hardcode it yourself by modifying the header.php of your theme.
Open header.php
look for:
<ul> <?php wp_list_pages('title_li=' ); ?> </ul>
Change to:
<ul> <?php wp_list_pages('title_li=' ); ?> <li><a href="yourdomain.com/forum/">Forum</a></li> </ul>
Forum: Fixing WordPress
In reply to: upload problemSounds like incorrect permissions. Can you post the exact error message?
Forum: Fixing WordPress
In reply to: Upgrading to 2.5.1 using simple scriptsBackup everything to be on the safe side.
Did you install WordPress using simplescripts to begin with?
If you orignally installed WordPress on your site using simplescripts then under your installation should be an option to upgrade.
If not and you initiate a new install then it could very well wipe out your old info. If you installed WordPress manually then consider using one of the automatic upgrade plugins. I have had great success using this one
Forum: Fixing WordPress
In reply to: permalink errorCan you post a link to your website so we can have a look at the problem your describing?
Forum: Fixing WordPress
In reply to: Problem With Menu–HelpThat’s not what he meant. in wp-admin click on the Design menu then select widgets. Check if the sidebar is using widgets or not. If not try adding the pages widget and see if you can congifure the pages you want to appear and add any other widgets you want to use etc.
Forum: Fixing WordPress
In reply to: Post Redirects?You could either add a 404.php to your theme that redirects to your homepage and/or you could manually 301 redirect each url by editing your .htaccess
Example:
Redirect 301 /wordpress_folder_name/?p=221 https://www.domain_name.com/YYYY/MM/DD/post-title/
Forum: Fixing WordPress
In reply to: Accidentally deleted links database please helpIf you dropped the wp_links table from your database and don’t have any db backups. You could recreate the table with the default links. Open phpmyadmin and choose the SQL tab and Copy & Paste the table from here
Forum: Fixing WordPress
In reply to: Custom permalinks problemthat’s not the correct way of setting up permalinks.
the most common permalink structure is:
/%category%/%postname%/
You can combine as many of the permalink tags as you want:
Forum: Plugins
In reply to: [Plugin: PlugInstaller] Doesn’t work with 2.5.1What’s the error?