Menzer
Forum Replies Created
-
Forum: Plugins
In reply to: [BP Profile Search] Advanced Custom Fields (ACF) SupportHi Mecanographik, can I ask you 1 question please, could you tell me how you managed to attached ACF to buddypress groups please as I noticed this is something you have manage to do already
Hi Angelo, thanks for getting back to me… I manage to do by copying the em_event_form() function code from em-template-tags.php lines 178 – 213 to my theme function.php I made slight changes to the code reversing the if (empty()) to if (!empty()) and it works! I have left the code below for anyone who needs similar setup just copy and paste into you theme function.php and call using em_event_form2() so now you can have both tags on one page…
Just one help please angelo after the person has submitted how can I redirect the user to the newly created post… if you can help I would be grateful.
Finally can anyone let me know if there is an issue or problem with the code changes I made below
//Event Forms - New /** * Outputs the event submission form for guests and members. * @param array $args */ function em_event_form2($args = array()){ global $EM_Event; if( get_option('dbem_css_editors') ) echo '<div class="css-event-form">'; if( !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') && em_locate_template('forms/event-editor-guest.php') ){ em_locate_template('forms/event-editor-guest.php',true, array('args'=>$args)); }else{ if( empty($_REQUEST['success']) ){ $EM_Event = new EM_Event(); //reset the event } if( !empty($EM_Event->event_id) ){ $EM_Event = ( is_object($EM_Event) && get_class($EM_Event) == 'EM_Event') ? $EM_Event : new EM_Event(); //Give a default location & category $default_cat = get_option('dbem_default_category'); $default_loc = get_option('dbem_default_location'); if( get_option('dbem_categories_enabled') && is_numeric($default_cat) && $default_cat > 0 && !empty($EM_Event->get_categories()->categories) ){ $EM_Category = new EM_Category($default_cat); $EM_Event->get_categories()->categories[] = $EM_Category; } if( !is_numeric($default_loc) && $default_loc < 0 && ( !empty($EM_Event->get_location()->location_id) && !empty($EM_Event->get_location()->location_name) && !empty($EM_Event->get_location()->location_address) && !empty($EM_Event->get_location()->location_town) ) ){ $EM_Event->location_id = $default_loc; $EM_Event->location = new EM_Location($default_loc); } } em_locate_template('forms/event-editor.php',true, array('args'=>$args)); } if( get_option('dbem_css_editors') ) echo '</div>'; } /** * Retreives the event submission form for guests and members. * @param array $args */ function em_get_event_form2( $args = array() ){ ob_start(); em_event_form2($args); return ob_get_clean(); }Forum: Reviews
In reply to: [WORDPRESS VIDEO GALLERY] Not workingI beg to differ, I have this installed on my wp and it works perfectly and is easy to use, I am using the free version at the mo but will have no hesitation in purchasing the full version once I can afford it and may i say it is not helpful just saying, it does not do anything and is not user friendly, it’s like me saying the light in my house doesn’t work. Well there could be a hundred reasons why the light doesn’t work in my house.
Please email the developers and they will gladly assist but I think you will need to give them more information than that.
Good luck
Forum: Plugins
In reply to: [Custom Content Shortcode] multiple galleriesThanks for you response, but fortunately built into my theme was ACF (Advance Custom Fields Pro) and in there it has a built in Gallery so using that and your wonderful plugin has enabled me to create something for my client in 1 day where I thought it would have taken me a week
So thanks!!
Ok for any one having a problem with this plugin on Mobile / Safari (It’s works on Mobile Chrome)
You will need to edit the plugin file:
buddypress-upload-avatar-ajax/bp-signup-avatar.php and find the code below<div id=”tv-featured_image-upload-container” style=”position: relative;”>
and replace with this
<div id=”tv-featured_image-upload-container” /* style=”position: relative; */”>
It’s something to do with Safari on ios not finding the element
So flipping simple in the end but it took me 3 days to find the problem.
Hope it helps someone!
Forum: Plugins
In reply to: [BuddyPress Cover] Standard BP image fallbackI have this problem where BP Cover over rides the following plugins with it default avatar WP Social Login and also overrides bowes code Members shortcode
When I switch BP Cover off the Profile Images display correctly how can we stop this, it was ok in the previous version
Forum: Plugins
In reply to: [BuddyPress Cover] Avatar doesn't adjust on FirefoxI have this problem also using chrome
Ok 2 problems…
It does not work when using normal BP profile picture upload but it works using the BP-cover upload
and
When I use the BP-cover upload the image does not fit in the square box properly no matter what image I use…I also have this problem this is a great plugin just need to fix issue with blank image in activity stream, I think it’s because some of my users use the normal BP photo upload
Forum: Plugins
In reply to: [BuddyPress Cover] bp-ava doesn't worksI have this problem also… when user update their profile picture using normal BP profile upload this I get a blank profile picture in the activity stream, does anyone know how to fix this please
Forum: Plugins
In reply to: [WP Popular Posts] Up / Down ArrowsHi Hector, thanks for the reply, is this something you could customise and at what cost? I think this would be a great added feature and it is something I would like
Forum: Plugins
In reply to: [IMPress Listings] Sidebar IssueHi I have this same issue tried the css above but I can’t figure it out http://adanestates.socialvendors.co.uk/?listing=3-bedroom-terraced-house-laitwood-road-sw12
Forum: Plugins
In reply to: [DW Question & Answer] remove sidebar from single question pageOk I installed a plugin called Display Widgets
This allow me to select where I want my sidebars to show 🙂 I was able to stop my blog sidebar from showing on my answer page.
hope this helps
I am having this problem with comment button not showing so cannot post a comment is there a quick fix for this?
Forum: Plugins
In reply to: [DW Question & Answer] remove sidebar from single question pageDo you want to remove the whole sidebar or is it showing the wrong sidebar?