wickedmint
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Gallery - Responsive Photo Gallery] Adjust Caption SpacingPerfect, that worked. Thanks!!
Forum: Plugins
In reply to: [Image Gallery - Responsive Photo Gallery] Adjust Caption SpacingForum: Plugins
In reply to: [Image Gallery - Responsive Photo Gallery] Change size of Lightbox imagesI don’t have the option in General Options to select popup size fix. I see that option in Lightbox Options, but modifying those fields does not affect images displayed with Gallery/Content Pop-up
See screenshot of my General Option http://culturecooppanel.com/wp-content/uploads/2015/02/Screen-Shot.png
Forum: Plugins
In reply to: [Image Gallery - Responsive Photo Gallery] Change size of Lightbox imagesI don’t have the option in General Options to select popup size fix. I see that option in Lightbox Options, but modifying those fields does not affect images displayed with Gallery/Content Pop-up
See screenshot of my General Option http://culturecooppanel.com/wp-content/uploads/2015/02/Screen-Shot.png
Forum: Plugins
In reply to: [Frontier Post] Error Uploading ImageThank for all the info! I found code similar to the last you posted. This hides all media content not owned by the user so it solved my problem.
Your plugin is really awesome, thanks for sharing it! And thanks for the fast replies.
add_filter( 'posts_where', 'hide_attachments_wpquery_where' ); function hide_attachments_wpquery_where( $where ){ global $current_user; if( !current_user_can( 'manage_options' ) ) { if( is_user_logged_in() ){ if( isset( $_POST['action'] ) ){ // library query if( $_POST['action'] == 'query-attachments' ){ $where .= ' AND post_author='.$current_user->data->ID; } } } } return $where; }Forum: Plugins
In reply to: [Frontier Post] Error Uploading ImageSorry for my constant updating! So, I found a piece of code that is supposed to hide the Media Library tab if you put it in the theme’s function.php file or within the plugin. It didn’t work when I put it in the function.php file, but I’m hoping maybe you could figure out where I could use this within the Frontier Post
Hiding the tab would solve all the problems and might be the simplest solution if it works.
They say you need to know the exact name of the tab and I’m guessing maybe Frontier Post uses a particular name? Thanks again!
Here is a link to the site where I got that code. http://www.superann.com/2010/10/08/how-to-remove-the-media-library-tab-in-the-wordpress-media-uploader/
Forum: Plugins
In reply to: [Frontier Post] Error Uploading ImageI looked through the forum and noticed someone else had this problem and it had something to do with FP interacting with other plugins.
The culprit was the plugin A5 Custom Login because within this plugin I was able to “Hide backend” for the role Author. This is necessary since I didn’t want the Authors to see the backend – including the full media library.
Do you have any recommendations for other pluging that will let me hide the backend, but allow Authors to upload and insert media into posts using Frontier Post?
Thanks!
Forum: Plugins
In reply to: [Frontier Post] Error Uploading ImageUpdate: Editor role also works. So it’s just Author and Frontend Author.
Forum: Plugins
In reply to: [Image Gallery - Responsive Photo Gallery] Thumbnail size distortedI ended up purchasing the premium version and this is still an issue, but I have adjusted my photos to fit.
I’m pretty sure you have to deactivate and delete the free version. That’s what I did and it worked.
Forum: Plugins
In reply to: [Frontier Post] Adding text/images above shortcodeHi – could you send me a link to where I can download the beta? I can’t find it. Thanks!
Forum: Plugins
In reply to: [Frontier Post] Adding text/images above shortcodeThanks, I’ll try the beta version.