kosmicbird
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disabling profanity filter in wordpress commentsAh wait, I just realized the culprit might be that akismet plugin that came along when I installed WP. Not for sure though. Going to keep digging..
*edit: ok I don’t think it’s akismet, because I have it disabled and comments with profanity are still being routed to the trash.
- This reply was modified 9 years, 5 months ago by kosmicbird.
Forum: Fixing WordPress
In reply to: Disabling profanity filter in wordpress commentsI am sure I’m not using any kind of content filtering plugin, and 99% certain that I am using standard wordpress comments (I have jetpack plugin but I have their comments feature disabled) and have downloaded no other comment plugins.
If I can recall correctly, I think one of the WP core files contained some code that automatically blacklists certain words in the wordpress comments. Looks like I might have to go file diving again âšī¸
Just wanted to chime in while I’m here – @vinayaks5192 if you do not want to give author capabilities to your users but want them to still be able to edit/delete/manage their own posts, you can search and install WP User Frontend plugin. It will take a little bit of setup to modify the appearance as you want it, but it works perfectly with User Submitted Posts plugin. I am using it in my site and it gets the job done.
- This reply was modified 9 years, 5 months ago by kosmicbird.
- This reply was modified 9 years, 5 months ago by kosmicbird.
Thanks for your reply. After much troubleshooting, I eventually discovered that the problem was a caching issue related to the latest WP update. There was an issue with the endurance-cache file of the new WP constantly reverting back to older saved states within that file. Problem was solved by disabling this process.
- This reply was modified 9 years, 5 months ago by kosmicbird.
I have added my thoughts to the Git. **Really hoping you can give us back the old css editor**
Forum: Plugins
In reply to: [Front End PM] Are you accepting contributions to the plugin?Great! Thanks for sending the link. I will wait until you release the new system and see what’s changed. Give me some time on it (I am spending a lot of time building my site still), but after you’ve released the update and I can get a chance to go through and organize the new additions I made, I will get on github and send them over to you. My way of saying thanks for building a fab plugin for us all to use. Thanks!
Forum: Fixing WordPress
In reply to: Using the get_userdata functionHey @shobhit
I ended up figuring it out (granted after 2 days đ of frustration)
Turns out I was looking at this issue the completely wrong way, but I have now solved it.
Really, really appreciate your kind offer to help me.
Thank you so much!Forum: Plugins
In reply to: [Front End PM] Getting & displaying message recipient username?Hey @hpatel81
I just finished doing some troubleshooting with mine, it looks like another plugin was causing my issues. I deactivated all other plugins except FEPM and the message recipient is now showing for me. Maybe you can try and see if that helps you too
Forum: Plugins
In reply to: [Front End PM] Getting & displaying message recipient username?I am having the same issue here too
Forum: Plugins
In reply to: [Front End PM] Getting & displaying message recipient username?Hello Shamim
I am using individual message
It show message author
But when I send message to someone
And I view my sent messages
It is only showing my photo, my message subject, my message content
I can’t see who I sent message to
So if I sent message to 10 people
Maybe I forget which message I sent to whom
Any hook or function to get the message recipient ID so I may enable it to display in the individual message sent list?Forum: Fixing WordPress
In reply to: Using the get_userdata function@shobhit2412 comes to the rescue again đ
I guess my issue now is that I can’t figure out what variable/ID I need to use in order to get the message recipient, who will always be a different person so I can’t just use a certain number as the ID. Will have to keep digging…
Thanks again for your reply!
Forum: Fixing WordPress
In reply to: Dynamic permalink?Solved. I needed to use the correct php function.
In my case, since I am using Ultimate Member to generate my members’ profiles, I needed to use something like
$user_profile_link = um_user_profile_url(); $header .= '<div><strong><a href="' . $user_profile_link . '">'etc.
Forum: Fixing WordPress
In reply to: valign image to bottom inside a column2) Note that this solution does offset your text [col-sm-8] so you will also need to modify that element’s properties to adjust the look. You can start by increasing the width of col-sm-8 as well, and go from there.
- This reply was modified 9 years, 8 months ago by kosmicbird.
- This reply was modified 9 years, 8 months ago by kosmicbird.
- This reply was modified 9 years, 8 months ago by kosmicbird.
Forum: Fixing WordPress
In reply to: valign image to bottom inside a columnIt seems you keep changing the code every few minutes đ but from what I tried, this is what works –
1) You need to increase the width of the div that holds the closing quotation marks.
You have it in this div and should add something like this:.col-sm-2 { width: 100%; }Now that you’ve maximized the width of the div, by maintaining
.quote-pic-right-sm { float: right; }You should have the quotation marks in the general area you were wanting. Now, just need to make minor tweaks to get the exact position you want. Hope that helps.
- This reply was modified 9 years, 8 months ago by kosmicbird.
Forum: Fixing WordPress
In reply to: valign image to bottom inside a columnI don’t understand what you mean by “closing quote I want at the bottom”, could you explain more?
Are you trying to get the middle column of quotes to line up (from the bottom) with the other two quote columns?