Photoshop Tutorials
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unexplained text breaks / indents in paragraphsOkey, they try removing
via the html tab. How many posts you have this problem?–Prio
Forum: Fixing WordPress
In reply to: Unexplained text breaks / indents in paragraphsWhen i look it via firebug i see non braking space (
). so you might want to edit those post on html tab to remove it. Are you using different editor then tiny-mce (via plugin)?Forum: Fixing WordPress
In reply to: Heading between postsOkey.. here might be an idea:
You can make custom taxonomy to do it. That will give you the flexibility to add multiple posts on a term. and you can show the full post on taxonomy.php file.
So for example the term will be “HTML 5 Tutorial” for first one and you add all those html5 post under it.
To speaking as whole you still have to research on
- How to list those term as order as you want ( idea: using meta field on terms
- How to show terms on a particular subject or on a page ( idea: saving page id on a term meta)
Hope it will give you a start.
–Prio
Forum: Fixing WordPress
In reply to: Is anyone having problems with 3.3.2Contact plugin developer. They may want to release new version.
Prio
Forum: Plugins
In reply to: [The Piecemaker 2] [Plugin: The Piecemaker 2] Compatibility with IphoneThe plugin is needs flash. So, if you want to show slider on devices that don’t support flash you might want to use javascript or jQuery sliders.
Forum: Plugins
In reply to: [The Piecemaker 2] [Plugin: The Piecemaker 2] Not showingIts works for me but only for the first slide. It never goes to first slide to second. Any help?
Forum: Fixing WordPress
In reply to: Photos won't align to centerMark this post as resolved.
Forum: Fixing WordPress
In reply to: login required to see website as a public!!Not sure, because I think your problem was nothing to do with wordpress. Reinstalling wordpress should fix that.
Forum: Fixing WordPress
In reply to: Custom posttype RSS Feed with futured imageYou can just save the image and upload it again on new site as a thumbnail image.
Are you loading the post via some plugin?
Forum: Fixing WordPress
In reply to: login required to see website as a public!!Hey i think you should reinstall the wordpress. Its very weird problem! By the way i am getting 404 when trying to access the site.
Forum: Fixing WordPress
In reply to: Custom posttype RSS Feed with futured imageNo its working. The code is for adding thumbnail on feed which it did..
check here http://www.despekbraander.nl/test/feed/
Now make new custom post “books” and add some post thumbnail to it. It should work too.
Forum: Fixing WordPress
In reply to: Custom posttype RSS Feed with futured imageOkey, then add the first bit of code on your themes
functions.phpfile and reply back here.Forum: Fixing WordPress
In reply to: Photos won't align to centerCouple of fix actually:
1. As Esmi said you have to remove
.entry img, .entrytext img { margin: 7px; }2. Or you can modify it to:
.entry img, .entrytext img { margin: 7px auto; }3. Overwrite the margin left and right
.aligncenter, div.aligncenter { display: block; margin-left: auto !important; margin-right: auto !important; }or
.aligncenter, div.aligncenter { display: block; margin: auto !important; }Thanks!
Forum: Fixing WordPress
In reply to: Custom posttype RSS Feed with futured imageSo, the current code you are using doesn’t add the thumbnail to the CPT feed? Is that what you were asking?
It will be also helpful i can see the rss. Do you have any live site?
Forum: Fixing WordPress
In reply to: Custom posttype RSS Feed with futured imageNot sure what you trying to do. Do you want to add the thumbnails only to the Custom post rss feed?
This is how you will get the rss feed for a CPT
http://www.yoursite.com/feed/?post_type=booksif you want to add the thumbnail only on the CPT RSS then change your if statement to
if ( has_post_thumbnail( $post->ID ) && $post->post_type == 'books' ){ // codes }Hope it will help. let me know if you have any questions. Thanks.