threestyler
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to create a Board of Directors pageIf your problem is down to styling the layout of the ‘page’ then you will likely need to hire someone to create a custom page layout for you or try another theme that does have a page that can be used for staff/team etc.
Forum: Fixing WordPress
In reply to: wp-cron using excessive memoryWhat size is your WordPress site, hosting environment, shared, vps etc ram allocation, cpu cycles? There are so many variables based on the little information provided it’s hard to respond with anything but generic suggestions to narrow things down right now.
I would start by optimising the database, deleting old post revisions, cleaning the trash.
Load up one of the Memory usage plugins.
Try disabling all plugins, and do some more monitoring a poorly coded plugin could easily be the cause, same with poorly optimised themes that use inappropriate and often expensive database queries. Depending on the environment of your site it may be worth creating a clone on a dev url you can troubleshoot on then pushing to the live site.
Forum: Plugins
In reply to: Post Description not showing in social media linksTaking a stab in the dark, I would say it’s something to do with All In One SEO plugin and possibly a conflict with AIO and the SEO settings of the theme your using.
Otherwise as you’re using a premium theme you would need to contact the provider regarding support for theme related issues.
Forum: Installing WordPress
In reply to: Going DedicatedNot particularly familiar with running WordPress on Windows hosting but you may find the answers you need here:
http://www.microsoft.com/web/platform/phponwindows.aspx
and here:
http://www.microsoft.com/web/wordpress
Whilst waiting for someone else to chime in.
Forum: Fixing WordPress
In reply to: Permalinks not working due to mod_rewrite permissionsPossibly but as you hadn’t used the appropriate code tags I didn’t take the time to read your code thoroughly.
In fact you should have used pastebin.com for more than 10 lines. As outlined in the sticky welcome thread at the top of the forum:
http://codex.wordpress.org/Forum_Welcome
You may not have mod_rewrite on, take a look at the codex for tips on troublehooting and/or alternative methods of implementing permalinks without .htaccess:
http://codex.wordpress.org/Using_PermalinksForum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesYou can safely replace
<title>tags and code between with:<title><?php wp_title ('|', true,'right' ); ?></title>This example uses a pipe instead of a dash and will show the title to the right of the post/page title on those pages.
Otherwise you could use:
<title><?php wp_title (); ?></title>That should resolve your dashes. You could also just hard code the output and save on an additional database query:
<title>Your chosen title</title>Take a look through the codex for many more example usages:
http://codex.wordpress.org/Function_Reference/wp_titleForum: Fixing WordPress
In reply to: How to remove post title from a single postApologies for missing your reply. You can use Conditional Tags and Custom post types to style different posts.
http://codex.wordpress.org/Conditional_Tags
You would create a new custom post type, style it with it’s own my-post-type-template.php in your theme (excluding titles etc). And then add it to the loop:
Something like this:
// First query your custom post types query_posts( array( 'post_type' => 'my_post_type', 'post_status' => 'publish', ); // Begin the Loop if (have_posts()) : while (have_posts()) : the_post(); // rest of loop endwhile; endif; ?>Hopefully that will be enough to get you going then you should be able to play around with the above and tweak it until you get the desired output.
Forum: Fixing WordPress
In reply to: Why are there gaps between my images and content?On the edit post page at the top right of the writing area should be two tabs. One is visual and the other should say HTML:
Forum: Fixing WordPress
In reply to: Permalinks not working due to mod_rewrite permissionsThe .htaccess at the root of your WordPress installation.
Should have code similar to the followingL
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesFirst of all in the admin go to Settings > General and look under ‘Site Title’.
Next, go to Theme > Editor and select your themes header.php and look for a hardcoded dash in the title.
<title> </title>tags.Next some plugins will rewrite the titles for SEO, so disable all plugins then look at the page source.
Forum: Fixing WordPress
In reply to: Permalinks & RSS issuesPossibly
.htaccessrelated. What is your website url?Forum: Plugins
In reply to: FoxyShop Yellow Bar Across ScreenThat’s a ‘bread crumb’ navigation take a look through the settings of the plugin to edit/disable/modify it.
Forum: Installing WordPress
In reply to: Issues with a domain name on WP.com migrating to WP.orgFTP into your site or use the File Manager in your Bluehost cPanel and edit the
wp-config.phpfile.Add the following line:
define('RELOCATE',true);Save and exit then go to http://example.com/wp-login.php and it should update the correct url.
If that works you can then remove the above line. Else try adding the following to your wp.config.php:
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');below:
/** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', '');Changing example.com in the snippet above to your actual url.
Forum: Fixing WordPress
In reply to: 301 htaccess redirection from old permalinks to new permalinksHave you tried modifying the permalink structure in WordPress admin to strip .html first? It will automagically 301 redirect your old permalinks anyway and would also explain why it still appears.
Forum: Fixing WordPress
In reply to: Widgets not workingFirst thing that springs to mind is a plugin conflict. Try disabling all active plugins and then trying to add a widget. If that works you can start the process of elimination by re-enabling a plugin at a time then checking the widget functionality still works until you discover the culprit.