Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter semmtex

    (@semmtex)

    Double checked the permissions. It’s not a shared mailbox, and has all the required rights to send e-mail. Just not to send as ‘someone else’. Is this necessary?

    Thread Starter semmtex

    (@semmtex)

    I managed to solve it by myself. If anybody else is looking for a solution, here’s how I solved it:

    I looked for the function that renders the notices in BuddyPress and made a shortcode out of it, added that to the BuddyBuilder User Profile page and styled it with some CSS.

    function nmr_bp_render_notices() {
    	// Get BuddyPress
    	$bp = buddypress();
    
    	if ( ! empty( $bp->template_message ) ) :
    		$type    = ( 'success' === $bp->template_message_type ) ? 'updated' : 'error';
    		$content = apply_filters( 'bp_core_render_message_content', $bp->template_message, $type ); ?>
    
    		<div id="message" class="nmr-bp-notice <?php echo esc_attr( $type ); ?>">
    
    			<?php echo $content; ?>
    
    		</div>
    
    	<?php
    
    		do_action( 'bp_core_render_message' );
    
    	endif;
    }
    add_shortcode('bp_notices', 'nmr_bp_render_notices');
    • This reply was modified 2 years, 9 months ago by semmtex. Reason: SOLVED
    Thread Starter semmtex

    (@semmtex)

    Ok, I found my mistake (working code updated in first post). It now almost works as expected. As in, it adds to the right list depending on user role. However, it also adds the user to the default list. This shouldn’t happen. Any insight?

    Forum: Plugins
    In reply to: [EMS Online] Fatal Error!
    Thread Starter semmtex

    (@semmtex)

    Okay, after several hours of debugging, I found a solution. The developers obviously don’t test their releases. So if you have the option of not using EMS, I’d recommend to steer clear, and run towards Mollie for instance which simply works. Definitely not recommend staying with EMS if you’ve got a choice.

    If like me you don’t have the luck of changing PSP’s then rollback to version 1.2.5, which at least for me seemed to resolve the problems.

    Forum: Plugins
    In reply to: [EMS Online] Fatal Error!
    Thread Starter semmtex

    (@semmtex)

    The update from today added another problem in the mix:

    2021-08-17T18:53:08+00:00 CRITICAL Uncaught Ginger\ApiClient\ServerError: RetrievingAllOrdersNotPossible(400): Retrieving all orders is no longer possible; please use the created_since and created_until request parameters to retrieve a subset instead in /public_html/wp-content/plugins/ems-online/vendor/gingerpayments/ginger-php/src/ApiClient/ServerError.php:13
    Stack trace:
    #0 /public_html/wp-content/plugins/ems-online/vendor/gingerpayments/ginger-php/src/ApiClient.php(156): Ginger\ApiClient\ServerError::fromResult(Array)
    #1 /public_html/wp-content/plugins/ems-online/vendor/gingerpayments/ginger-php/src/ApiClient.php(139): Ginger\ApiClient->interpretResponse('{\n  "error": {\n...')
    #2 /public_html/wp-content/plugins/ems-online/vendor/gingerpayments/ginger-php/src/ApiClient.php(47): Ginger\ApiClient->send('GET', '/orders/')
    #3 /public_html/wp-content/plu in /public_html/wp-content/plugins/ems-online/vendor/gingerpayments/ginger-php/src/ApiClient/ServerError.php op de lijn 13

    I just installed the newest update in the hope it would fix this problem. Doesn’t seem to be though. I’m still having the problem setting a condition. I can select the first conditional field, however no values show up in the last condition field.

    Any help would be much appreciated.

    Using latest version of Gravityforms (1.9.11) and Pronamic iDEAL (3.6.6)

Viewing 6 replies - 1 through 6 (of 6 total)