strangeshe
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple Gallery Widget] Missing argument 2 for wp_kses()Hi Helen, thank you for the prompt reply, and congratulations on your baby! Makes perfect sense that this would be a lesser priority. I’ll be sure to check back later. Best to you!
Forum: Plugins
In reply to: [Really Simple Gallery Widget] Missing argument 2 for wp_kses()nothing?
Forum: Plugins
In reply to: [Redirection] Missing argument errorThe fix is in this thread:
https://www.ads-software.com/support/topic/missing-argument-2-for-wpdbprepare-17?replies=22Forum: Plugins
In reply to: [Redirection] Missing argument errorI am having the same error. The fixes I’ve seen require more coding than I’m comfortable doing myself, and all advise contacting the plugin author:
And please notify the theme author or vendor that their theme has an issues with WordPress 3.5.
Show them this link: https://make.www.ads-software.com/core/2012/12/12/php-warning-missing-argument-2-for-wpdb-prepare/Forum: Plugins
In reply to: Import Facebook/Twitter statuses as blog posts?I’m also looking for this. Anyone know of anything useful? Thanks
Agree. More information would be nice.
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] pinterestGet a clue, Sociable. I need Classic not Skyscraper, need Pinterest, and rather than hacking your plugin, being out of time and patience, have gone over to Shareaholic. /May/ check back on this later, but probably not. How hard would it be to add it to Classic considering you already have added it to Skyscraper?? Fnyeh to that.
(Yeah, I know it’s a “free” plugin and all that; still, it’s your brand. You’d think you’d be paying attention.)
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] pinterestYep, I’m wondering too. Still no Pinterest for Classic. Need this. About to switch plugins…
Hi Ruthie,
This plugin doesn’t appear to have its own stylesheet, but using Firebug I found a class of .ngg-sidebar-widget and was able to add a border to my image. I’m using a child theme based on twenty-eleven, and this is the code that worked for me, just added it to my child’s stylesheet:
.ngg-sidebar-widget a img { border: 1px solid #ddd; padding: 6px; }
Hope that helps!
I should add that this is a backup I’ve manually kicked off since I just installed the plugin for the first time, and the first scheduled backup has not run yet. Not sure if that would make any difference…
Yes. There’s a 5.34MB backup file that was created at 4:20pm today. I’m on bluehost if that’s helpful.
Hi Michael,
I am experiencing the same issues: the backup never completes — seems to never get past the SQL backup stage. I just get the following (below). Any ideas when the problem might be resolved? I would really love to use your plugin!
Thank you!
Backup warning on 2012-02-01 at 04:21:31: Backup stopped by user.
Backup started on 2012-02-01 at 04:20:19
Backup warning on 2012-02-01 at 04:20:13: The backup process appears to have gone away. Resuming backup.
Backup started on 2012-02-01 at 04:14:54
Backup warning on 2012-02-01 at 04:13:17: The backup process appears to have gone away. Resuming backup.
Backup started on 2012-02-01 at 04:07:59
Backup warning on 2012-02-01 at 04:07:57: The backup process appears to have gone away. Resuming backup.
Backup started on 2012-02-01 at 04:01:58Yes, you’re not alone with this problem. See this thread for some discussion and partial solution (so far):
Have you found a solution yet?
Forum: Themes and Templates
In reply to: [Twenty Eleven] Featured post image not showing in IE8(Naturally, immediately after posting the version for Simple Image Sizes, I discover an update today. Heh. Now it’s version 2.2. But you know to use the most current one ??
Forum: Themes and Templates
In reply to: [Twenty Eleven] Featured post image not showing in IE8Thank you. I’ve fiddled with it quite a bit, and only recently have it working pretty well. There are 3 parts:
1. Twenty eleven already has theme support for post thumbnails, so I didn’t need to enable that. But I did register an image size in functions.php (child theme):
add_action( 'after_setup_theme', 'my_child_theme_setup' ); function my_child_theme_setup() { // Sets the dimensions and hard crops thumbnails displayed in excerpts add_image_size('excerpt-thumb', 140, 140, true); }
(in part from this article at wpbeginner)
2. In content.php (a child theme copy), between the header and footer section, I modified the loop to show the excerpt and the excerpt-thumb on all pages except single posts:
<?php if ( ! is_single() ) : // Display excerpts for all pages except single posts ?> <div class="entry-summary"> <div class="excerpt-thumb"> <?php the_post_thumbnail( 'excerpt-thumb', 'class=alignleft'); ?></div> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?>
(Most of that came from various Twenty Eleven topics here in the forum, but I’ve lost track of which ones specifically)
3. And the final step was to use the Simple Image Sizes plugin (ver 2.1) as mentioned in that wpbeginner article. I found that plugin worked better for me than the Regenerate Thumbnails plugin. After installing and activating the plugin, adjust settings in the Settings > Media section of the dashboard. The plugin finds all the image sizes that are registered for the theme. In mine, I have these along with these settings:
Thumbnail size: 140 x 140 check Crop Medium size: 300 x 300 Large size: 1024 x 1024 Size excerpt-thumb: 140 x 140 check Crop check Show in Post Insertion Size post-thumbnail: 1000 x 288 check Crop check Show in Post Insertion Size large-feature: 1000 x 288 check Crop check Show in Post Insertion Size small-feature: 500 x 300 check Crop check Show in Post Insertion
Most of those already exist with Twenty Eleven; the new one I registered in functions.php (excerpt-thumb) was added to the list. After adjusting the settings, I clicked “update” on each, then ran Ran “regenerate” on thumbnail, medium, large, excerpt-thumb, and small-feature for posts and pages. This updated all the images I already had loaded in my theme. Any new post images will be handled according to the settings.
I hope this helps!