bojandevic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Displaying complete text of posts on feedsI had similar problem but now it’s fixed http://wordpress.org/support/topic/364003?replies=3
Forum: Fixing WordPress
In reply to: Question about a queryWordPress Recent Posts from specific category
Just change the category number and number of posts.
Forum: Everything else WordPress
In reply to: Subscribing to threads on the WordPress Forums?If you still need this try Feed Mailer
Forum: Plugins
In reply to: Plugins for a link to my email; stats; google Friends Connect1. You don’t need any plugin for that you can use mailto attribute.
2. Don’t use any plugin use Google Analytics
3. Don’t need a plugin for that either. Add text widget to your blog and paste the code that Google gives you. (It will be easy if you add also Analytics code there)Forum: Fixing WordPress
In reply to: convert layout to BBCodeThere is a plugin BBCode
Forum: Fixing WordPress
In reply to: Changing ‘text field’ color in Contact form 7The text field color is defined in your theme so you need to change it there. In wp-content/themes/theme-name/styles.css
For one particular field do what I recommended you and save to contact-form-7/styles.css or wp-content/themes/theme-name/styles.cssForum: Fixing WordPress
In reply to: Excerpt in feedThanks, it’s been 2 days since I changed to full text. I thought that I need to change something.
Forum: Fixing WordPress
In reply to: Changing ‘text field’ color in Contact form 7It’s defined in your theme css, try to find “textarea” in your css and change background to fff. This will give them all the same color (white) if you want to define different color for some of them look in the source code and find which class does that field use. For example email field on my site (skepo.info/contact-me) uses class wpcf7-validates-as-email, so I can add this to my css (contact-form-7/styles.css)
.wpcf7-validates-as-email{
background:red;
}For changing border color read this
Forum: Fixing WordPress
In reply to: How do I add a “follow me on twitter” button?You can also use a plugin called WP FollowMe
Forum: Plugins
In reply to: Form plugins & modal windows….Inlines with Thickbox are easy to create. I have written about using it with Contact form 7 (http://www.skepo.info/web-development/wordpress/beautiful-wordpress-contact-form/). Have not tried to create modal.