Tammy Hart
Forum Replies Created
-
Forum: Plugins
In reply to: [Basic Instagram Widget] No longer functioningI’m aware of the problems and promise to get a fix in place, but I don’t have the bandwidth right now. Please bear with me as I try to work it out.
Forum: Plugins
In reply to: [Basic Instagram Widget] Change size of imagesThe size is determined by how many columns you use and how wide your container is. For instance, a 3×3 column in a narrow sidebar will create small images but the same grid on a page will produce much larger images. So if you want them very large and maybe only 1 column, just speicify that in the shortcode options.
Forum: Reviews
In reply to: [Basic Instagram Widget] Basic & Perfect!So glad it’s working good for you! ??
Forum: Plugins
In reply to: [Plugin: ReciPress] Main Image Size & Border Change?There are two ways to adjust this:
- Change your thumbnail image size in Settings > Media
- Modify the plugin to use a different image size
The image size is “thumbnail”. You can change this to “medium”, “large”, or a custom image size. It is set in recipress > php > function.php on line 153. The code looks like this:
case 'photo': if(current_theme_supports('post-thumbnails') && recipress_options('use_photo') != 'no') $photo = get_the_post_thumbnail($post->ID, 'thumbnail', $attr); else { $photo_id = $meta['photo'][0]; $photo = wp_get_attachment_image($photo_id, 'thumbnail', false, $attr); } return $photo; break;
Simply change “thumbnail” to the other size name.
Forum: Plugins
In reply to: [ReciPress] Just upgraded to 1.9.6Yes, I will roll back the stable version. I hate that all these errors are coming up. In all my own testing, I had no issues.
Thanks for reporting these to me.
Forum: Plugins
In reply to: [ReciPress] Careful Updating to 1.9.5Make sure your settings are set to autoadd the recipe
Forum: Plugins
In reply to: [ReciPress] Careful Updating to 1.9.5Okay, I’m fairly certain I found a fix that won’t result in any lost data as long as oyu have saved posts with the ingredients not selected. I’m tagging version 1.9.6 right now, so keep an eye out for it.
Thanks a ton for reporting this. Your screenshots led me straight to the problem!
Forum: Plugins
In reply to: [ReciPress] Careful Updating to 1.9.5Ohh.. I know what is going on here. Huge apologies. I will work on a fix right away!
This will be fixed in version 0.3 which I’m pushing today.
Which fields are highlighted? Do you get any javascript console errors? It’s difficult to debug this since I have to be logged in as a user in order to see your form.
Forum: Plugins
In reply to: [Invite Friends to Register] localization possible?It’s not included in the plugin, but if you add the directory with your language files in it, you should be good to go.
Forum: Plugins
In reply to: [Invite Friends to Register] localization possible?The entire plugin is localized so you’ll just need to put your language file in a “lang” directory.
I’m also having a terrible time with this, because I have my own version of jQuery UI css for a metabox I’m creating. Even hiding the WP SEO metabox from my post type doesn’t dequeue the style.
Ivan,
Try upgrading to version 0.2. It has an improved method of sending the ajax. Let me know if it works. If it doesn’t, try deactivating other plugins and then testing. Everything works here for me, both a successful send, and the built in error behavior.
Ivan,
The form doesn’t attempt to do anything? It doesn’t give you any errors? It sounds like a javascript issue. Can you look at console and tell me if you get any javascript errors. Unfortunately, I can’t test the form because the plugin requires me to be logged in to send invitations.