Tareq Hasan
Forum Replies Created
-
Hello Thomas,
I am not sure about the first problem you are facing. I’ve never heard anything like that :S
And sorry, the custom taxonomies are not implemented fully. They are not effective in the frontend yet. I am so busy to that can’t manage time to implement that.
Thanks
May be your theme or some plugin conflicting with wp
The image is inserted as a linked image to that post. Because your theme shows the featured image or any linked image for that post, you see it in the main page. And as your theme doesn’t show it in single post, you don’t see it. It’s upto the theme.
You can use the following code in your single.php to show the images.
<?php $args = array( 'post_type' => 'attachment', 'numberposts' => null, 'post_status' => null, 'post_parent' => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { echo wp_get_attachment_image($attachment->ID, 'medium'); } } ?>
I forgot to say, you could use the plugin API that this plugin offers. There is a filter for adding custom validation rule. You could use that in this case and could avoid editing the plugin directly.
$errors = apply_filters( 'wpuf_add_post_validation', $errors );
in line 228 wpuf-add-post.phpThis issue has been fixed in the new version 0.6
You don’t need to disable anything. Just don’t use the profile shortcode, that’s it.
version 0.6 is released some days ago, use that one.
Sorry, currently you can use only one form with having a default category (setting from backend)
I guess you are not using the latest version?
Seems good ??
I’ve pushed this change with some other changes to the github repository yesterday. You may check that too ??
Hello Wassimo,
Thanks for appreciating my plugin. I’ll look into the bugs and will try to fix them. As I am really busy right now, I can’t guarantee about the ETA ??
Yeah, you can give the idea. Lets see what you bring to me, he he. You can always mail me at: tareq<at>wedevs<dot>com
Please correct my name, it’s “Tareq“, NOT “Tareg”
I never tested with Buddypress, so I can’t surely tell you about the compatibility. If you don’t need the profile, you can skip the profile section, it’s upto you.
for adding a custom post type post, use the shortcode [wpuf_addpost post_type=”portfolio”].
Similarly for dashboard [wpuf_dashboard post_type=”portfolio”]
nope