schwarzgrau
Forum Replies Created
-
Forum: Plugins
In reply to: [Menu Rules] is_author() seems not workingI didn’t noticed I have to use all statements for a menu item in one rule. Everything works.
Forum: Plugins
In reply to: [Query Multiple Taxonomies] Getting Title With CommasI’m sorry I was wrong. I just expected you maybe need something like a while or foreach-loop to get more than one termname.
Forum: Plugins
In reply to: [Query Multiple Taxonomies] Dropdown lists on a single lineJust modify your css. I guess “
float: left;
” would be the way to go.Forum: Plugins
In reply to: [Query Multiple Taxonomies] Proper Custom post type query for use with pluginThe problem is you’re overriding the standard wp_query with your own custom-query called $myposts.
Unfortunately I’m trying to do the same at the moment, with no luck. But I guess the way to go is to extend or decrease the standard wp_query with something like the $query_string;Forum: Plugins
In reply to: [Query Multiple Taxonomies] Getting Title With CommasIf I understand your problem this might help you
$terms = $wp_query->queried_objects; foreach(&terms as $term){ echo $term->name; }
but maybe i’m wrong.
I tried to fix that by using on
wp_get_image_editor();
and resizing and cropping the image, but to be honest I’m just botching around and try alot of stuff but just getting errors.
Nice to hear you already added code for this to the beta of 2.0 is there any way I could be beta-tester?Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact Form for each author??Would be nice to know how or when CF7 gets it’s variables, cause I can’t access the GET variables or the other variables on my author.php inside of special-mail-tags.php
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact Form for each author??[_post_author_email]
needs to be inside the loop. So doesn’t work on a author.php page it seems. And the solution ron_dev posted got the problem, that the email-adress got written in the html-source-code. By the way if you use Contact Form 7 – Dynamic Text Extension you got this problem too.
It would be nice to got another special mail tag for this purposes.
I tried it with$curauth = get_userdatabylogin($author_name); elseif ( '_author_email' == $name ) $output = $curauth->user_email;
and
$curauth = get_userdata(intval($author)); elseif ( '_author_email' == $name ) $output = $curauth->user_email;
inside of special-mail-tags.php but with no luck.
It seems the only possibility without changing the code of CF7 is to use
[_post_author_email]
and create an empty loop on author.php and paste CF inside. But the author needs posts for that and it feels wrong.$autor = $curauth->user_nicename; $args = array( 'posts_per_page' => 1, 'author_name' => $autor ); query_posts($args); while ( have_posts() ) : the_post(); echo do_shortcode( '[contact-form-7 id="442" title="my_form"]' ); endwhile;
Oh yeah, It feels so dirty…
Forum: Plugins
In reply to: [Posts 2 Posts] Got error-message after updating to 1.5thank you a lot scribu
Forum: Plugins
In reply to: [Advanced Custom Fields Limiter] A Little BugThe plugin works excellent, if you download it from github.
Forum: Plugins
In reply to: [Advanced Custom Fields Limiter] A Little Bugya, same here.
Forum: Plugins
In reply to: [Video Thumbnails] Beta Tester & German TranslationWeird, I wanted to beta-test too, I want to offer a german translation too and my name is Marc too.
Forum: Plugins
In reply to: [Posts 2 Posts] Got error-message after updating to 1.5changed the functions.php, but WordPress gives me an error-message after trying to activate posts2posts.
Something like “couldn’t be activated, cause it would produce an fatal error”Forum: Plugins
In reply to: [Query Multiple Taxonomies] Insert widget directly into php fileThank you a lot for posting this again tkhan
Forum: Plugins
In reply to: [Posts 2 Posts] each_connectd with 3 relationshipTo the second problem:
replace
the_title();
withecho'<li><a href="'.the_permalink().'">'.get_the_title().'</a></li> ';