eastbank
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Magic Fields] Image Upload conflict with WP 3.5 upgradeHey, they posted a fix here:
https://github.com/magic-fields-team/Magic-Fields-2/commit/0b0add9189a63f81a32ba5bfea3de7f4f75103db#L0L263Forum: Plugins
In reply to: [Plugin: Magic Fields] Image Upload conflict with WP 3.5 upgradeSame problem here, really hoping there will be a fix. I love Magic fields.
UPDATE – I hit them up on twitter, and one of the guys said they hope to have a new release sometime this week.
Forum: Plugins
In reply to: [Magic Fields] WordPress image uploader doesn't workYes…same problem here. Hoping someone has a fix ??
I’m using Magic Fields 2Edit – This is only happening when using the new WP media upload. Using a custom image upload field still works fine.
I have the same problem. Hopefully someone has a fix.
Forum: Plugins
In reply to: [WordSocial] Twitter AuthorizationHello, I’m having the same problem. I don’t use a GA plugin. When i try to link up to Twitter, everything looks like its working, then it sends me back to the Wordsocial plugin screen but the twitter still says it needs to be activated.
Forum: Plugins
In reply to: [Magic Fields 2] [Plugin: Magic Fields 2] Group funciton simply doesn't work…Just an FYI on the wiki – use google translator, it does a good job of translating the portions that are in spanish. Just paste the URL into the translator and it will do the whole page.
Forum: Plugins
In reply to: [Magic Fields 2] [Plugin: Magic Fields 2] Zoom Crop?I think I solved it.
If I only enter a height value, then it seems to do what I am asking.You are my hero.
Thank you so much for the quick reply!
So here’s an update:
I decided to try the code I have used to grab data from multiple field sets from the Custom Field Template plugin. This was successful, however, it only outputs the first and last groups….any ideas??<?php // retrieve entries with photo_gallery_image prefix $sql = " SELECT * FROM $wpdb->postmeta WHERE post_id = $post->ID AND meta_key LIKE '%photo_gallery_image%' ORDER BY meta_id ASC"; $data_objects = $wpdb->get_results($sql); $project = array(); $i = 0; foreach($data_objects as $data) { // the name of the fieldset: if($data->meta_key == 'photo_gallery_image') { $limit = $data->meta_value; } $i = ( $i <= $limit ) ? $i : 1; if( $data->meta_value != $limit ) { $project[$i]["$data->meta_key"] = $data->meta_value; } $i++; } //check data //print_r($project); foreach( $project as $key){ ?> <?php $attachment_id = $key['photo_gallery_image_gallery_image']; // attachment ID $image_attributes = wp_get_attachment_image_src( $attachment_id,'large','' ); // returns an array ?> <li> <a class="group1" href="<?php echo $image_attributes[0]; ?>"><img src="<?php echo wp_get_attachment_thumb_url($key['photo_gallery_image_gallery_image']); ?>"/></a> </li> <?php // etc.... } ?>
I see that I can easily do what I’m asking if I just use a single field group, then give the image field within that group the ability to be duplicated. However, the re-ordering functionality is really needed and that’s not an option when doing it that way.
I’m using this method of outputting the duplicated field groups:
<?php $members = get_order_group('members_name'); foreach($members as $member){ echo get_image('members_photo',$member); } ?>
Which works great for outputting the thumbnail image…but I cannot figure out how to get it to output a URL to a custom sized image.
Ah, i see.
This site, w3schools is great Free learning site. You can learn pretty much anything about web development there. Here’s a link to the CSS section:Suzanne, you can make the form look however you want with css.
You can add your own custom classes to each of your fields, here’s an example of a form I’ve made with Ninja Forms Lite and made it look much different than it would ‘out of the box’Thanks, i use Firebug…just never used that feature.
Hey just to shed some light on the problem I was having:
It didn’t like where I put my call to jquery. I put the link to the jquery script above where the ninja form scripts were called and it’s working great now. Thanks again for your help.Thanks Kevin, it was some other script I have running. I removed them and it worked just fine. Thanks for the quick reply!