Rian Rietveld
Forum Replies Created
-
Forum: Plugins
In reply to: [Sociable] Sociable Skyscraper not working@monkeypigs At the moment I use sexybookmarks form Shareaholic.
Looks good and works perfect. No Skyscraper though…
https://www.shareaholic.com/publishers/install_wordpress/Forum: Plugins
In reply to: [Sociable] Sociable Skyscraper not working@shan Relax, plenty of other, well supported plugins around ??
,Forum: Plugins
In reply to: [Sociable] Sociable Skyscraper not working@monkeypigs It looks like this plugin isn’t maintaind any longer…
Forum: Plugins
In reply to: [Sociable] Sociable Skyscraper not workingHi,
Since the last update my Sociable Skyscraper doesn’t work anymore. The Classic Sociable works just fine. My site is sustainablestyle.nl and i’m using the Thesis version 1.7. I have another site using the same plugin and theme and the Skyscraper doesn’t work there either. Maybe it’s the combination theme-plugin?
I can edit my files, just haven’t a clue to where to begin to debug.Kind regards,
RianHi,
Great work ??I would like the links sorted by date or ID too. I am using the plugin for a list of publications, and it world be nice to have the one that is added the latest ,to be on top of the list.
Kind regards,
RianYes, that would be nice, i can’t use the plugin anymore after updating to 3.2
File sync doesn’t work properly anymore.Quick workaround:
The admin part works, the output not. After looking at the code of the plugin I decided it was less work to code some output myself.
The data is stored in the post meta table, so, in the loop…:<?php $meta_value = get_post_meta( $post->ID, 'post_second-image_thumbnail_id', true); $image = wp_get_attachment_image_src( $meta_value, 'full' ); if ( $image[1] >= 778 ) : echo '<img src="' .$image[0]. '" id='top-image' style="width: 778px; height: '.$image[2].'px"/>'; endif; ?>
This code is for the second-image I defined in functions.php
The meta_key for this is: post_second-image_thumbnail_id
In this case the image is the full image and the width is hardcoded to 778 pixels, you can set these values to your own needs, like:<?php $meta_value = get_post_meta( $post->ID, 'post_third-image_thumbnail_id', true); $image = wp_get_attachment_image_src( $meta_value, 'medium' ); echo '<img src="' .$image[0]. '" style="width:'.$image[1].'px"; height: '.$image[2].'px"/>'; ?>
same here ??
Forum: Installing WordPress
In reply to: WordPress 2.9: your attempt to edit this post has failedI use WPMU 2.9.1 and buddypress 1.2 and got the error
The method in this post worked for me
https://www.ghacks.net/2009/02/02/wordpress-your-attempt-to-edit-this-post-has-failed/So true @drokkon I really have to set up a test environment one of these days…
Forum: Plugins
In reply to: [Plugin: Auto Group Join] Admin Menus Error@noizeburger Thanks!
Forum: Fixing WordPress
In reply to: If the_excerpt() is blank?Found this useful from
https://wpcult.com/display-the_excerpt-only-if-there-is-text/if ( !empty( $post->post_excerpt ) ) : the_excerpt(); else : false; endif;