Navneil Naicker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank Admin Page (White Screen)The error says that the following files are missing, please check to verify:
- wp-includes/Text/Diff.php
- wp-includes/wp-diff.php
- wp-includes/feed-rdf.php
- wp-includes/feed-atom.php
- wp-includes/rss-functions.php
- wp-includes/registration-functions.php
- wp-includes/registration-functions.php
If it exists then reupload the files mentioned above, it can be corrupted.
- This reply was modified 7 years, 11 months ago by Navneil Naicker.
Hi @rob70
Maybe if you can try setting “Enable 32bit Applications” option in the “Advanced Settings” of the application pool to “true“.Please advise
ThanksForum: Plugins
In reply to: [ACF Photo Gallery Field] How to display exactly?Hi @phoenixobia
There is something else that you can try. Locate this function in your codeacf_photo_gallery('gallery_images', $post->ID);
. Hard Code the$post->ID
something likeacf_photo_gallery('gallery_images', 11);//11 is my $post->ID
.Which theme and plugins are you using, maybe if I can replicate this issue on my test site.
- This reply was modified 7 years, 12 months ago by Navneil Naicker.
Forum: Plugins
In reply to: [ACF Photo Gallery Field] How to display exactly?Hi @phoenixobia
You can dovar_dump( $images );
to see if anything is being received by the function. Also make sure the images are uploaded. Check your error logs to see if any conflict errors.Let me know
- This reply was modified 7 years, 12 months ago by Navneil Naicker.
Forum: Plugins
In reply to: [ACF Photo Gallery Field] How to display exactly?WordPress has messed up the usage area where the code is but let paste it over here.
<?php //Get the images ids from the post_metadata $images = acf_photo_gallery('gallery_images', $post->ID); //Check if return array has anything in it if( count($images) ): //Cool, we got some data so now let's loop over it foreach($images as $image): $title = $image['title']; //The title $caption= $image['caption']; //The caption $full_image_url= $image['full_image_url']; //Full size image url $full_image_url = acf_photo_gallery_resize_image($full_image_url, 262, 160); //Resized size to 262px width by 160px height image url $thumbnail_image_url= $image['thumbnail_image_url']; //Get the thumbnail size image url 150px by 150px $url= $image['url']; //Goto any link when clicked $target= $image['target']; //Open normal or new tab $alt = get_field('photo_gallery_alt', $id); //Get the alt which is a extra field (See below how to add extra fields) $class = get_field('photo_gallery_class', $id); //Get the class which is a extra field (See below how to add extra fields) ?> <div class="col-xs-6 col-md-3"> <div class="thumbnail"> <?php if( !empty($url) ){ ?><a href="<?php echo $url; ?>" <?php echo ($target == 'true' )? 'target="_blank"': ''; ?>><?php } ?> <img src="<?php echo $full_image_url; ?>" alt="<?php echo $title; ?>" title="<?php echo $title; ?>"> <?php if( !empty($url) ){ ?></a><?php } ?> </div> </div> <?php endforeach; endif; ?>
Forum: Reviews
In reply to: [ACF Photo Gallery Field] Headache..Hi @c0sm1n87
I have tested again on WordPress 4.7.3 and it works just fine. There must be a conflict between this plugin and other plugins on your site. Since you have not listed the plugins you are using it makes it difficult for me to test.If you still require help, please ask for help in the support forum.
Cheers
Forum: Plugins
In reply to: [ACF Photo Gallery Field] Work with term ?Hi @maax01
Currently we only support Post and Pages. I will implement it for taxonomy as well but in the future.Cheers!
Forum: Plugins
In reply to: [ACF Photo Gallery Field] adding srcset@ugy
Thank you very much for your contribution. I will surely include your code in the next release.Cheers!
Forum: Plugins
In reply to: [ACF Photo Gallery Field] How to make it work after installHi @gturban
Were you able to solve this issue? If not can you try disabling other plugins and try it out.Forum: Plugins
In reply to: [ACF Photo Gallery Field] Use specific image size/crop@wardari
Try something like this.
$large_image = wp_get_attachment_image_src( $image['id'], 'large')[0];
$image['id']
will give your the attachment id of the image from media library.Forum: Plugins
In reply to: [ACF Photo Gallery Field] Cannot install plugin@anevins okay thanks
Forum: Plugins
In reply to: [WordPress Bootscraper] Bug after 4.7.3 UpdateThis has been fixed in version 2.1.0. Please update thanks.
Forum: Plugins
In reply to: [ACF Photo Gallery Field] Error after InstallHi Julie
My apologies for late reply, just came back from day job.You are getting this error because this plugin is a FREE alternative of https://www.advancedcustomfields.com/add-ons/gallery-field/. You are using ACF version 5 and currently we only support ACF version 4. We will be upgrading to Version 5 in coming month.
Forum: Plugins
In reply to: [WordPress Bootscraper] Bug after 4.7.3 UpdateHi @shax13
I’ ll fix this up and will advise when ready.Forum: Reviews
In reply to: [WordPress Bootscraper] Higher performanceThank you @shax13