bpmildh
Forum Replies Created
-
Forum: Plugins
In reply to: [PhotoSwipe] Not working on category pageFound it! Sorry if it was to late mikeprince…
Photoswipe js files loads only on singular, I think it’s on purpose.
In photo-swipe.php, line 12
change
if( is_singular() )
to
if( !is_admin() )There might be a better way to do this, but at least it will not cause any damage in admin. Only add weight on front end.
Forum: Plugins
In reply to: [Display Posts - Easy lists, grids, navigation, and more] WordPress 4.4Seems that many plugins with shortcode have problems with 4.4.
Found a sollution in other plugin threads that worked for me, manually rewrite the shortcode (dont copy/paste) and resave the page/post.
I have no clue why ??Forum: Plugins
In reply to: [Category Posts Widget] disabling stylesDid work for me too
thx ??Forum: Plugins
In reply to: [Limit Login Attempts] Plugin hackedYou should ask yourself some more questions igloobob:
Where both folders in the plugin directory (with and without -S)?
What other files/folders had been added or changed the unattended period?
What permissions do you have on files/folders?
Did you check the company behind the complaints?
What protection do you use insted of LLA?The plugin file do not contain the code in ikelfs post.
I’m no expert but I rely on this plugin and did check my installs and the files on www.ads-software.com. This could be in the intrest of those trying to hack our sites, compromising one of the metods we have to stop them.
One could only ask for the developer to update the plugin (description?) to clarify that it’s not outdated.
Forum: Plugins
In reply to: [Limit Login Attempts] Plugin hackedThere is something funny about the path in ikeif post (limit-login-attempts-S). Where did the trailing -S came from?
Forum: Plugins
In reply to: [Google Doc Embedder] Download link not workingYou nailed it, downloads work after reinstall.
I did touch privacy setting i GDE, but turning it of did not help. There are some privacy involved on the site but I handle that with page templates.
Error checking don’t work tough, but thats no big deal.
Thanks!
Forum: Plugins
In reply to: [Google Doc Embedder] Download link not workingI did turn of error checking, othervise I got this “I GDE Error: Error retrieving file – if necessary turn off error checking (404:Not Found)”
Forum: Fixing WordPress
In reply to: How do I remove enclosure urls from rss feed?Found a sollution on this problem here:
https://www.livexp.net/wordpress/get-rid-of-auto-media-enclosures-on-wordpress.htmlIt’s from 2009 but I use it on 3.3.1 and i still works
Simply put this in functions.php:
function delete_enclosure(){ return ''; } add_filter( 'get_enclosed', 'delete_enclosure' ); add_filter( 'rss_enclosure', 'delete_enclosure' ); add_filter( 'atom_enclosure', 'delete_enclosure' );
Forum: Themes and Templates
In reply to: Twenty Ten menu behind dynamic content gallery in IE7daytongemshockey + pavlos.g sollutions worked for me in IE7, and it don’t appear to break stuff in IE8 and sane browsers so i did not bother conditionals.
#content { z-index: 1; }
#access { z-index: 2; }
#access .menu-header li, div.menu li { z-index: 100; }That is a css/stylesheet task, the best way is to use Firebug when experimenting.
A faster way to reach symmetry could be to enlarge the thumbs a few pixels in nextgen gallery options. You might have to recreate thumbnails afterwards.
Forum: Plugins
In reply to: [radSLIDE] radSLIDE don't work with SafariI see your problem. I don’t know if it’s the reason but you have two “mnargin” in style.css on declarations related to radslide.
Forum: Plugins
In reply to: [radSLIDE] radSLIDE don't work with Safariewon: my slideshows show up as expected in both IE 7/8?