gordon.cunningham
Forum Replies Created
-
Forum: Plugins
In reply to: [Tiled Gallery Carousel Without JetPack] Notice: Array to string conversionI think I found the fix. In checking the recent fix for JetPack, the issue was the expansion of the metadata array. In the plugin, edit the tiled-gallery.php file and change line 373, which originally reads:
$img_meta = json_encode( array_map( 'strval', $img_meta ) );to
$img_meta = json_encode( array_map( 'strval', array_filter( $img_meta, 'is_scalar' ) ) );So far this has fixed the issue here, as well as a problem with internal server errors when editing galleries and saving the page.
Good luck!
Forum: Plugins
In reply to: [Tiled Gallery Carousel Without JetPack] Notice: Array to string conversionThe problem is that the images’ metadata now contain an array of info that the plugin doesn’t handle. The JetPack code that this plugin is based on hasn’t been updated. JetPack had the same problem a while back and it was fixed in an earlier version of WP. However, knowing that hasn’t allowed me to figure out a fix – I’m not a programmer. Anyone know what’s become of the author?
No, your link doesn’t show any sort of plugin for WordFence that allows this – that doesn’t exist. Hence my query.
Forum: Plugins
In reply to: [Recent Posts FlexSlider] Placing caption at topYes, I understand how the caption box parameters work. Using absolute positioning throws off the entire site responsive formatting so that is not an option.
At this point I’m thinking this cannot be done in CSS, as the two div’s are in the wrong dependency order for top caption. That is, the caption box is dependent on the image div, and I want the opposite. I’ll have to change it in the HTML/PHP code. Any pointers as to where to find this in the plugin code?
Thanks.
Forum: Plugins
In reply to: [Recent Posts FlexSlider] Modify Title Text ClassOh, I found it. For those of you also looking, it’s in the /wp-content/plugins/recent-posts-flexslider/views/display.php file in the plugin’s folder.