rancor2k
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Order Notification with order.csv not being sent anymoreAlright, thanks for clarifying.
Do you know what Plugin might offer such a feature? Could this be part of the Gold Cart Plugin? I haven’t deactivated nor deinstalled any plugins from the site…Forum: Plugins
In reply to: [WP Splash Page] Set time to showJust add it anywhere inside the content box.
Forum: Plugins
In reply to: [WP Splash Page] Set time to showYou can do this easily by adding some javascript:
<script type=”text/javascript”>
window.setTimeout(function() {
window.location.href = ‘https://yourhomepage.de’;
}, 3000);
</script>This will redirect the user to your homepage after 3 seconds.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Display and Link to related PodsThx!
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] How to save decimal number?Is it possible to say there should be max. 2 decimal digits, but none if they’re 0?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] How to save decimal number?Sorry, I’ve not seen the Advanced-Tab. Thx
Great plugin btw, saved me a LOT of time!You’re welcome, glad I could help. Looking forward to the upcomming patches.
Sure.
Usually I write my post and add an image (600x400px) using the media uploader. From there I hit “Edit Image” and change the thumbnail (~160x160px) using the cropping tool. I then select save as thumnail from the radio boxes and hit save.
Back in my post I now select the post thumbnail. That’s it.(I hope I used all the correct terms as I have a german wordpress set up.)
I stopped trying after a while. Just gave it another shot, but unfortunately it’s still not working. I’ll keep it activated for a day or so so you can have a look at it.
Hey
No, I don’t use any plugins to change the post images. Here’s how I activated them im my theme:functions.php
if ( function_exists('add_theme_support')) { add_theme_support('post-thumbnails'); } set_post_thumbnail_size( 150, 150, true ); // Normal post thumbnails add_image_size( 'single-post-thumbnail', 600, 9999 ); // Permalink thumbnail size
index.php
<?php the_post_thumbnail('thumbnail'); ?>
I also checked my Caching-Plugin (Quick Cache), doesn’t seem to affect the thumbs.
Hey there
Thanks so much for trying to help me!
I’m not sure what you’re looking for, as the text of this post doesn’t include any images but the post image, which of course isn’t part of the text. Nevertheless, here’s the text for this page:
https://wp7app.de/10812/apps/cocktail-flow-zu-weihnachten-fur-nur-099e.html
https://pastebin.com/hiZYdf0MHere’s one of the thumbnails URL:
https://i1.wp.com/wp7app.de/wp-content/uploads/2012/12/Cocktail-Flow-für-Windows-Phone.jpg?resize=150%2C150unfortunately not. The thumbs are being displayed correctly, but with the auto-crop and not how I cropped them myself. The two thumbnails in your screenshot I haven’t cropped myself, so they’re fine.
How it Looks with Photon:
https://wp7app.de/?attachment_id=10886
How it’s supposed to look:
https://wp7app.de/?attachment_id=10885Forum: Plugins
In reply to: [Plugin: Jetpack] Photon doesn't support custom cropped thumbnailsno one?
Forum: Fixing WordPress
In reply to: Post image not shown in feed since 3.5That did the trick, thanks a lot! Here’s my updated code, if anyone is interested:
function my_feed_thumbnail($content) { if (is_feed() && has_post_thumbnail()) { return get_the_post_thumbnail( get_the_ID(), 'medium' ) . $content; } return $content; } add_filter('the_content', 'my_feed_thumbnail');