nodwsp
Forum Replies Created
-
its because your layout includes a loop, there is no way to import a layout with loops, remove the loop then import again
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Paypal Order ID missingits been 2 years and no fix, use stripe
Forum: Reviews
In reply to: [Pods - Custom Content Types and Fields] Please don’t use PodsJust open wp_config.php and add
define('PODS_TABLELESS', true);
now you can use update_post_meta() without “clever” methods ??
Forum: Plugins
In reply to: [Export Import Menus] Error In Processingits because the dev is too dumb or lazy to check the code for errors in DspExportImportModel.php:136
notice how there is no ref for the class, tries to call a global function, just add the context and it works, not that it even needs to return anything new because if you go to the function definition at line 371 you notice $cap is not defined so it’s jumping to the return, truly lazy and irresponsible.
so you could rewrite line 136 withadd_filter('map_meta_cap', function($c){return $c;}, 0, 2);
Had 30+ client sites hacked this weekend, they deleted all admin accounts FUN TIMES.
as a tip, disable the curl, eval and chr() functions and you will be fine while you clean the mess sponsored by our friends here.Since devs told us to go play in traffic, you can edit file /wp-content/plugins/elementor/core/base/document.php on line 250
find
if ( ! $this->main_id )
replace
if ( ! $this->main_id && $this->post )
FIXED, it was a silent php NOTICE
so addederror_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] Export not working, Empty fileSure it does but its a hassle better to just click this button (you just need to escape the string and force download the csv)
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] Export not working, Empty fileFixed, replaced the faulty “fputcsv” function with simple foreach
Forum: Fixing WordPress
In reply to: Plugin Upload FailsFlushing cache worked for me (I hate cache plugins!)
Forum: Plugins
In reply to: [WooCommerce] Checkout page: no “Ship to a different address?”Some themes STILL need some help, fixed with filter
add_filter( 'woocommerce_cart_needs_shipping_address', '__return_true', 50 );
- This reply was modified 8 years, 2 months ago by nodwsp.
Forum: Reviews
In reply to: [WPBakery Visual Composer & qTranslate-X] Got it working again.Update your VC latest version ??
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Post meta field empty with AWE BookingThat’s Ok.
Is there any way to disable WPGlobus from interacting with post meta?
thanks for that, the youtube videos suddenly stopped working on my site this did the trick
Solved myself, just add sleep(1);
after each post insert, since WP doesn’t play well with milliseconds
maybe will post a push to github later