Oliver Harrison
Forum Replies Created
-
This isn’t working – I tested repeatedly with both filters; neither work.
The data attribute does, but it’s not always easy to add to images inserted from WP.
Forum: Plugins
In reply to: [Tailor Page Builder] "Tailor this Page" link not presentI’m having the same issue. This is not working at all.
Forum: Plugins
In reply to: [Event Organiser] Help with displaying custom event metaOh that did it. I didn’t understand what was going on there. Now I’ve got it. Sure appreciate your help – we’re going to be buying the full version of this today as it is really the best supported and most functional plugin I’ve found.
I’m going to be looking into adding custom fields for events themselves, such as contact person, contact phone number, URL, etc. I assume it’s similar?
Forum: Plugins
In reply to: [Event Organiser] Help with displaying custom event metaOkay, I’m a bit further – I now get ‘Array’ in the body when I put it in my single-event.php:
<?php eo_get_template_part('event-meta','event-single'); $current_events_venue_id = eo_get_venue(); echo eo_get_venue_meta( $current_events_venue_id, '_venue_gmaps', $gmaps_url); ?>
And here’s the entirety of my additons to functions.php:
// Event Organiser add_action('add_meta_boxes','eo_custom_add_metabox'); function eo_custom_add_metabox(){ add_meta_box('eo_custom_metabox','Extra Info', 'eo_custom_metabox_callback', 'event_page_venues', 'side', 'high'); } function eo_custom_metabox_callback( $venue ){ //Metabox's innards: $_venue_gmaps = eo_get_venue_meta($venue->term_id, '_venue_gmaps',true); //Remember to use nonces! wp_nonce_field('eo_custom_venue_meta_save', 'eo_custom_plugin_nonce_field' ); ?> <label> Gmaps Short URL:</label> <i class="howto">https://goo.gl/maps/***</i> <input type="text" name="eo_custom_venue_gmaps" value="<?php echo esc_attr($_venue_gmaps);?>" > <?php } add_action ('eventorganiser_save_venue','eo_custom_save_venue_meta'); function eo_custom_save_venue_meta( $venue_id ){ //If our nonce isn't present just silently abort. if( !isset( $_POST['eo_custom_plugin_nonce_field'] ) ) return; //Check permissions $tax = get_taxonomy( 'event-venue'); if ( !current_user_can( $tax->cap->edit_terms ) ) return; //Check nonce check_admin_referer( 'eo_custom_venue_meta_save', 'eo_custom_plugin_nonce_field' ); //Retrieve meta value(s) $gmaps_url = $_POST['eo_custom_venue_gmaps']; //Update venue meta eo_update_venue_meta($venue_id, '_venue_gmaps', $gmaps_url); return; }
So I looked into this a little closer.
You can see the problem here: https://www.positivebias.com/a-dog-and-her-ball/
The link that is being auto-generated for the image URL using the tb.php script looks like this: src=”https://www.positivebias.com/wp-content/plugins/easy-related-posts/inc/tim/tb.php?src=vebias.com/wp-content/uploads/2013/07/wpid-CAM00313.jpg
So what is happening is the script is truncating my domain name by 6 characters, lopping off ‘positi’ or ‘www.positi’ from the front. I’m not sure what would do that; I’m reasonably adept at PHP but I don’t want to start messing with it. Can you take a look?
Thanks.
Hi,
I’m still having the same issue. I just checked tb.php in the /inc/tim forlder and it’s set to false (the caching). I’m not using the wp-cache plugin, though I am using EM object cache, which only caches objects.
When I set the thumbnail to hard crop, it invariably shows a broken image. If I turn off cropping, it’s fine.
Any thoughts?
Your purchase link doesn’t work at all. Is there any other way I can download this beta for testing?
Forum: Plugins
In reply to: [WP Featured Content Slider] WP Featured Content Slider is brokenUmm whoops. No, it’s not. The likes-comments plugin that I had forgotten I had installed broke it by trying also force load jquery. Bad oliverh!
Sorry, nothing to see here.