jdaniel
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Date changes when I editHello,
Same problem here. I just updated everything to the latest versions, WordPress, Plugins, Theme. I am using Genesis framework.
I even disabled all(!) other plugins. No difference. So I don’t see a conflict with another plugin.
It only happens with events that are longer than one day. Events that start and at the same day are fine.
By the way: This guy seems to have exactly the same problem: “End date ‘jumps’ 3 days when editing” (https://ww.wp.xz.cn/support/topic/end-date-jumps-3-days-when-editing/)
I appreciate your help on this.
Daniel
Thanks, works great!
Forum: Plugins
In reply to: [Shariff Wrapper] “new support for WooCommerce products on the ranking table”Ah, jetzt habe ich es verstanden. Danke dir!
- This reply was modified 8 years ago by jdaniel.
Thanks, Kuba – sounds great!
Best
DanielHey Kuba,
To be honest: I only want this simple function: https://ww.wp.xz.cn/plugins/wp-change-status-notifier/ (This is the plugin I previously used and which worked fine.)
I think that some other people might find this function very useful. So is there an easy way to implement it to your plugin which ensures future updates / maintenance as well?
Thanks,
DanielForum: Plugins
In reply to: [Advanced Ads – Ad Manager & AdSense] General tip for my site?Thanks, Thomas! Great analysis, that was helpful!
Forum: Plugins
In reply to: [Advanced Ads – Ad Manager & AdSense] General tip for my site?Yes, it’s https://reinigungsmarkt.de !
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] Contact Form 7 Stopped workingYes, works!
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] Contact Form 7 Stopped workingJust wanted to let you guys know that I have exactly the same problem since updating to the latest version. Fortunately, in my clients case it’s okay to simply deactivate the plugin and wait for a fix / next update.
However, what I haven’t tried before, is “contact-form-7” as an exception. I’ll try this one first and let you guys know if this solved the problem here.
I just wanted to let you know that something that worked fine with contact form 7 previously now suddenly doesn’t work anymore.
Everything is working fine (again). Thanks for your support and great plugin in general (smart and lightweight – love it!). Keep up the good work, it’s definitely worth it!
Forum: Networking WordPress
In reply to: New users don’t show up in subsite of a MultisiteHi Phil,
Thanks for your answer. My problem was different, but somehow it seems to work now. So I consider it solved for now.
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] PayPal-Warnung “Sofortige Zahlungsbestätigung”Hab dasselbe Problem, aber erst seit ein paar Tagen. Seltsam. Der Standard-Support von PayPal sagte mir, ich solle beim Hoster/Provider nachfragen. Dieser sagte mir, ich solle prüfen, welches Script genau diese Meldung verursacht.
Aber wenn es an PayPal selbst liegt, hoffe ich, dass es einfach bald weggeht. Wenn das allerdings schon seit drei Wochen bekannt ist, wundert es mich, dass es immer noch nicht gefixt ist (bzw. erst seit einer Woche bei mir aufgetaucht ist, vorher nie).
“Einstellungen für sofortige Zahlungsbestätigungen” bei PayPal habe ich aktiviert. Der PayPal Standard Support sagte mir, man könne das auch deaktivieren, dann würde man halt keine Zahlungsbestätigung mehr bekommen, aber die Zahlung selbst sei dennoch erfolgt (Letzteres ist auch der Fall). Wenn möglich, finde ich die Zahlungsbestätigung allerdings nicht schlecht.
When will you release the next update? I’d be interested in that fix as well. 🙂
Hey jdaniel,
There are use cases where it makes sense to load the lightbox scripts in archives. They might not be necessary on your site but this plugin is designed for use by as many people as possible. In order for it to be useful to as many people as possible without bloating the plugin with settings, I need to paint with a fairly broad brush.
The scripts and styles we load are very minimal, especially compared to the typical scripts and styles loaded by other WordPress plugins and themes so I don’t have a problem with loading them site-wide. If you would rather they didn’t load in other places, the filters mentioned are there for you to adjust things as you see fit.
This snippet should do what you’re asking, but you might need to adjust it more depending on exactly where you want the plugin scripts to load.
`add_action( ‘wp_enqueue_scripts’, ‘prefix_featherlight_singular_only’, 12 );
/**
* Remove all WP Featherlight scripts and styles on every screen except single
* posts, pages and custom post type entries.
*
* @since 1.0.0
* @access public
* @return void
*/
function prefix_featherlight_singular_only() {
if ( ! is_singular() ) {
add_filter( ‘wp_featherlight_load_css’, ‘__return_false’ );
add_filter( ‘wp_featherlight_load_js’, ‘__return_false’ );
}
}Thanks, great support – this sounds and looks good! I appreciate it a lot (and yes, I totally agree with your approach to load this lightweight plugin on every page by default to make it as easy as possible for most people to use!).
However, in order to be able to enjoy this customization, I need to make it work again first: https://ww.wp.xz.cn/support/topic/wp-featherlight-not-working-after-update/
Thanks for your help
Daniel- This reply was modified 8 years, 11 months ago by jdaniel.
Thanks. Unfortunately, I have no idea how to write such a function.
I’d just love it, if the plugin would only be loaded when needed (= only on blog posts and site pages, that’s it. No archives, no shop products, no front page = faster loading)