kosmicbird
Forum Replies Created
-
Ha!! That is hilarious and awesome that you made a Ron Paul plugin (too bad he didn’t get elected, we really need someone like him). Wow, you’ve got a lot going on so I will be patient for the updates 😉 Thanks again!
Well, you are doing a great job with the plugin, especially since you’re working on it by yourself so major respect for that!
After discovering USP, I decided I want to use it as the main feature of my homepage to create a scrolling stream of user-generated content. I believe it would be a defining feature of my site, so really looking forward to future updates if/when you’re able to get around to it. Would be happy to donate/upgrade in the future once I have revenue through the site. Thanks a lot for the replies and good luck with the continued success of USP 🙂
Yes, I understand that the plugin may not have been made to be compatible with other plugins. Ultimate Member is one of the top membership plugins along with Buddypress, so it would be nice to see some better integration with it. USP actually does integrate nicely with Ultimate Member when the Registered Username option is enabled, although not when the option is disabled.
It would also be nice if USP code could be modified so that Registered Username works with forms where login is optional so that there is no error preventing random users from posting when this option is enabled. Unfortunately I cannot create and implement a script myself since I am not an advanced dev.
Unfortunately since my site is so integrated with Ultimate Member, this may be a blocking issue for me from using USP as I wish until you guys (hopefully) in the future provide a solution for this issue. I’m really disappointed about this because aside from these issues, I really like what your plugin offers. Great plugin anyways and I wish it would work for me. Hope you guys will consider to fix this so that it can work for people in a similar situation like me.
- This reply was modified 9 years, 9 months ago by kosmicbird.
I understand the solution you are suggesting, however it is not working properly for my situation. Please see my initial reply for deeper understanding of the issue. I’ve already enabled Name field. These are the issues I have using your suggestion of enabling only Name field:
1) When a user is logged into my site, their username does not automatically populate if I disable Registered Username. (Keep in mind I am using Ultimate Member to create user accounts).
2) Logged-in user posts are not populated to ultimate member profile, since USP is not acknowledging the connection between the USP post and the user’s membership account when Registered Username is disabled.I do not have these 2 issues if I have Registered Username enabled. However, if I have Registered Username enabled then random/anonymous users don’t have the ability to submit posts. Is there some kind of conditions or script I could use to fix this issue?
If user is logged in, then get registered username as post author.
If user is not logged in, then get name field input as post author.I apologize as my knowledge beyond html and css are limited. But there has to be some way to remove the error occurring and allow random/anonymous users to make a post while the Registered Username + Name field option is enabled.
- This reply was modified 9 years, 9 months ago by kosmicbird.
- This reply was modified 9 years, 9 months ago by kosmicbird.
- This reply was modified 9 years, 9 months ago by kosmicbird.
- This reply was modified 9 years, 9 months ago by kosmicbird.
- This reply was modified 9 years, 9 months ago by kosmicbird.
- This reply was modified 9 years, 9 months ago by kosmicbird.
Also, if I disable both “Registered Username” and “Require User Login” while enabling only User Name field… the form does not automatically populate the member’s account username. Could be an integration issue with Ultimate Member, not sure. But figured I should inform you about that as well.
TLDR:
I basically need a way to have both Registered Username and User Name settings enabled at the same time, without giving non-logged-in users an error that they cannot make a post.
- This reply was modified 9 years, 9 months ago by kosmicbird.
Hi Jeff!
I want to display a name for every post – the member’s account username if they are logged in, or whatever name an anonymous user chooses to submit to the Name field if they are not logged in.
I already have the Name field enabled. Why does “Registered Username” expect all users to login? I thought this is what the “Require User Login” setting is for.
Logically if I have disabled Require User Login while having Name option + Registered Username option enabled, it should display the Name field for users who are not logged-in to fill out, while logged-in members should not see a Name field at all on the front-end (or should see an unmodifiable Name field that is prepopulated with their username) in either case would then display next to their posts once submitted.
I am using Ultimate Member for my user accounts and I need to be able to have “Registered Username” option enabled because when this option is enabled, it populates the user’s posts (via USP) into their public profile. However if I have to uncheck this option then the logged-in user’s posts do not populate within the user’s profile. Is there a workaround for this so that having Register Username option enabled does not automatically require all users to login?
Really appreciate you taking time to help.
- This reply was modified 9 years, 9 months ago by kosmicbird.
Okay, as soon as I posted this I figured it out. There actually is an option to make this a requirement under the Image Uploads tab – set a minimum number of images. Can’t believe I didn’t see this before. Issue resolved.
Thank you @kmestchuh for helping me to resolve this in email.
For anyone who has this issue in the future, here is the css I needed to fix my problem with image alignment:
a.post-title.cat-post-title { margin-top: 230px; } a ~ a.post-title.cat-post-title { margin-top: 0; }Thank you @kmestchuh, great support and great plugin.
Hi @Kmestchuh, I have emailed with my url
Figured it out. For anyone with the same issue in the future:
Go to submission-form.php file in cPanel
Search for the specific field you need to modify the character limit for. In my situation I needed to set a limit for the Post Title, which is organized as “usp-title” in the file.Now, simply add maxlength=”45″ to the input tag. Switch 45 with whatever character limit you choose.
Thanks for the awesome plugin USP!
- This reply was modified 9 years, 9 months ago by kosmicbird.
Thanks a lot for the input @verysiberian! It’s starting to look like EDD is more up my alley. Initially I was interested in WooCommerce too because I want to eventually do some drop-shipping on my site with physical products relevant to my niche, but I think I will hold off on that for a while and focus on digital products. Thanks again and good luck with your project(s) as well!
I’ve heard of EDD! I’ve been considering between offering eBooks via EDD or just selling them using WooCommerce. I wasn’t sure if I could use EDD for the eCourses though – I would like to eventually add gamificaton with the courses, quizzes etc. Either way I will check into EDD again as I had researched it in the past with only an eBook perspective.
- This reply was modified 9 years, 9 months ago by kosmicbird.
Forum: Themes and Templates
In reply to: [ProfitMag] Wrong Navigation Item Highlighted When Page ActiveI ended up having to write this script in functions.php as a workaround:
function custom_fix_blog_tab_on_cpt($classes,$item,$args) { if(!is_singular('post') && !is_category() && !is_tag()) { $blog_page_id = intval(get_option('page_for_posts')); if($item->object_id == $blog_page_id) { unset($classes[array_search('current_page_parent',$classes)]); } } } return $classes; } add_filter('nav_menu_css_class','custom_fix_blog_tab_on_cpt',10,3);This removes the current_page_parent class from archive pages so that when I have my forums (an archives-type page) active, the blog page isn’t highlighted in the navigation menu.
Forum: Themes and Templates
In reply to: [ProfitMag] Wrong Navigation Item Highlighted When Page ActiveIs there any fix for this?
Forum: Themes and Templates
In reply to: [ProfitMag] Wrong Navigation Item Highlighted When Page ActiveAfter further research,
It looks like the blog section of my site is getting highlighted when I visit any archive. This theme basically treats all archives, whether they are from custom post types or stock ones as children of the Blog. Thus this theme highlights the blog whenever I visit my forums (an archive)