Mobbin01
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can not get pictures to Hyperlink to save my life!!also when I first hover over the image, the address without the www, first showes, then is followed by the hyperlink address WITH the www added.
Forum: Fixing WordPress
In reply to: ALL pages get 404 errorThanks…no I got it fixed. Somehow the htacces file in my root directory didnt have the (.) in front of it, so my permalink structure was not working.
Forum: Plugins
In reply to: Anti Hot linking code (does not fully work)I changed the code around in the .htaccess file to look like this:
# 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]
RewriteCond %{HTTP_REFERER} !^http://(.+.)streetsoffashionseattle.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*.(jpe?g|gif|bmp|png)$ http://streetsoffashionseattle.com/wp-content/uploads/2011/04/jesse-jane-dont-hotlink_pg.jpg [L]
</IfModule># END WordPress
Still nothing has changed and pictures can still be hotlinked to…
Forum: Hacks
In reply to: Disable post revision (where to put code)Ok, so I enter added the code:
define('WP_POST_REVISIONS',3);to my wp-config.php file and it doesnt seem to have changed anything. When I go into edit my page or blog posts it still shows a long list of page revisions…
Am I missing something?
Forum: Hacks
In reply to: Disable post revision (where to put code)The site of link that I found that info on is
http://www.incomediary.com/15-ways-to-speed-up-wordpress/The guy who runs the site gets a lot of traffic so it is a little ominous that he giving out accurate information. I guess in the end it is all good stuff to know, but still.
I actually have w3 total cache, its good however I had to disable the Java script minify settings, and I have not been able to quite understand or configure the CDN…
Forum: Hacks
In reply to: Disable post revision (where to put code)Duh…yea, I totally understand what I did then. Thank you for the reply and the useful info. But yea, I was under the impression that this code would speed up my blog, since I found the code in and article specifically related to speeding up your blog.
Do you have any code off the top of your head that I should add, or anyone, should add to their blog to speed it up?
Forum: Hacks
In reply to: Featured image creation codeI can’t help you out per say, but I will tell you that the current wordpress template I am using has a featured post function, but not like the one you are describing, which is much better.
The problem with mine is that, yes the featured picture goes to the home page slider, but it also inserts the picture no matter what at the begging of your blog post at dimensions that you, the user do not control.
I would like to be able to insert an image of my choice into the home page slider, then not be forced to have that image at the beginning of my posts. Sort of a rant here but your development sounds good to me!
Forum: Themes and Templates
In reply to: CSS link color ( I did everything right)I feel stupid, nevermind I got it figured out. Cleared my cookies…
Forum: Themes and Templates
In reply to: CSS link color ( I did everything right)ok I spoke too soon. All the links on my site are the color I want, thanks to adding the custom CSS.
BUT…
There are a couple links on this page ( http://streetsoffashionseattle.com/5-must-install-wordpress-fashion-blog-plugins/ ) that are not conforming to the CSS…
specifically the link titled Smush.it and WP-DBManager both in bold toward the bottom of the post.
Why on earth would these links stay the old color??
Also now when I go to add links in a new post, they are not coming up as the color I specified in CSS…WTF?
Forum: Themes and Templates
In reply to: CSS link color ( I did everything right)Great thank you! My theme had a place to put the custom CSS.
Forum: Themes and Templates
In reply to: CSS link color ( I did everything right)Ok,thanks… I get what you are saying, but when I go to style.css the only thing that is written is
/* Theme Name: YEN Description: Clean Magazine Newspaper Template Version: 1.0 Author: Peerapong Pulpipatnan Author URI: http://themeforest.net/user/peerapong */ @import "css/screen.css";that is it, so does this mean I should add
a:link { color:#0066CC; } a:visited { color:#743399; } a:active, a:hover { color: #FF4B33; }[please mark your code using backticks or the code button]
directly into style.css with my changes then update? (does that make sense?)