Dvd709
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Maps CP] Map showing as Grey on phoneHey Cp,
Thanks a lot! That really helped and I hadn’t noticed it, my bad!
Forum: Plugins
In reply to: [Google Maps CP] Map showing as Grey on phoneHello,
I was editing the CSS hence why it was hidden but it’s visible now again and i’ve not edited the CSS of the Map itself it was my wrapper that had a display none, although it’s still a gray square . Do you have any way to solve this? Or a workaround to fix this issue?
Forum: Plugins
In reply to: [Google Maps CP] Map showing as Grey on phoneSure thing, this is the exact URL. When it’s big it works perfectly fine but as you resize it smaller it’ll start faultering.
Forum: Plugins
In reply to: [Google Maps CP] Notice: Undefined variable: point_excerpt in…Hello,
I’ve only replaced the functions.php file, it said it was 1.01 already but it seems to have solved the problem, thanks.
Forum: Plugins
In reply to: [Google Maps CP] Notice: Undefined variable: point_excerpt in…I am on the latest version 1.01.
I’m still getting this, any idea/workaround for this issue?
Forum: Plugins
In reply to: [Simple Lightbox] Lightbox and NextGen GalleryActually that made me realize something, i’m indeed overthinking it haha.
I just solved it by adding the link around it again and then put that in the same variable as img was which was $test, if anyone is wondering I did this in my custom-gallery.php
(Be sure to concatenate the two same named variables which in my case is $test= and $test .= notice the dot) :<!-- Thumbnails --> <?php $i = 0; ?> <?php foreach ( $images as $image ) : ?> <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box" <?php echo $image->style ?> > <div class="ngg-gallery-thumbnail" > <?php $test = "<a href='" . nextgen_esc_url($image->imageURL) . "'" . " title='" . esc_attr($image->description) . "'" . " data-src='" . nextgen_esc_url($image->imageURL) . "'" . " data-thumbnail='" . nextgen_esc_url($image->thumbnailURL) . "'" . " data-image-id='" . esc_attr($image->pid) . "'" . " data-title='" . esc_attr($image->alttext) . "'" . " data-description='" . esc_attr($image->description) . "'" . $image->thumbcode . ">"; //echo $test; ?> <?php if ( !$image->hidden ) { $test .= "<img title=" . esc_attr($image->alttext) . " alt=" . esc_attr($image->alttext) . " src=" . nextgen_esc_url($image->thumbnailURL) . " " . $image->size . "/></a>" ?> <?php } echo slb_activate($test); ?> </div> </div>
Forum: Plugins
In reply to: [Simple Lightbox] Lightbox and NextGen GallerySo you mean it has to be wrapped in an and then I should wrap that in a variable and then use it on slb_activate?
So for example(with no href or value, also quoted the a’s so it won’t be a link here on wordpress):
$test = “<a’>'<img title=” . esc_attr($image->alttext) . ” alt=” . esc_attr($image->alttext) . ” src=” . nextgen_esc_url($image->thumbnailURL) . ” ” . $image->size . “/></ a>” ?></a’>’
Forum: Plugins
In reply to: Is there an importer plugin that supports ACF(Advanced Custom Fields)?It’s a secondary DB(Including regular data) not a second wordpress DB..
Forum: Fixing WordPress
In reply to: Only a part of my custom taxonomies show.Actually it doesn’t work only the last one worked due to this along with the first three but the rest inbetween aren’t working!
Forum: Fixing WordPress
In reply to: Only a part of my custom taxonomies show.Nevermind I found the Issue you can’t use
_
as space when having bigger names.Forum: Plugins
In reply to: [All Import Export Suite for CSV and XML Datafeed] All vallues showSo you guys had the same results as I? Where as you make a csv yourself regardless of declaring the customfields at the top of the CSV you get everything in the list?
Because I have imported CSV files before using ACF’s fields I also declared the custom field names at the top like so: Date;Name;Type; . It also worked perfectly so I do agree I think it’s regarding repeaters.
Forum: Plugins
In reply to: [Secure Custom Fields] How do I Href with ACF?Thanks! I appreciate the help but I figured it out just the way you did as well hehe. Yes we once will help others here :D. It as well would be great for other people trying to figure it out!
Forum: Plugins
In reply to: [Secure Custom Fields] How do I Href with ACF?Please?
Forum: Plugins
In reply to: [Secure Custom Fields] Prepend not showingNevermind found a way to solve it.
(In a href a prepend will most likely not show so what I did was make another sub field to put in front of it.)
Forum: Fixing WordPress
In reply to: Get_post is not functioning properly.EDIT: I solved it the reason it didn’t work is because I forgot to change the custom subfield at the Return Value option to ID. Stupid of me!
Regardless of that, thanks WPRanger!