chisomosteve
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] reCAPTCHA v3 not loading?This worked for me, thanks!
But when I re-ticked the “Verify the origin of reCAPTCHA solutions” option it stopped working again and still failed after I un-ticked the option.
Then the only way I could find to fix it was to create a new set of keys.
Forum: Plugins
In reply to: [A-Z Listing] Adding Excerpt to listingOk thanks Daniel.
Does that only work with version 2?Forum: Plugins
In reply to: [A-Z Listing] Adding Excerpt to listingUPDATE – I’ve had to revert the plugin to 1.9.2 because of this issue:
https://wordpress.org/support/topic/links-to-a-z-listing-page-not-correctly-output-by-widget/Now the code to output the text on the listing isn’t working.
Forum: Plugins
In reply to: [A-Z Listing] Adding Excerpt to listingThanks a lot, that display some text with each entry.
I’ve tried adding the following code to display the featured image but it doesn’t work:
<?php $a_z_query->query->the_post_thumbnail(‘thumbnail’); ?>Any idea what would make this work?
Forum: Plugins
In reply to: [ACF-VC Integrator] Hide Empty LabelsHi Frederik,
I’d also be very interested in getting ACF-VC Integrator working in the Grid Builder – I want to output a custom field on the grid but hide the label if the field is empty.I can’t find any simple way to achieve this!
Thanks so much for your work on this plugin.
- This reply was modified 7 years, 5 months ago by chisomosteve.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Carousel Caption LinksI fixed the captions with this change to the plugin file inc/core/tools.php
@ about line 740:
if ( !is_numeric( $thumb ) ) continue; $slide = array( 'image' => wp_get_attachment_url( $thumb ), 'link' => $post->post_excerpt, //MY EDIT 'title' => get_the_title( $post->ID ) );(This takes the URL specified in the image caption field)