tomystein
Forum Replies Created
-
Didn’t find a solution yet, even after going back to a previous ver…
Is the “Automatically set thumbnail as featured image (“Save Thumbnail to Media” must be enabled)” need to be on or off?
Thanks
Any news?
I can tell you that it was working two weeks ago and suddenly stopped working. Thumbnails are still appearing except of those videos that were created with JW Player. After speaking with JW Player admin, I don’t think the problem is on their side. Can you email me so I give you more details – tomystein@gmail.com ?
Thanks!
What do you mean by “JW Player is not officially supported at this time.”
By you? or by WordPress?They have a WordPress plugin… and the thumbnails were working until a few weeks ago.
Forum: Plugins
In reply to: Image gallery plugin that works with the system's tags?someone?
Do you have any clue?
Actually it’s still getting thumbnails but not trough jw player. I don’t know if it’s a change in your side or in theirs but I think we didn’t change anything that should affect it.
Forum: Fixing WordPress
In reply to: WordPress feeds – how to add thumbnails?I have read the comments for this plugin and it seems like it’s not working for wp 3.3.1
There are people complaining about too many servers requests and other things.
Do you have another suggestion? Maybe a manual thing to just change the way that the feed is working
example.com/tagname/feed/Thanks
Forum: Fixing WordPress
In reply to: WordPress feeds – how to add thumbnails?I will check that but just for general information: The feed that I want to have is a tag’s feed with all its posts that contains only videos.
So it’s not pure images, more vidoes..Thanks
Forum: Fixing WordPress
In reply to: How to display/add post tags underneath the post?Could make it work with this:
<?php print get_the_term_list( $post->ID, 'adventure', '<p>Tags:', ' ', '</p>' ) ; ?>How can I add the other taxonomies? kids, science…
Thanks
Forum: Fixing WordPress
In reply to: How to display/add post tags underneath the post?This isn’t working for me as well btw:
<?php the_tags('<p>Tags: ', ', ', '</p>'); ?>Forum: Fixing WordPress
In reply to: How to display/add post tags underneath the post?Thought of using something like this: doesn’t work..
<?php $term_list = wp_get_post_terms($post->ID, array("fields" => "names", 'taxonomy' => array('kids','adventure','science') )); echo $term_list; ?>Forum: Fixing WordPress
In reply to: How do I create a "report broken link" button?Hi,
Thanks for your help!
I managed doing it with a contact form plugin that we already had + tweaks.Forum: Fixing WordPress
In reply to: Creating automatic posts/content from rss feeds or google searchThanks for your speech.
In the end, I really think that WordPress should have people that gives professional support and not to be based on volunteers.
Didn’t want to disturb you in the middle of your coffee.
I am bumping so maybe someone will answer. If not, a lot of posts just don’t get answered.
The thing that I am asking to exists.Forum: Fixing WordPress
In reply to: How do I create a "report broken link" button?I will try using this plugin but I would like also to know how to make it work. This is what I am trying to do, but I can’t make it work:
<form action="send_problem.php" method="POST"> <input type="hidden" name="page" value="<?php echo $_SERVER["REQUEST_URI"] ?>"> <input type="radio" name="problem" value="wrong">Wrong Link <input type="radio" name="problem" value="broken">Broken Link <input type="radio" name="problem" value="video">Video Broken <input type="submit" name="submit" value="Report Problem"> </form><?php include .'wp-includes/pluggable.php'; if(isset($_POST['submit'])) { $to = "my_email_address"; $page = $_POST['page']; $problem = $_POST['problem']; $body = "$problem was reported on the following page: $page"; echo "Thank you"; wp_mail($to, $body); } else { echo "ERROR"; } ?>My server doesn’t have pear installed so I need to make it work through wordpress and smtp function or plugin.
Please help.
Thanks