Daiv Mowbray
Forum Replies Created
-
Forum: Plugins
In reply to: [SuperSlider-Media-Pop] [Plugin: SuperSlider-Media-Pop] No image mass editorYep,
if you go to post edit / media upload pop over / gallery ,
you will have the mass edit option.
It is available for all of the images attached to this post.
It is not available for the entire image library.HTH
I’ve been having this same problem.
It seams rather daft to have a system of this type which is set up not to work. I have the same settings as you, after searching for a solution and yet it still doesn’t work. Nor do any of the suggested config checks make any difference.
This plugin is a waste of time.Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache not working properly@jasjotbains
to know what to look for you need to check the applied css with firebug.
Firebug is a developer extension for firefox.
get that, learn how to use it then you will see the applied styles to any object,
HTHForum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache not working properly@jasjotbains
This sounds like a css conflict issue.
If the text is there that you can select it,
but you can not see it, check the css properties with firebug.Hello,
It would be nice if you could add an option to pull css from theme folder or not at all. This doesn’t make sense to have the plugin enque the plugin css then have the theme deactivate it.
hopefully you could add this function/ option to your next release.
Thanx.@agelonwl
Thanx for having a look.
My theme is fine, validates html5 and does a proper get_header.
I do have Better WordPress Minify plugin. which is presently turned off.
I still have the same result:
“You must log in to view and manage your events.”I will leave anonymous event submission disconnected when this project goes live.
It’s not a game breaker for me.plugin Version 5.1.6
WP version 3.3.1
this project is still in development but access to the submit event page is active for now:
submit-event
I have added a default user for the event to be assigned to, and it is configured as such.
Not that you’ll gain much info from there.Maybe I’ll just force user registration for the submit events function.
I am having a similar issue.
The submit form simply displays:
“You must log in to view and manage your events.”
I have the option: Allow anonymous event submissions? set to yes.Hello spherical,
Yes I agree, but unfortunately the whole featured image set up is partially hard coded into the WP core and it was designed to be activated and controlled by the users theme.
The only way I could find to fix the image size issue in the featured image meta box was to remove the featured image size options on the media page. Short of replacing the featured image code within wp core.So since featured image is turned on in your theme, it should also be controlled in your theme. You need to add something like this to your theme functions file:
// The height and width of your custom header. // Add a filter to twentyeleven_header_image_width and twentyeleven_header_image_height to change these values. define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyeleven_header_image_width', 1000 ) ); define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyeleven_header_image_height', 288 ) ); // We'll be using post thumbnails for custom header images on posts and pages. // We want them to be the size of the header image that we just defined // Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php. set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); // Add Twenty Eleven's custom image sizes add_image_size( 'large-feature', HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); // Used for large feature (header) images add_image_size( 'small-feature', 500, 300 ); // Used for featured posts if a large-feature doesn't existI will look at options to return this feature to the plugin.
Hello people, I have just updated this plugin to version 1.8
which does resolve the featured image issues mentioned above.
It also now has a better solution for the attachments listing on the post / page listing screen, the attachments is a fold down which helps a lot when you have numerous attachments on a post or page.I have tested this extensively on new and old installs with no issues to my knowledge.
please correct me if I missed something.
Thanks,
DaivHello brasofilo,
Thanx for the feadback.
I am trying to reproduce your issue.Solved in edit.php would refer to the thumbnail column on the post listing screen. The thumb size is responding as expected.
Issue remains in edit.php would refer to the edit the individual post screen, specifically the featured image display size in the featured image meta box.
If this is correct, I am unable to reproduce the error.
also, the plugin superslider-media-pop doesn’t have anything to do with the featured image. Except on the post listing screen, where it displays the featured image if the post has one, and says so as a caption to the image, other wise the caption says if the image is an attached image. If the post has no image, the caption is Add image, which ultimately I would like to have launch a pop over access to the media library.So, I either don’t understand the present issue, or the issue has nothing to do with ss-media-pop.
Thanx again for your assistance.
Forum: Plugins
In reply to: [SuperSlider-Login] [Plugin: SuperSlider-Login] SuperSlider Login ProblemThis would probably be a javascript conflict.
Forum: Plugins
In reply to: [SuperSlider-Login] [Plugin: SuperSlider-Login] no good deedHello,
The domain for superslider has moved, demo here.
And the plugin has been updated:I think I can help with this:
file: class-s2-core.php
line: 1520 and 562, and 581
$excerpt = $post->post_excerpt;
the function then checks if excerpt is empty, and if it is it looks for a more tag in the content, then it removes any shortcodes then it cuts the excerpt to excerpt_length , then it spits out the excerpt.if you want to show all the content of the post, I would edit this,
and change it to:
$excerpt = $post->post_content;You will need to test and such,
Although it doesn’t make much sense, the mail is meant to be a teaser which if the reader wants to read all of the post they click the link.
A better solution is to submit a feature request to the developer and make a donation for his efforts.
BOL
best of LuckThe new updated version 2.0 of superslider-previousnext-thumbs fixes this bug.
And a note to phattrance, adding the function to your theme file would need to be inside of php opening and closing tags.