Enej Bajgori?
Forum Replies Created
-
Forum: Plugins
In reply to: [Section Widget] [Plugin: Section Widget] Displaying widgets by TaxonomyI am thinking about updating the plugin soon. If you are interested in adding a patch that provides this functionality I will make sure it is gets in.
Enej
Forum: Plugins
In reply to: [People Lists] [Plugin: People Lists] Add custom fieldsHi listingwarebob
I updated the plugin for some reason the readme file is not updating.
here is a short tutorial on how you can use the filters<?php /* test filters */ add_filter("people_list_custom_fields",'test_display_custom_fields'); function test_display_custom_fields($array){ $array[] = "%this%"; //this is the string that is displayed in your template return $array; } add_filter("people_list_fields_display",'test_display_field',10,3); function test_display_field($display_list,$user, $list) { // $user // not being used but is the user object from the of a particular user. // do doing something like $user->ID try something like var_dump($user) to see the whole object // $list refers to a particular list and is the variable used // this way you can target a particular list $display_list[] = "replace text"; // this is the text that is return $display_list; } ?>
Forum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] can't get avatar on multisite blogsHi mlcy44
I am glad you solved the problem,
Thanks for posting it here. I will see if there is something I can do about that.Enej
Forum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] Not working in IE?To open it in a new window just click on the update photo button by middle clicking it.
you don’t have to change the code.Forum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] can't get avatar on multisite blogsWhat kind of permissions to you have set on wp-content/uploads/avatars/
folderForum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] Not working in IE?Hi KateM82
Do you have a set up where you can test. A place where you can disable all of the plugins and see if user- avatar works…
You might find out which configuration breaks the plugin.
That would be very helpful in the whole debugging processForum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] can't get avatar on multisite blogsForum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] can't get avatar on multisite blogshey mlcy44
I developed the plugin to work with multi site setup. You will need to provide me with more info. About your set up. Like what happends when you got the url of the image
what error do you get?Cheers Enej
Forum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] Compatible with Author Avatars List?Hi Jeff
I am not sure. The user avatar plugin adds a filter to get_avatar function to replace the image with the user uploaded one.So in theory it should work but I think you should try it and find out and post here if it does or doesn’t.
Cheers Enej
Forum: Plugins
In reply to: [People Lists] [Plugin: People Lists] Add custom fieldsHi listingwarebob and francodag.
I am planning to add some filters to the plugin that will allow you to extend the functionality. And I will add a tutorial somewhere that will explain how to do that. would that work for you?Btw. I looked into Cimy User Extra Fields and it creates some unnecessary tables in your database which I think are completely unnecessary. It would be better if it used the default wordpress tables.
Forum: Plugins
In reply to: [People Lists] [Plugin: People Lists] Executing PHP in a templateHi Jam
I am thinking about adding a filter to the plugin that will allow you to add your own tags and quiery the stuff easier in your case. This way you will be able to extend the plugin for your needs and not worry about modifying it for the future case. I will write a short tutorial that will do that. Would that work for your case?
Cheers Enej
Forum: Plugins
In reply to: [Plugin: User Avatar] Using with "Theme my login"I think in this case:
To have the user avatar work properly on the front side of the
You need to add sometime like this to functions.php file.<?php if(!is_admin()): wp_enqueue_script("thickbox"); wp_enqueue_style("thickbox"); endif;
[Please post code snippets between backticks or use the code button.]
This will open up user avatar in the think box.
Hope this helps. Let me know how it works out for you.
However I don’t think this sort of functionality is in the scope of the plugin.Forum: Plugins
In reply to: [People Lists] [Plugin: People Lists] Thumbnail Resize ?!Hi Nean
I think I understand your frustration. There is no way to create a smaller size image. I will try to fix this in the next version release of people list.
Forum: Plugins
In reply to: [People Lists] [Plugin: People Lists] Executing PHP in a templateHi JamTheMan
I don’t think you need to do that.
There is a way to create custom user meta fields in the user profile. and to display them in the template. Have you figured out how to do that? Let me know if the UI is not so straight forward.Cheers
Forum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] Not working in IE?Hi KateM82
Can you tell me if the light box appears in IE. Since the lightbox is not appearing in Firefox. I am guessing there is a JavaScript bug causing the script not to run that makes the light box not open up.
What version of jQuery do you use? Do you have any plugins enabled on your blog?