Grant Kimball
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Newsletter Signup] MultisiteI’m sorry to hear that plugin is not compatible with multiSite.
However, I do not have any plans in the future to make it multiSite compatible ??
There is a lot of effort that goes into maintaining and upgrading plugins and unfortunately I have a baby on the way and time escapes me these days.
Forum: Reviews
In reply to: [Simple Vimeo Shortcode] what ?Hey there… The shortcodes are in the FAQ section
10,000+ people figured that one out lol
[ylwm_vimeo autoplay=”true”]1234567[/ylwm_vimeo]Yes, you would need to post the form with jQuery or Javascript through Ajax to achieve this.
Can you send me a URL so that I may test it? It has been a while since I have used the plugin myself ??
Forum: Plugins
In reply to: [Logo Slider] Plugin Configuration Menu broken.Maeve, good job! I will check it out when I get back to my desktop.
Thanks for the fix, and ignore the ignorant folks out there;)
Grant
Forum: Plugins
In reply to: [Logo Slider] Plugin Configuration Menu broken.Not a problem Maeve, I live to help others ??
Forum: Plugins
In reply to: [Logo Slider] Plugin Configuration Menu broken.and that was my rushed rough hack of a fix ?? sorry for typo’s / brevity.
Forum: Plugins
In reply to: [Logo Slider] Plugin Configuration Menu broken.Maeve,
The issue regarding the menu configuration display / functionality lies in the $data[‘thumbnail’] call on line 287 of logo-slider.php
Will Yield ERROR:
<input type=”hidden” name=”wp_logo_slider_images[‘<?php echo $image; ?>’][‘thumbnail’]” value=”<?php echo $data[‘thumbnail’]; ?>” />commenting out the echo, will fix error:
<input type=”hidden” name=”wp_logo_slider_images[‘<?php echo $image; ?>’][‘thumbnail’]” value=”<?php //echo $data[‘thumbnail’]; ?>” />Clearly, this is probably not the only issue. It looks like the thumbnails themselves aren;t being created on some installs.
After more research, I found that IMAGE_RESIZE is deprecated:)
Therefore you need to remove image_resize function and replace with instantion of wp_get_image_editor()
i.e.
$image = wp_get_image_editor( ‘cool_image.jpg’ );
if ( ! is_wp_error( $image ) ) {
$image->rotate( 90 );
$image->resize( 300, 300, true );
$image->save( ‘new_image.jpg’ );
}Please see this page: https://codex.www.ads-software.com/Class_Reference/WP_Image_Editor
I would totally help but I am swamped ??
Forum: Plugins
In reply to: [Simple Vimeo Shortcode] inserted video ID video not availableSOOO sorry for the delay Peter, WP has not been sending me notifications.
Were you able to get this working?
If not, please make sure the vimeo ID is in between the shortcodes.
i.e. [ylwm_vimeo]123456567[/ylwm_vimeo] (with no spaces)
Let me know if this helps,
Grant
Forum: Plugins
In reply to: [Simple Vimeo Shortcode] Removing Vimeo LogoSorry for the delayed response, I do not get notifications from WP.
I believe you are stuck with the logo. After all, that is their means of marketing.
I just updated the plugin to allow autoplay.
usage:
[ylwm_vimeo autoplay=true]20689704[/ylwm_vimeo]
Hope this helps!
Forum: Plugins
In reply to: [WP-PostRatings] [Plugin: WP-PostRatings] Failed To Verify ReferrerDownload Firebug for Firefox, or any browser console reporting tool. Find out what the class/id/elements are, and style accordingly. You can even
display:none !important;
the error I’m sure..Forum: Plugins
In reply to: [WP-PostRatings] [Plugin: WP-PostRatings] Failed To Verify Referrer@danielg Sanz
I’m not too sure that made much sense. What are you trying to accomplish? Styling the plugin? Or translating the plugin to your own language? Further more, by language do you mean programming? Or dialectal language?Forum: Plugins
In reply to: [WP-PostRatings] [Plugin: WP-PostRatings] Failed To Verify Referrer@devang.solanki
Have you resolved this issue?
Are you positive their are no white spaces in your code outside of the:
<?php ?>
tags?That’s what usually causes this error.
Forum: Reviews
In reply to: [Simple Newsletter Signup] Improvements neededGeoff, Appreciate the feedback. These will be solved in the next version.
Forum: Plugins
In reply to: [WP-PageNavi] Navigation isn't showed anywhereFirst off, make a back up (if you’d like) just to make sure you don’t harm any template files.
second, looks like you can just replace everything you have there with this… If you are running the same condition within a condition that doesn’t matter, its pointless ??
<div class="navigation clearfix"> <?php $page_navi = function_exists('wp_pagenavi') ? true : false ; ($page_navi) ? wp_pagenavi() : posts_nav_link();?> </div>
This is really based on your template though. But the above code should work fine.