Rachel Baker
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Twenty Eleven – Remove "Posted by …"Can you tell us which file you already removed code from? And, if known, what code you removed?
Forum: Fixing WordPress
In reply to: How to stop tables in pages stretching?Please provide a link to the page with the table code, so we can see what code the page is using to override your formatting.
Forum: Fixing WordPress
In reply to: how to get rid of strikethrough?Do you have the plugin “Broken Link Checker” installed? That could be the reason for the strikethrough.
Forum: Fixing WordPress
In reply to: Site name duplicating?It sounds like your WordPress SEO plugin is not configured correctly. Under the plugin, you have to configure the name templates for your “homepage” and other pages. This will fix your problem.
Forum: Fixing WordPress
In reply to: Error Msg On My site..Have you installed any plugins recently? If so, remove them via FTP, and try again.
Forum: Fixing WordPress
In reply to: Where or where do I paste button code?You can paste it into the footer.php file in your theme.
As far as positioning the button, you may need to have someone help you with CSS.Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorWhen do you receive the error? When you are in the WordPress Administration section?
Who is your hosting provider?
Forum: Fixing WordPress
In reply to: Trying to get rid of the '-2' from category slugsI am about 99% sure that you cannot. As you pointed out both categories and tags are taxonomies, in the wp-terms table. While you can have a category and a tag with the same name, they cannot have the same slug.
Forum: Fixing WordPress
In reply to: How to exclude unnecessary CSS and JS files from loading?You could use php code in the header or footer of your site to only load the files needed on the pages needed. Example:
<?php if (is_home()) {?> <?php include(TEMPLATEPATH . '/js/slider.php'); ?> <?php }?>
Forum: Fixing WordPress
In reply to: Can't get into 3.2.1 DashboardLog into your site via FTP and copy over to your computer the wp-login-security folder and then delete it from your site. It is that plugin giving you the problem.
Forum: Fixing WordPress
In reply to: -2 number at the end of a permalinkIt does mean that another page or post was created with the same name. You may want to check the trash, for the page of the same name. Otherwise, you can try to change the permanlink and remove the -2 at the end of the url to see if that fixes it.
Forum: Fixing WordPress
In reply to: Top Menu Bar Missing Some Pages (But Not Others)Jeff,
I am sorry, I am not familiar with that theme – and it looks like it hasn’t been updated in about a year and 1/2. You might want to try the Flexithemes support forum or documentation. https://flexithemes.com/themes/modern-style/
Forum: Themes and Templates
In reply to: Cannot upload sommerce themeIt sounds like the permissions on your hosting account are preventing you from uploading the theme from within the WordPress interface.
You have 2 options:
1. Upload the theme folder via FTP to the “themes” folder inside the wp-content folderOR
2. Correct the folder/file permissions. Full instructions here: https://codex.www.ads-software.com/Changing_File_Permissions
Forum: Themes and Templates
In reply to: Scalable / Flexible Background that Looks Good in All BrowsersChris from CSS Tricks has a great post on how to do this with CSS: https://css-tricks.com/3458-perfect-full-page-background-image/
You can use CSS3 and the HTML tage (instead of body) to stretch the background image, but it will only work in modern browsers.
html {
background: url(../images/texture.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
…or you can use the CSS #2 method as shown with source code here: https://css-tricks.com/examples/FullPageBackgroundImage/css-2.php
Forum: Themes and Templates
In reply to: Header/Tagline/Category Header/Image Display/CSSCan you provide links to the pages where this is happening?