cgrabe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments window opens when typing “N”I’m still not sure what initially caused the issue, but I just removed the comment icon in the top admin bar by adding the following to functions.php:
function remove_comments(){ global $wp_admin_bar; $wp_admin_bar->remove_menu('comments'); } add_action( 'wp_before_admin_bar_render', 'remove_comments' );That seemed to solve the issue.
Forum: Fixing WordPress
In reply to: Comments window opens when typing “N”Thank you for the reply Ismael! I typically work with the classic editor. I’m just starting a new site after not working on one for a few years, so it’s what I’m used to.
It happens whether I am on the dashboard or on the actual page. It’s not live yet, so I can’t view it without being logged in. The only time it does not happen, is if i am actually typing in the backend in a textbox. If I’m filling out a form on the site itself, the N issue still happens.
I too didn’t see any kind of shortcuts using N. I disabled comment shortcuts as well. I also, had my business partner log in on his computer, and it happens there as well.
Thanks again,
ChrisForum: Plugins
In reply to: [Sidebar Login] %username% no longer workingI had the same problem. I was able to fix it by going into the /include/class-sidebar-login-widget.php file. On line 105, change
display_nametouser_login.Forum: Plugins
In reply to: [Visual Form Builder] Artifiacts appearing in formThat worked, Thanks!
You are awesome. That worked perfectly!
Thanks
I saw that thread before and tried to follow it, I just took another stab at it and am still totally confused.
1. Where would I add
<a href="">get_avatar($isCurrentUser, 50)</a>?2. Is my domain supposed to go inside the quotes above?
3. Here is the link I currently have
<a href="http://localati.com/members/'. bp_member_permalink() .'">'. get_avatar($EM_Booking->get_person()->ID, 50) .'</a>, in the spot where it says'. bp_member_permalink() .'am I supposed to replace that with something else? Keep in mind that I am trying to point to the url of another attendee, not myself.It is now fixed. I was probably unclear in my explanation, but you guided me to the right place. I had both options marked as NO, but after thinking about it, I changed the Display Global Options on Main Blog to YES and the it gave me the option to link subsite directions directly to subsite. This is what I was looking for and now it works.
THANKS!!!!
Forum: Plugins
In reply to: [Visual Form Builder] Checkbox Option 1 not in admin panelI got mine working by switching to the TwentyEleven theme and editing my fields for option 1 there. When I switched back to my custom theme, option 1 was visible.
I figured I would have to keep switching with every new form, but that isn’t the case. Every new form I create in my custom theme now works fine.
That worked!
Thanks
After reading this I realized that it was the attendees.php that I needed, not attendeeslist.php
Here is my code:
Where would I put the $EM_Person->display_name?
My goal it to display AVATAR, NAME, COMMENT for each attendee.
Thanks
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Logo redirectMy apologies, I posted in the wrong forum.
That worked, thanks!
Here is the link
As you can see, the window is is really not needed since the address is just to the left of it anyway.
I was on 5.2.4 and just upgraded to dev version 5.2.4.2. That fixed the issue with #_EVENTIMAGE. I should have thought to go there since I saw you guys were working on that about a week ago.
Once #_EVENTIMAGE displayed, I remembered seeing Event List jumbled in the same way before. For some reason BP Template pack was disabled in my main site but not subsites. This fixed the rest.
Thanks for the quick response! You guys are awesome with the support.
Also, can I change the colors of the buttons? I am looking to make the Book Now button green and the Cancel button red.