threestyler
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How to install without connecting to any other site ?Add this to your wp-config:
define(‘WP_HTTP_BLOCK_EXTERNAL’, true);
Forum: Fixing WordPress
In reply to: Broken Image Links {HELP}They seem to appear fine for me. Do you have an ad blocker installed?
Forum: Developing with WordPress
In reply to: Redirect Feeds to Feedbuner Without Any PluginCan also be done via .htaccess (place before WordPress rewrite rules):
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} ^/?(feed.*|comments.*) [NC] RewriteCond %{HTTP_USER_AGENT} !^.*(FeedBurner|FeedValidator) [NC] RewriteRule ^feed/?.*$ https://feeds.feedburner.com/username [L,NC,R=302] RewriteRule ^comments/?.*$ https://feeds.feedburner.com/username [L,NC,R=302] </IfModule>
Forum: Fixing WordPress
In reply to: Comment Blacklist and ModerationInstall the Akismet plugin?
Forum: Fixing WordPress
In reply to: list tags if ther is no more sub categoryPost the code you have so far.
Forum: Themes and Templates
In reply to: How to move Slogan position??You need to modify the stylesheet style.css
Look for:
.slogan { css: stuff; }
Forum: Themes and Templates
In reply to: Added new widget area, cannot add widgetsTry:
register_sidebar(array( 'name' => 'Footer', 'id' => 'footer', 'description' => 'Footer widget area.', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h3>', 'after_title' => '</h3>' ));
<div id="footer-widget"> <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('footer')) : else : ?> <?php endif; ?> </div>
Forum: Fixing WordPress
In reply to: How to create a Board of Directors pageThat’s great, glad you resolved it ??
Forum: Themes and Templates
In reply to: Post Images – HomepageDepends on the theme and how it has been coded. I assume you are so far just “inserting images into post” ? Try also selecting “Set as featured”. Otherwise you will need to tell us which theme you are using.
Forum: Fixing WordPress
In reply to: WP websites on multiple computersIf you install WordPress onto your hosting account (godaddy) then it is being hosted at godaddy and not locally on your computer.
You can then access your files however you want, via ftp, sftp, ssh, or the built in theme editor etc.
You would only download WordPress to individual computers if you were working locally and not remotely.
Forum: Plugins
In reply to: Basic Password to access blogYour host probably provides a quick way to do this via your control panel.
Otherwise create a file called: .htpasswd
Inside add your username and password:
username:password
Save the file ABOVE public_html directory so it is not publicly accessible.
ie if your site is located:
/home/username/public_html/websitename
Put the .htpasswd file:
/home/username/
Then in your .htaccess file (located in the root of the directory you want to protect) add:
Authtype Basic AuthName "Protected directory" AuthUserFile /path/to/your/.htpasswd Require user username
Changing username for either your username in the .htpasswd file or
valid-user
if you plan to have several user accounts.Forum: Fixing WordPress
In reply to: Trying to amend a .htaccess fileThe url is controlled via the admin under Settings > General > WordPress Address (URL) > https://www.example.com
A manual 301 redirect would look like this:
RewriteEngine On RewriteCond %{HTTP_HOST} ^example\.com RewriteRule (.*) https://www.example.com/$1 [R=301,L]
However if it is set differently in your admin this will break the site as WordPress will be redirecting to non www. whilst the .htaccess tries to force www.
Forum: Plugins
In reply to: Looking for a plugin that reviews changes before they are made.Edit flow sounds like it could suit your needs: https://www.ads-software.com/extend/plugins/edit-flow/
Possibly combined with a user role/membership plugin.
Forum: Fixing WordPress
In reply to: comment shows up on blog but can't deleteYou could delete the comment using phpmyadmin via your hosts control panel. It will be stored in a field called: dbprefix_comments ie wp_comments.
Make a backup of your database first.
Forum: Installing WordPress
In reply to: Going DedicatedThat message suggests you haven’t installed PHP which is required for WordPress.
The first link I posted has the download for installing PHP then use the second link to install WordPress.