atburi
Forum Replies Created
-
with get_terms, I can limit the results to show just one term?
I will check – thanks.
Forum: Plugins
In reply to: [WP Social AutoConnect] "FB Login Error" email notificationsJustin, yes, it would be easy and I’ll try it. It seems that some people are successfully logging in, though, while others are not. I still get this error about 10 x a day but I’m still getting new signups
philmay, thanks for weighing in. Makes sense what you said.
I have some time soon to trouble shoot this and I’ll let you guys know the results.
Thanks,
AlexHi Harish – actually already figured it out. Was an issue with another script I was using.
Thanks anyway,
AlexForum: Plugins
In reply to: [WTI Like Post] On plugin activation, all my posts disappear from listingsHi – thanks for your response. I’m still deciding on whether I’ll be using this plugin or not so I’ll wait for now before asking for anymore help. I appreciate your willingness to help though,
Alex
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Breaks bbPress 2.3 searchHi Mikko,
I actually ended up disabling bbPress for now – so this issue is still important to me but not currently relevant. Thanks again for your support so far.
Alex
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Breaks bbPress 2.3 searchMikko, what level of access should I give you? I think I trust you – but I don’t want to hand over any admin accounts 🙂
Thanks donmik, that makes sense… thanks for taking the time to respond.
I’ll stick to xprofile_get_field_data()
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Age not formatted rightguess that was somewhat obvious. Thanks donmik.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Age not formatted rightHi Donmik,
As my question is somewhat relevant to this thread I’ll post it here.
I would like to remove the <p>…</p> that gets added to the birthdate field (and preferably all fields). I know there is this code below:
add_filter( 'bxcft_show_field_value', 'my_show_field', 15, 4); function my_show_field($value_to_return, $type, $id, $value) { if ($type == 'birthdate') { $value = str_replace("<p>", "", $value); $value = str_replace("</p>", "", $value); $field = new BP_XProfile_Field($id); // Get children. $childs = $field->get_children(); $show_age = false; if (isset($childs) && $childs && count($childs) > 0) { // Get the name of custom post type. if ($childs[0]->name == 'show_age') $show_age = true; } if ($show_age) { return '<p>'.floor((time() - strtotime($value))/31556926).'</p>'; } return '<p>'.date_i18n( 'F j' , strtotime($value) ).'</p>'; } return $value_to_return; }But I’m not sure how to edit that just to remove the <p></p> and keep the rest the same.
Thanks,
Alex
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Breaks bbPress 2.3 searchMikko, I’d be up for that but the website I’m having this issue on is still offline in development mode. I’l be uploading it in a few days here, and will let you know then. Thanks for helping!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Breaks bbPress 2.3 searchstill no luck.
if it helps, here is the template for my bbpress search form:
<form id="bbp-search-form" class="form-search searchform" method="get" action="<?php bbp_search_url(); ?>" role="search"> <label class="visuallyhidden" for="bbp_search"><?php _e( 'Search the trekkers lounge:', 'bbpress' ); ?></label> <input id="s" class="s" name="bbp_search" tabindex="<?php bbp_tab_index(); ?>" type="text" value="<?php echo esc_attr( bbp_get_search_terms() ); ?>" placeholder="Search topics" /> <input id="forums_search_submit" class="btn redbutton3" tabindex="<?php bbp_tab_index(); ?>" type="submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" /> </form>Forum: Plugins
In reply to: [Relevanssi - A Better Search] Breaks bbPress 2.3 searchwas just about to try it, but won’t now if it works – thanks DJoseph…
Mikko, thanks again for trying to help. I realize this is a free plugin…
Relevanssi is such a great addition to my site (http://trekkingpartners.com/) that I might drop bbPress in favour of it, but we’ll see…
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Breaks bbPress 2.3 searchHi Mikko,
Thanks for coming up with a patch. It didn’t work for me, however. I still get zero search results on any search done in bbpress. When I disable the relevanssi plugin then all the results appear.
any other ideas?
thanks again,
AlexI’m also new to this stuff… so hopefully someone else a little more knowledgeable comes along 🙂
good luck!like a drop-down filter that the user can use to select what post type they are searching for?
somewhat unrelated, but I’ve used this page as a good way to understand how to filter the searches through my search form, if it helps:
http://wordpress.org/plugins/relevanssi/faq/
read further down the page…
good luck !