Forum Replies Created
-
AuthorPosts
-
December 9, 2025 at 5:05 PM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250851
donald_punk
ParticipantHi,
yes, feel free to make changes on the staging site.December 9, 2025 at 2:54 PM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250848donald_punk
ParticipantThis reply has been marked as private.December 3, 2025 at 11:39 AM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250741donald_punk
ParticipantThis reply has been marked as private.December 3, 2025 at 11:39 AM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250744donald_punk
ParticipantThis reply has been marked as private.December 3, 2025 at 1:24 AM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250743donald_punk
ParticipantThis reply has been marked as private.December 3, 2025 at 1:23 AM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250742donald_punk
ParticipantSomehow my messages don’t show up… Did you get my admin access?
December 2, 2025 at 5:36 PM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250732donald_punk
ParticipantAaaah, now they are here…
December 2, 2025 at 5:33 PM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250724donald_punk
ParticipantThis reply has been marked as private.December 2, 2025 at 5:33 PM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250721donald_punk
ParticipantThis reply has been marked as private.December 2, 2025 at 5:32 PM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250726donald_punk
ParticipantI tried now a few times to post the error log as a private reply here. It doesn’t save the comment in the forum. Can I send you this per mail?
December 2, 2025 at 5:31 PM in reply to: Paypal Real-Time Split Payment: ITEM_TOTAL_MISMATCH #250725donald_punk
ParticipantThis reply has been marked as private.donald_punk
ParticipantThank you for this Information! This I didn’t know yet!
donald_punk
ParticipantThank you for the information and your review.
You mentioned:
user switch plugin to temporarily switch to a vendor accountWhich plugin do you mean?
donald_punk
ParticipantYes, important is also this part in the code:
if( is_vendor_dashboard() && is_user_logged_in() && !current_user_can(‘administrator’) )
Because otherwise, my dashboard wouldn’t have a style, if I was logged in as an admin. At the moment, I didn’t experience any errors and I was working the last hours in different browsers and different login-states.
donald_punk
ParticipantHi Sangita, I figured it out! Woodmart loads also a base.min.css on the dashboard and that should be a part of the dequeue: wp_dequeue_style( ‘wd-style-base’ );
I fixed it now like this, because the whole dequeue made some other troubles:
/*** Enqueue Scripts for Dashboard ***/ add_action( 'wp_enqueue_scripts', 'theme_issue_fix', 99999999999999 ); function theme_issue_fix() { if( is_vendor_dashboard() && is_user_logged_in() && !current_user_can('administrator') ) { wp_dequeue_style( 'wd-style-base' ); } } add_action('wp_enqueue_scripts', 'my_remove_scripts', 9999999999999999999999 ); function my_remove_scripts(){ if( mvx_is_store_page() ){ //style } } function load_jquery_migrate() { wp_enqueue_script('jquery-migrate'); } add_action('wp_enqueue_scripts', 'load_jquery_migrate'); /*** Enqueue Scripts for Dashboard ***/ -
AuthorPosts
