extatix
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Thumbnail imageYeah, that’s why you use the WP Thumb function and not the custom field.
Forum: Themes and Templates
In reply to: Thumbnail imageHow do you add thumbs? Custom field or the WP thumbnail function?
Forum: Fixing WordPress
In reply to: Conditional tags don’t takeI created a workaround for this. The archive.php now have use a different function (with conditional tags). Home.php gets arras_get_posts (without conditional tags), archive.php gets arras_get_other_posts.
Now I’ll just have to figure out how to make arras_get_other_posts a bit shorter.
Forum: Themes and Templates
In reply to: Dont waste your time1.4.1 uses the WP thumbnail option. It’s easy theme. I don’t get why people keep struggling with it.
Forum: Fixing WordPress
In reply to: Possible to link to a category from Navigation?There’s a link to https://angerwise.com/start-here-2/ in your navigation menu and to angerwise.com/category/start-here/
Forum: Fixing WordPress
In reply to: WordPress for storing documentsForum: Fixing WordPress
In reply to: How to return the basic url of a thumbnail?I was really getting annoyed because it didn’t work the way I wanted it. It did not give me the picture to throw in timthumb, it showed me the picture.
I was standing under the shower and then I finally realised what went wrong, I never said the $thumbnail had to go to Timthumb. After that it was a walk in the park.
For completeness, this is the complete end result.
Forum: Fixing WordPress
In reply to: I need to disable Avatars wordpress 292Settings – discussion
Avatar display
[x] Don’t show Avatars
[ ] Show AvatarsPress Save Changes.
Forum: Fixing WordPress
In reply to: Possible to link to a category from Navigation?The navigation links are pages now right?
Make a new page and make its title:
<a href="https://yoursite/category/specific">Specific</a>
It should work.
Forum: Fixing WordPress
In reply to: Can someone help please?It would help if you’d tell what your problem actually is.
Forum: Fixing WordPress
In reply to: Colored border around linked imageIs it the same color as normal links?
Forum: Fixing WordPress
In reply to: How to return the basic url of a thumbnail?And I did it… Man, thanks t31os_, you lead me into the right direction.
The end result. This gave me the thumbnail I wanted. But I wanted to put this into TimThumb. So I exchanged the last part after else return to that ‘function’. Great.
if ( function_exists('has_post_thumbnail') && has_post_thumbnail($post->ID) ) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), full ); if (!$thumbnail[0]) return false; else return $thumbnail[0];
Forum: Fixing WordPress
In reply to: How to return the basic url of a thumbnail?I’ve tried a couple of things and I can’t get this one right.
Forum: Fixing WordPress
In reply to: How to return the basic url of a thumbnail?I changed it into
if ( function_exists('has_post_thumbnail') && has_post_thumbnail($post->ID) ) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' ); if (!$thumbnail[0]) return false; else return $thumbnail[0];
But it still doesn’t do what I want. Hm…
Forum: Fixing WordPress
In reply to: How to make WordPress in Croatian