Giri
Forum Replies Created
-
AuthorPosts
-
October 24, 2016 at 3:12 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #290782
Thanks Stevens.
October 24, 2016 at 1:55 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #290672You are overriding footer template again. So your customization causing footer issue.
I highly advise you to hire someone if you have no idea what you are doing.
Thanks
October 24, 2016 at 1:51 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #290671Hi Stevens, It looks like you are overriding buddypress templates in your child theme.
In sucgh case you don’t need to customize whoop in this case.
Just clone whoop page.php template and then rename it to buddypress.php. Your case will be solved.
This reply has been marked as private.Hello Frank, I guess your site is having some fatal errors. Please post your ftp details. So I can enable debugging and check whats causing it.
Thanks
October 24, 2016 at 11:15 am in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #290547Instead of creating a new function for each and every page, try using OR
function whoop_add_bp_sidebar() { if (bp_is_user_notifications() || bp_is_user_messages() || bp_is_user_friends() || bp_is_user_groups() || bp_is_user_settings() || bp_is_user() && bp_is_forums_component() ) { get_sidebar('bp-details'); } } add_action('bp_whoop_sidebar', 'whoop_add_bp_sidebar');
That above code would solve your forum problem
I’m not familiar with buddyforms. So can’t help you much if you don’t provide ftp and admin login details.
Thanks
You are welcome 🙂
Add this code in Whoop Options -> Quick code -> Custom CSS
.geodir-big-header-rc { display: none !important; }
Let me know how that goes.
Thanks
October 24, 2016 at 9:43 am in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #290530Please try with this code.
function whoop_activity_bp_sidebar() { if (bp_is_user_activity()) { get_sidebar('bp-details'); } } add_action('bp_whoop_sidebar', 'whoop_activity_bp_sidebar');
and then add this css in custom css
body.activity.buddypress .whoop-member-item-wrap #item-body { width: 49%; }
PS: Don’t forget to remove your own custom css code.
Let me know how that goes.
Thanks
October 21, 2016 at 4:17 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #289286Hi Stevens,
I have removed the if check.
So now the sidebar will be displayed in all buddypress pages.
The reason I have removed sidebar from buddypress pages is because to match yelp design.
If you face any problem, let me know.
P.S: You need to test all buddypress pages. Take a note of pages where the sidebar not required and then let me know. So I can only exclude those pages.
Thanks
October 21, 2016 at 1:56 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #289214Thanks for letting me know
October 21, 2016 at 1:50 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #289183Please post your admin login details. I’ll have a look
Thanks
October 21, 2016 at 1:40 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #289181Try deleting the buddypress register page and creating once again.
Then assign it in the buddypress settings
October 21, 2016 at 1:33 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #289178Have you set the register page in buddypress settings?
Settings -> BuddyPress -> Pages -> Registration
October 21, 2016 at 12:45 pm in reply to: Sidebar doesn't appear Whoop theme GEODIR & BUDDYPRESS #289152This reply has been marked as private. -
AuthorPosts