Forum Replies Created

Viewing 7 Topics - 1 through 7 (of 7 total)
Author Posts
April 29, 2014 at 9:51 pm in reply to: Style the Category Listing 19648
Jeff Fisher Jeff Fisher

You can close this issue. I figured it out.

Thanks.
Jeff

April 29, 2014 at 7:50 pm in reply to: Form Submission 19639
Jeff Fisher Jeff Fisher

Issue resolved.

April 28, 2014 at 11:21 pm in reply to: Form Submission 19555
Jeff Fisher Jeff Fisher

A little more info…

I need to run an update_field() procedure to get another plugin (Advanced Custom Fields) to display correctly.

Thanks

April 5, 2014 at 6:40 am in reply to: Only .jpg images are showing on upload 18056
Jeff Fisher Jeff Fisher

Upload to wp, but do not show on site.

On Fri, Apr 4, 2014 at 8:32 PM, weDevs Team wrote: > Mahi wrote:

sounds interesting! When you upload .png/.gif files do they upload on your
site and show preview?

April 4, 2014 at 9:00 pm in reply to: Inserting ACF Images 18027
Jeff Fisher Jeff Fisher

When an image is saved to the database, how is it saved?

Is it an object, ID or URL? Depending on how it is saved, I have different ways to show the image.

Thanks

April 4, 2014 at 8:09 am in reply to: Inserting ACF Images 18008
Jeff Fisher Jeff Fisher

Like this? $images = get_post_meta( $post->ID, ‘acf_coupon_img’ );

On Thu, Apr 3, 2014 at 9:49 PM, weDevs Team wrote: > Mahi wrote:

If i am not wrong then, ACF add
> acf_
at front on each custom field’s meta_key by default? isn’t it?

April 4, 2014 at 7:42 am in reply to: Inserting ACF Images 18004
Jeff Fisher Jeff Fisher

Still not working…

ACF meta field is “coupon_img”

The following code:

ID, ‘coupon_img’ );
if ( $images ) {
foreach ( $images as $attachment_id ) {
$thumb = wp_get_attachment_image( $attachment_id, ‘thumbnail’ );
$full_size = wp_get_attachment_url( $attachment_id );
printf( ‘%s‘, $full_size, $thumb );
}
}
?>

Is not showing the image. Any other ideas?

Should the ACF image be added as an Image Object, Image URL, or Image ID

Thanks,

Jeff

On Thu, Apr 3, 2014 at 8:57 PM, weDevs Team wrote: > Mahi wrote:

So, you are using WPUF from frontend to insert/upload image or from
backend by
using ACF?

If by WPUF, then check Documentation here:
http://docs.wedevs.com/showing-meta-fields-in-frontend/ [0]

Viewing 7 Topics - 1 through 7 (of 7 total)