Forum Replies Created
-
Author
-
April 18, 2016 at 21:02 in reply to: Trigger Login Modul if user is not logged-in on specific pages #117462CandromParticipantNot marked as solutionCandromParticipant
I’m not talking about WordPress or plugin compatibility. I’m asking if the theme, as delivered, works on servers that are configured with PHP 7.0.4! WordPress is compatible, but some plugins or themes are not, which is very sad because there are huge performance gains with PHP7.
Could you maybe escalate this question to one of the developers of the theme? I’d really like to get a competent answer to this.
Thanks,
Regards,
Glenn CharpantierCandromParticipantI found the culprit. It’s the LikeBTN plugin. Didn’t notice earlier when disabling because of caching.
CandromParticipantcorrection: on the code above, I had to use the action ‘init’ not ‘bp_setup_sav’ to make it work. But it still only works on buddypress pages not on all pages.
CandromParticipantI did all the steps you mentioned.
Here is what is inside the debug files, after commenting an activity update:
COPY CODE[30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: slug in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 41 [30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: name in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 45 [30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: slug in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 41 [30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: name in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 45 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined offset: -1 in /home/ginkgoga/public_html/wp-includes/post-template.php on line 268 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined index: slug in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/theme-functions.php on line 280 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined index: link in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/theme-functions.php on line 285 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined index: name in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/theme-functions.php on line 285
CandromParticipantI’m not sure if you understand what I mean.. or maybe it’s me that is not understanding something here..
ome menu items, like rtmedia “Media” menu-item, is not present on this page.
Theres also menu items that can be added through plugins like myCred. According to BuddyPress docs, you can change this order using the following code:COPY CODEfunction my_change_profile_tab_order() { global $bp; $bp->bp_nav['settings']['position'] = 10; $bp->bp_nav['activity']['position'] = 20; $bp->bp_nav['friends']['position'] = 30; $bp->bp_nav['groups']['position'] = 40; $bp->bp_nav['blogs']['position'] = 50; $bp->bp_nav['messages']['position'] = 60; $bp->bp_nav['profile']['position'] = 70; } add_action( 'bp_setup_nav', 'my_change_profile_tab_order', 999 );
This works fine, it does change the order in the user menu and tab menu, but only on buddypress pages! Other pages do show the default order and included blankspaces.
CandromParticipantBut how am I supposed to change the order of items that are added through plugins? such as rtmedia or mycred?
CandromParticipantNevermind. Playing around with this setting deleted the default menu entries, but by creating a new menu (top-right), I fixed it.
CandromParticipantI fixed it the iOS Safari display.
Somehow at a certain screensize there’s a margin appearing below footer, not sure why it was designed that way. I fixed it with the following css code:
COPY CODE.sidemenu-footer-inner { margin-bottom: 0px !important; }
January 7, 2016 at 20:19 in reply to: BuddyPress Likes plugin deletes activity stream entries #97093CandromParticipantAlright, but I had set it to show everything. Furthermore if I had 10 activites displayed and liked them all, but just unliked ONE entry, they all would disappear..
January 7, 2016 at 19:40 in reply to: BuddyPress Likes plugin deletes activity stream entries #97078CandromParticipantI switched theme to 2015 and it worked right away. After switching back it also worked on buddyapp theme, strange but ..fixed, I guess?
January 7, 2016 at 15:18 in reply to: BuddyPress Likes plugin deletes activity stream entries #96894CandromParticipantI disabled all plugins that did not come with the theme, problem still present.
Unliking an already liked item makes items dissapear after refresh on activity feed.January 7, 2016 at 01:38 in reply to: BuddyPress Likes plugin deletes activity stream entries #96802CandromParticipantAlso would it be possible to somehow incorporate this plugin to show up in live notifications? Getting notified when someone likes your updates would be great.
CandromParticipantI actually made it work now, somehow my server caching software was acting up.
Also, you were right, I was using another action, init did indeed work tho! Thanks for that.
-
AuthorPosts