Justin Frydman
Forum Replies Created
-
Try the new update, I contributed some SSL fixes for older servers that caused some issues getting the image dimensions.
Are you using https on your site?
All I know is it works if you enable it and click posts and are using the default WordPress posts with a featured image.
Right now it appears to only support posts. Also, it’s not documented but your posts have to have a featured image, as the Article schema requires an image object. If your post doesn’t have an image, there will be no Article json data outputted.
https://developers.google.com/structured-data/rich-snippets/articles
Forum: Plugins
In reply to: [Youtube Channel Gallery] Player not workingNevermind in my case, I had some javascript to open all external links in a new window which was causing this. I added a check to my script to look for the ytclink class. It functions well now.
I used Firebug to figure it out https://blog.getfirebug.com/2014/06/10/firebug-2-0/#dom-events-inspector
Forum: Plugins
In reply to: [Youtube Channel Gallery] Player not workingI have the same problem, if you press next/previous on the pagination the videos begin to play in the player instead of opening in a new window. Maybe something is wrong with the javascript initialization?
Forum: Plugins
In reply to: [Reusable Text Blocks] Feature: Update filterHi,
Sorry for the REALLY late reply!
The update would be to line 299 in the current version of the plugin:
From:
return apply_filters( 'text_blocks_shortcode_html', $content, $atts );To:
return apply_filters( 'text_blocks_shortcode_html', $content, $atts, $id);Adding $id to the filter allows me to create an edit post link based on the post id of the text block.
Thanks!
I did hack the pluging up a bit to fix it:
includes/master_schedule.php
line: 715
if($shift['time']['start_hour'] == 0 && $shift['time']['end_hour'] == 0) { ///midnight to midnight shows // this seems to be breaking shows that run at 12:00am, so commenting it out for now // $rowspan = 24; }Forum: Plugins
In reply to: [Recent FB Posts] Dashboard page has no contentAn hour later it started working for me and has been since. Try logging out/clearing your browser cache etc…maybe it will help.
Forum: Plugins
In reply to: [Recent FB Posts] Dashboard page has no contentNever mind, it seems to have just started working out of nowhere.
Forum: Plugins
In reply to: [WooCommerce] Change coupon error message using functions.phpYou can do it with a get text filter
function custom_coupon_messages( $translated_text, $text, $text_domain ) { // bail if not modifying frontend woocommerce text if ( is_admin() || 'woocommerce' !== $text_domain ) { return $translated_text; } if ( 'Coupon usage limit has been reached.' === $text ) { return 'Our records show that you have already redeemed this discount code.'; } if( 'This coupon has expired.' === $text ) { return 'Sorry, this discount code is no longer active.'; } return $translated_text; } add_filter( 'gettext', 'custom_coupon_messages', 10, 3 );Oh sorry, Joachim. I thought I posted a follow up of me figuring that out.
Maybe a feature request would be for the plugin to automate this upon upgrade.
Thanks again!
Further troubleshooting shows that in my condition group if I have:
Page Templates:
– Programsand ANY category e.g.
Categories
– Counselling
– EducationThe sidebar no longer shows up on the Programs page template, nor on the category pages.
Forum: Plugins
In reply to: [JW Player for Flash & HTML5 Video] Media list not displaying in dashboardSorry, there wasn’t actually a problem. I had added all the available videos in the media library to playlists. I had assumed it would still show those videos to be available to add to other playlists.
Forum: Plugins
In reply to: [BU Navigation] Renaming pages does not show up in the "move page" windowTo be more specific, I think the plugin should update the label if you change the page title to match it.