Anonymous972
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Last Login] Incompatible with Two Factor pluginditto. thats why i is here. i am using ithemes 2FA and saw the user last login column is ‘never’ for those that just logged in. ??
Forum: Plugins
In reply to: [Import external attachments] Can't import images that are queriesHello Ryan, Awesome plug, nice work!
I think that would be great if you could add ‘some more smarts’ to the plugin.
I am having the same issue. If i remove everything after the …jpg the image appears to be able to imported.being able to detect query extension on the image file path would be great!
the query could be anything, any length. in my case most of the files end with .jpg?blahbla… so after the .jpg is all query.
heres an example of the query string on the image file path;
https://e3.gencdn.com/kf/HTB1atSZKXXXdaqXXXXq6xXFXXXI/223446851/HTB1atSZKdXXXXXaqXXXXq6xXFXXXI.jpg?size=57490&height=684&width=745&hash=74463a949e7fde3a4b6f0ab63d66e424maybe you could write a quick gist and let me know where to drop it in and I can test it for you ??
Thanx!
-972Forum: Plugins
In reply to: [WooCommerce] Error in wc-template-functions.php V 2.67I can confirm that this still exists in production version 4.7.2 as of today.
Forum: Plugins
In reply to: [Auto Sticky Post] add more Options specified Categorythis works:
function jlasp_set_featured_post( $number ) { $args = array( 'numberposts' => $number, 'category' => 2 ); $recent_posts = wp_get_recent_posts($number); $new_sticky = array(); foreach( $recent_posts as $recent ){ array_push( $new_sticky, $recent["ID"]); } update_option( 'sticky_posts', $new_sticky); return true; }
Forum: Plugins
In reply to: [Orbital Feed Reader] Fatal Error upon activationMon Oct 27 01:30:28 2014] [error] [client xxx] PHP Fatal error: Cannot break/continue 1 level in /var/www/wp-content/plugins/orbital-feed-reader/install_upgrade.php on line 325
Forum: Plugins
In reply to: [Orbital Feed Reader] Fatal Error upon activationYep. I just got the exact same thing. While it was trying to install.
I deleted the plugin and the site came back up.
previously, I used to use this on an older version of wp, was awesome. But now I am trying to install it on a fresh site v.4.0 wp.
Maybe you guys could take a look at whats going on there… ??
thanx!
Forum: Plugins
In reply to: [WP RSS Multi Importer] Have Added Pinterest Button – need imageHere is the full thing:
<a href="//pinterest.com/pin/create/button/?url='. $items["mylink"] .'&media='. rawurlencode($items["mylink"]) . rawurlencode($items["myimage"]) . '&description='.rawurlencode($items["mytitle"]).'%20'.$items["mylink"].'" class="popup" target="_blank"><img src="'. get_stylesheet_directory_uri().'/images/socials-zine.png"/></a>
but this -> $items[“myimage”]
returns empty.Forum: Plugins
In reply to: [WP RSS Multi Importer] Have Added Pinterest Button – need imageHi Thanx for the reply.
I got the pinterest methods all set. I was indeed looking for the image url, the path.
so, in using this:
media=’. rawurlencode($items[“mylink”]) . rawurlencode($items[“myimage”])i am able to the get the page link. however, the myimage returns empty.
I am trying to get the url. or the path or something? any other ideas?
Thank you for your help!
Forum: Plugins
In reply to: [WP RSS Multi Importer] Allen, how do I get to WP_RSS_MULTI_IMAGESthe path above is a literal file path. you access it with your file browser, finder or ftp access to your hosting server.
Forum: Plugins
In reply to: [Auto Sticky Post] add more Options specified Categorythanks for this tip.
when i use it, i can get the category, but the number does not seem to respond.
could you post the whole function you modified in the /inc/functions.php file?
thanx!
Forum: Plugins
In reply to: [WP RSS Multi Importer] Allen, how do I get to WP_RSS_MULTI_IMAGESWP_RSS_MULTI_IMAGES = /plugins/wp-rss-multi-importer/images
Forum: Plugins
In reply to: [WP RSS Multi Importer] How can I get rid of Linkedin?WP_RSS_MULTI_IMAGES = /plugins/wp-rss-multi-importer/images
Forum: Plugins
In reply to: [WP RSS Multi Importer] How can I get rid of Linkedin?this is a path to the plugins image folder: WP_RSS_MULTI_IMAGES
you could add or change the icons here. you could just drop an image in this folder since it does not exist ( i think )
plugins/wp-rss-multi-importer/images
Forum: Plugins
In reply to: [WP RSS Multi Importer] How can I get rid of Linkedin?Around line 718 in the file /inc/import_posts.php you will find the code for the social icons.
I am trying to get a pinterest button to work, but I am missing the proper image parameter.
watch for line returns and spaces in the string for $thisContent .=’
as that will cause you to have broken lines and odd spaces. watch the spans in there too.
hope this helps ??
HI Camu, thanx for the reply.
It does appear that ajax is loading via https.So I deleted all the cookies from my browser. and now, interestingly, it counts every click as a user. So just reloading a page results in the user count going up with each click.
Hmm, how to solve?
Thanx!