Forum Replies Created
-
In reply to: bbPress Profile Link Shortcode Plugin
Glad you finaly did it.
All the best.
In reply to: bbPress Profile Link Shortcode PluginMy plugin is rejeceted, here is their reply:
Your plugin has been rejected because it is a duplicate of another plugin, already hosted on WordPress.org
My answer was this:
The reason why I did it is because, I do have client and he checked your plugin and he said that "This plugin hasn’t been tested with the latest 3 major releases of WordPress." So he feels insecure. I have tested with WordPress and bbPress and it works fine.
In reply to: bbPress Profile Link Shortcode PluginThank you for kind words.
Energy drink always helps me to have good drive.
If tomorrow will not pass approval, because 21 plugins is waiting for review, then I can upload on different host if you will.
In reply to: bbPress Profile Link Shortcode PluginI have submitted plugin to repository, now we need to wait for approval.
I will post link here.
In reply to: bbPress Profile Link Shortcode PluginI will make plugin for you.
In reply to: Allow Users to Edit There Profile Icon on menu BarSure,
1. Indentify template file of forum index in template directory of plugin and copy it to your theme, but place it in bbpress folder.
2. place the code what I have sent, you have link above the forum to profile.
I can do same as profile menu as is here above forum, but it require more coding and probably you will experience difficulties with integration. Only solution is I can send you custom theme to demonstrate what I can do 🙂
In reply to: Allow Users to Edit There Profile Icon on menu BarIn reply to: Allow Users to Edit There Profile Icon on menu BarI made mistake with my registration email. I can not verify account. Sorry, my bad.
In reply to: Another user’s edit page jumps to the profile pageYou most welcome 😉
In reply to: Allow Users to Edit There Profile Icon on menu BarCombined html with php
<a href="<?php echo bbp_get_user_profile_url( get_current_user_id() ); ?>">Profile</a>
Can you share theme? I will customize it and you will just activate it 😉
In reply to: Another user’s edit page jumps to the profile pageYou do not want to give access to profile subpages to other forum participants.
Yes, you are rock.
I do not use operand
and
. I like&&
.Glad you like it 😊🐱😝
In reply to: Looking for a featureYes, @delta5
Auto-embed links:
Embed media (YouTube, Twitter, Flickr, etc…) directly into topics and repliesGo to -> Settings -> Forums -> Forum Features (section) -> Auto-embed links
In reply to: Create a new forum on each new post?Dear @slugs,
I am WordPress evangelist, and we want to cover as much as possible about WP.
Main features I want to have:
1. Activity page, like on facebook
2. Chat
3. Messenger for users, want push-ups
4. Project Manager to manage any WP project.I will contact you if the site is ready.
Thank you very much.
In reply to: Another user’s edit page jumps to the profile pageAll right so you have above defined 4 links. 4 subpages and we want to redirect redirect them to user profile main page.
We need to use hook to redirect those pages
add_action( 'template_redirect', 'redirect_user_to_profile_from_subpages' ); function redirect_user_to_profile_from_subpages() { global $wp; // subpage - enagements if ($wp->query_vars["bbp_engagements"] == 1 ) { wp_safe_redirect( bbp_get_user_profile_url( get_current_user_id() ) ); exit; } // subpage - topics created if (bbp_is_topics_created()) { wp_safe_redirect( bbp_get_user_profile_url( get_current_user_id() ) ); exit; } // subpage - replies created if (bbp_is_replies_created()) { wp_safe_redirect( bbp_get_user_profile_url( get_current_user_id() ) ); exit; } // subpage - subscriptions if (bbp_is_subscriptions()) { wp_safe_redirect( bbp_get_user_profile_url( get_current_user_id() ) ); exit; } }
Let me know if this works for you.
In reply to: Another user’s edit page jumps to the profile pageI will post action hook, give me a moment.
In reply to: Another user’s edit page jumps to the profile pageIn reply to: Create a new forum on each new post?You welcome. Anytime.
Would you come to visit my website when is ready, maybe next year? Dedicated to help wp users.
In reply to: Allow Users to Edit There Profile Icon on menu BarSure, contact anytime. 😉
This can help as well.
We can use action hook. Here is explation how to use it. There are files where you can find the place.
https://codex.bbpress.org/bbp_theme_before_forum_title/
In reply to: Allow Users to Edit There Profile Icon on menu BarThis code will generate html link if you combine with code above:
<a href="[php_code]">Profile</a>
Place it above the forum maybe?
In reply to: Allow Users to Edit There Profile Icon on menu BarSSo, you said you need dynamic url to user bbpress profile. Correct?
This code will generate profile url
<?php echo bbp_get_user_profile_url( get_current_user_id() ); ?>
In reply to: Allow Users to Edit There Profile Icon on menu BarWill be ok to make simple theme for demo, then we can integrate to your theme.
What do you think?
In reply to: Allow Users to Edit There Profile Icon on menu Barwhere do you need to place that avatar? Above the forum?
In reply to: Allow Users to Edit There Profile Icon on menu BarCan you send link to your web?
In reply to: Allow Users to Edit There Profile Icon on menu BarAllright, so let me clarify what you need.
Some avatar maybe above the page when user is not logged in, it will show some menu with somelinks. Anthe when user log in updated menu for logged in users.
For logged in users links:
Profile
Topics Started
Replies Created
Engagements
Favorites
Subscriptions
EditIs it correct?
In reply to: Create a new forum on each new post?It should be easy to understand code and should work as you describe above.
Do not hesitate to contact me.
Here are my screenshots:
Home Page:
https://ibb.co/8m1225XSingle Page:
https://ibb.co/KhCDFtx