lildragn
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itSo it is working, just not pulling the image, interesting. Ok so i’m using the featured image feature to “attach” images to posts, so they’re not inserted into the description field if you know what I mean?
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itYup this looks much better than mine haha. Unfortunately though nothing returned with it. Let me know if you can see this profile https://videogame-art.com/my-profile/ForestWolf/ and take a look at Gallery uploads. Remembering this is a custom post type called “Portfolio” where users create their entries. I’ll try a little more tonight to see what else I can tinker with as well.
Cheers!
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itHi AG, sorry to be such a bother, I really appreciate your help, and your plugin so far makes an excellent addition on my site.
Below is what I’m adding to my functions.php and unfortunately doesn’t return anything. I’m not that great with PHP at the moment but learning, so maybe you could help me with this block of code so I know where my error is here?function symposium_blogpost_row_action ( $html, $post_ID ) { $post = get_post_thumbnail_id($post_id); $url = wp_get_attachment_image_src($thumb_id); $html .= '<div class="symposium_blogpost_excerpt">'; $html .= '<img style="height;width;" src="$url">'; $html .= '</div>'; return $html; } add_filter ( 'symposium_blogpost_row_hook', 'symposium_blogpost_row_action', 10, 2 );
Thanks again
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itSo I tried a variety of ways to display the thumbnails without success, so hopefully you’ll reply with a solution when you have a moment.
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itHi AG, this worked great, just changed the post_type to my custom name and it’s displaying those rows nicely. So as far as displaying thumbnails to the right of each row, how would I accomplish this?
Thanks much for your help
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itYeah, I’m just in the process of migrating my site from Mingle to WPS ?? WPS is a bit trickier to handle but it’s definitely better.
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itExcellent thanks. Will test this right now. Been looking for a way to do this for awhile now ??
Cheers
Forum: Plugins
In reply to: [Plugin Name: WP Symposium Blog Post] WP-Symposium Blogpost-unable to use itHi AlphaGolf… is it possible to expand this to show custom post types instead? And possibly a thumbnail? This would be great and a feature I would heavily utilize.
Thanks!
Forum: Fixing WordPress
In reply to: Adding Author column to custom post typeAny help would be greatly appreciated. At this point I just need the “Author” dropdown to appear either in Quick Edit or the edit post page. This is a custom post type btw. If someone can point me in the right direction that would be equally great. Really need some help here.
Thanks
Forum: Fixing WordPress
In reply to: Adding Author column to custom post typeOk so I managed to get the author column listed by simply adding
"author" => __( 'Author','si_theme' ),
in the $columns array. Reason it bonked my site before was due to the fact I forgot the , after the line >_<.That said I can now see the author… but now I don’t have the dropdown list available like this I have no clue where to enable this. Help please! ??
~t