miraclemaker
Forum Replies Created
-
Forum: Plugins
In reply to: [WPGraphQL Yoast SEO Addon] Attempt to read property “twitter_image” on falseI’m still getting the same error message after upgrading to v5.0.2
Forum: Plugins
In reply to: [WPGraphQL Yoast SEO Addon] Attempt to read property “twitter_image” on falseThis is in version 4.22.5. Version 5 is not showing as an available update on my WordPress plugins page. Is it backwards compatible? I checked the changelog and it doesn’t mention anything…
Thanks so much for the reply!
Forum: Plugins
In reply to: [Polylang] Polyland causing site to display wrong homepageUnfortunately I have that option disabled already and I’m still getting the issue. Any word from the developers on this?
Forum: Plugins
In reply to: [Authenticator for WordPress] Option to disable 'My Apps Passwords'Fair enough. Thanks for the response!
Forum: Plugins
In reply to: [Force Regenerate Thumbnails] Version 2.03 Stops Processing ThumbsSame issue here with 2.0.3
Forum: Plugins
In reply to: [Contact Form 7 reCAPTCHA Extension] Doesn;t work in 3.6Thanks guys!
Forum: Plugins
In reply to: [Broadcast] Ouch, PHP >= 5.4?Same issue here. Don’t have the option to upgrade PHP on the shared server I’m on, so this effectively blocks upgrades for me.
– That should have been line 421.
You’re welcome. Hopefully they’ll fix this in the next version.
Was looking for the same thing. Did you have any success with this?
I fixed this by adding the following code to js/image-widget-fix-browser-upload.js (this is in version 3.3.4), after line 20:
//also update the filter form with a new hidden field //is the filter form present on the page? if (jQuery("form#filter").length>0) { //code for retrieving GET vars (we want the value of widget_id) var $_GET = {}; document.location.search.replace(/\??(?:([^=]+)=([^&]*)&?)/g, function () { function decode(s) { return decodeURIComponent(s.split("+").join(" ")); } $_GET[decode(arguments[1])] = decode(arguments[2]); }); var theid = $_GET['widget_id']; if (theid.length > 0) {//do we have a value? //insert hidden field into form jQuery('form#filter').append( jQuery('<input/>') .attr('type', 'hidden') .attr('name', 'widget_id') .val(theid) ); } }I have found if you use the month filter or the search functionality in the media library it fails to insert / update the image in the widget.
Forum: Hacks
In reply to: Override shortcode for mobile theme?Hi bitsyandkitty.
All you need to do is register the shortcode you wish to hide in the functions.php of your mobile theme.
Here’s a very simple example:
function my_shortcode_handler( $atts, $content=null, $code="" ) { return ''; } //override the 'testimonial' shortcode add_shortcode( 'testimonial', 'my_shortcode_handler' );Forum: Themes and Templates
In reply to: Problem with pagination and spaces in URLHaving the same problem did you get to the bottom of this?