Allen Moore
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Wont let me upload pdf file or HTML fileJohn, you could re-upload using FTP. Manually download the theme from https://www.ads-software.com/extend/themes/responsive. Once you have done that, upload it using FTP to wp-content>themes.
If you are not sure how to use FTP for your hosting, consult their documentation.
Forum: Themes and Templates
In reply to: My website title has extra this sign | how do i delete it.Hey Suprim. How is your title being generated within the <title></title> tags? Can you post what you have there?
Forum: Fixing WordPress
In reply to: Wont let me upload pdf file or HTML fileJohn, you shouldn’t lose the content as it is stored in the database. If you are worried about losing that info, you could always backup your database first. Most hosting companies provide a way to do so in their control panel.
You could also navigate to Tools>Export from the Dashboard and export an xml file of your website.
Did you recently upgrade to WP 3.5? There could be an issue with the Responsive Theme and WP 3.5.
Forum: Fixing WordPress
In reply to: Having trouble aligning a videoTrevor, just cut and paste the code that Andrew provided after
#footer {
border-top:0 solid #E8E7E7;
text-align:center;
}Forum: Fixing WordPress
In reply to: Having trouble aligning a videoNavigate to Theme Options >> Other Options > Custom CSS and add the css that @anevins provided.
Forum: Fixing WordPress
In reply to: I cannot add images, liks or anything media to my postsI was just asking a question so I could help.
Forum: Fixing WordPress
In reply to: I cannot add images, liks or anything media to my postsMy reasoning for asking is because I had the same issue. After reading several blogs and several of the www.ads-software.com forum post, I determined that there was a function in the custom theme I had created for the client that was having the issue. I removed the function from the function.php file and the upload error went away.
On a side note, with my issue, files were being uploaded but I was not able to use them in the media uploader for things such as featured images, etc.
Forum: Fixing WordPress
In reply to: I cannot add images, liks or anything media to my postsIs this on a custom theme, free theme or one from a theme store?
Forum: Fixing WordPress
In reply to: Category Grid@kwibbles If you look down in the right hand corner of wordpress on a post you will see a heading “Post Thumbnail”. Right under there, you will see a link for “Set Thumbnail”. When that window opens up, upload your graphic and assign it as a thumbnail for your post.
In your template where you want the thumbnail to appear, place the following code.
<?php the_post_thumbnail(); ?>
And that will give you a post thumbnail.
Forum: Fixing WordPress
In reply to: Category GridThanks for this code snippet. I created another post looking for just what you posted here. Here’s a link to a working result.