greekdish
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Max. Upload File SIze Ignored by WP Media LibraryI have the same problem, WordPress 3.6, Ubuntu Linux…I changed my server to 64MB and phpinfo also shows it working….but WP Media Manager still refuses to go over 8MB….once I added in
php_value upload_max_filesize 64M php_value post_max_size 64M php_value max_execution_time 300 php_value max_input_time 300
to the htaccess file and…..
define('WP_MEMORY_LIMIT', '64M');
to the wp-config file….its still only 14MB. This is ridiculous.
I did actually do that, and cleared the cache of W3C…either way, it seems to be working. Hope it stays that way. Thank you.
Forum: Networking WordPress
In reply to: MultiSite and Domain MappingI think it wasnt working because my htaccess file was messed up….but I kinda started over before I realized that. I made the main install the website.co.uk….and then added the website.co.uk/subsite, and mapped the domain to website.de.
Now im thinking…wouldnt it work if I added another site to the multisite install, and it was website.de/subsite….it would work already, maybe with just the plugin Simple 301 Redirect in the website.de install?
Forum: Plugins
In reply to: [Spam Free WordPress] A simple User can not comment on my PostsThis isnt resolved and now there are new issues popping up.
Now the HTML gets messed up. If you have “remove URL field” checked, it will break your HTML and ruin the layout. We had a big issue with our footer being rendered in the content area due to a missing close div tag or something. We disabled it to resolve it.
I have to admit the plugin itself works great to prevent spam, but the front end development aspect of it needs a lot of work.
Forum: Plugins
In reply to: [Spam Free WordPress] A simple User can not comment on my PostsHi Todd… with all due respect.. it wasnt her theme or my theme that messed it up. It was yours.
#sfw-respond form input[type="text"], #sfw-respond form textarea { -moz-box-sizing: border-box; font-size: 0.857143rem; line-height: 1.71429; padding: 0.714286rem; width: 100%; }
And here was my fix….
#sfw-respond form input[type="text"], #sfw-respond form textarea { -moz-box-sizing: inherit; font-size: 14px; line-height: 24px; padding: 5px; width: 75%; }
Forum: Plugins
In reply to: [Spam Free WordPress] A simple User can not comment on my PostsHi Todd,
We have this problem as well in Firefox. Seems you have some weird CSS that is messing things up.
#sfw-respond form input[type=”text”], #sfw-respond form textarea {
-moz-box-sizing: border-box;
font-size: 0.857143rem;
line-height: 1.71429;
padding: 0.714286rem;
width: 100%;
}The -mox-box-sizing is whats messing it up. It pretty much hides what the user is typing so they cant see it working. So I went into the settings and Disabled COmment Form Generation, and it totally screws up the theme where its either disable the plugin or keep this broken CSS.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Featured Images usejjspress….. make sure you enter the correct feed URL, for example, the first link’s feed is….
Forum: Plugins
In reply to: [WP RSS Multi Importer] Featured Images useThank you Allen for the wonderful work!
Forum: Plugins
In reply to: [WP RSS Multi Importer] Featured Images useSure. Sounds good
Forum: Plugins
In reply to: [WP RSS Multi Importer] Featured Images useIts not for people to subscribe to. Its actually to be an rss aggregate for the multisite blogs, and to then use the shortcode on the landing page to have 4 feeds combined as a portal page.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Featured Images useHi Allen,
I found a solution thats works great. I added this to my functions.php file…
//add post thumbnails to RSS images function cwc_rss_post_thumbnail($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = '<p>' . get_the_post_thumbnail($post->ID) . '</p>' . get_the_excerpt(); } return $content; } add_filter('the_excerpt_rss', 'cwc_rss_post_thumbnail'); add_filter('the_content_feed', 'cwc_rss_post_thumbnail');
This puts my post-thumbnail into the RSS feed, which crops images to a set height and width. I just had today a client add an image into a post with a size of 620 x 4477. Yes, 4,477 pixels high, an infographic. That was a disaster in the feed. This way, Im able to use WordPress’ built in cropping of featured images to throw into the feed.
Maybe there is some way you can add that to your plugin code as an option?
Thank you, your plugin works awesome now.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Featured Images useHi Allen, thanks for responding.
Yes, it was indeed text being before the image. Is there an easy way to change that functionality in the code, to use any image regardless if text before it?
Forum: Plugins
In reply to: [Author Avatars List/Block] [Plugin: Author Avatars List] Feature RequestAwesome. Thank you!
Forum: Plugins
In reply to: [User Avatar] User Avatar with User Role EditorThanks for the update! Nice work!
Forum: Plugins
In reply to: [User Avatar] User Avatar with User Role EditorI had to fix your code to get it to work. Should be this….
if(($profile->ID == $current_user->ID || current_user_can('edit_user', $current_user->ID) || is_super_admin($current_user->ID)))
Now works as it should. You had an exclamation point, which made all users who CAN edit users, NOT be able to upload avatars.