kosmicbird
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ProfitMag] Wrong Navigation Item Highlighted When Page ActiveHello @rigorousthemes
No, I have not posted the same post. Even when I have the forums completely empty it does this. It only started happening once I made my homepage static (originally the home page was the blog page) and added the blog as a menu item.
Hi Bob,
Thanks for your reply. I disabled W3 Total Cache, cleared all my caches and it is still not working. The URL permalink even links to my new username, but when I hover over my profile image or username link it shows those 2 items linking to the old permalink.
Forum: Themes and Templates
In reply to: [ProfitMag] Wrong Navigation Item Highlighted When Page ActiveI also want to add that when I am visiting deeper links within the “forums” pages, sometimes the “forums” menu item doesn’t even highlight and it only highlights “Blog” even if I am viewing forum pages…
I was struggling with this issue but just found a solution. The issue is a matter of your logging method (found in WP ULike Settings in WP dashboard).
If you select “logged by IP” or “logged by cookie & IP” as your logging method setting, then no matter what other accounts or browsers you use, you will only be able to like/unlike once because you only have one IP address (unless of course you use an IP scrambler or IP encryption/relay software).
I solved my problem simply by using the “logged by cookie” setting instead of the settings that log IP. Now I can like as many times as I want using different browsers. Hope that helps.
- This reply was modified 9 years, 9 months ago by kosmicbird.
Thanks for the heads up.. I’ve been making CSS changes to the plugin using the wordpress stylesheet editor instead of the core plugin files. As for php modifcations, I’ve been creating a new folder in my childtheme directory for Ultimate Member changes (following similar instructions as you’ve provided for modifying custom emails)
I still cannot find what code is needed to modify the default empty profile text to something else: “Your profile is looking a little empty. Why not add some information”
I was able to figure it out eventually. Thanks for your reply anyways.
Ok, answered all of my own questions on this one. 😃 Posting an update now for anyone who has the same issues in the future.
It appears that I am not able to alter the permalink from “logout-2” back to simply “logout” due to how the plugin is set up. However, here is the work-around that I used:
Go to your user roles in UM dashboard, then click to edit the settings of your members. Scroll down to the logout options and set up a redirect to whatever page you want your users to be redirected to upon logging out (I am just using my homepage). That’s it! Logout page is working and even if you have an ugly logout-2 permalink, it won’t matter because no one will see it in the search bar since you’re redirecting to another page.
Woo! I finally figured it out.
Okay, this plugin uses so many !important tags that it makes it a lot more difficult to alter CSS styles for certain items. In order to modify the “forgot password link” you will need to target a higher specificity so that your custom css will override the plugin’s override (if that makes sense).
To modify the “forgot password link” I had to use this code:
.post-1710 .um-col-alt-b a.um-link-alt {
color: #000000 !important;
}and to modify the link’s hover color:
.post-1710 .um-col-alt-b a.um-link-alt:hover {
color: #bd1919 !important;
}.post-1710 is the ID # for my login page. You will need to substitute whatever your login page ID # is in order for it to work.
And of course, switch out the hex color codes I used with the colors you wish your link to be. Hope that helps 🙂
Forum: Themes and Templates
In reply to: [ProfitMag] Align single navigation menu item to the rightThat worked!!!! I would have never figured out on my own that I needed to modify the width to get it to work. Love your ProfitMag theme and really appreciate the quick, helpful support. Thank you!!!!
I’m having the same issue. There seems to be something overriding any css modifications to the “forgot password” and “keep me signed in” links. Can someone please help?
Forum: Themes and Templates
In reply to: [ProfitMag] Align single navigation menu item to the rightThanks for your reply @rigorousthemes!
I have sent you an email with the URL of my site.
Oh! Nevermind, I figured it out I think. I changed the URL slug from /logout to /logout-2 and that seems to have done the trick.
I must have had a /logout page published before I installed the plugin, and so the software created a /logout-2 (both of which were deleted by me) . Changing the URL to the original logout page created by UM (logout-2) has solved the issue.
Now the question is – am I able to change the permalink (or at least make it appear in the searchbar) back to /logout (without the -2)? If so, how can I do this?
Forum: Themes and Templates
In reply to: [ProfitMag] Align single navigation menu item to the rightI’ve tried the seemingly obvious
.menu-item-1720 {
float: right;
}but that doesn’t work. I managed to adjust the position of this individual menu item by adjusting the margin-left property with something lie
.menu-item01720 {
margin-left: 645px;
}but then it is not responsive when I reduce the screen size. I imagine that it needs to be floated to the right somehow but I think I’m missing something here.