ticing
Forum Replies Created
-
Hi
I had the same problem. I solved it with these 2 changes:
1. On index.php line 53, changeinclude_once SEPA_PAYMENT_GATEWAY_PATH.'/vendor/autoload.php';For this:
include_once SEPA_PAYMENT_GATEWAY_PATH.'vendor/autoload.php';2. On implement.php line 108, change
$url_download = SEPA_PAYMENT_GATEWAY_LOG_URL.$filename;for this:
$url_download = SEPA_PAYMENT_GATEWAY_LOG_URL . '/' . $filename;I hope it works for you.
Regards
Hi,
The problem in /admin/users.php is that in AdminHelper::getCurrentPostType() the variable global $post_type is set to SG_POPUP_POST_TYPE.
This problem appeared with version 4.0 and later. with PopupBulider 3.8 it did not happen.I have patched it with this code snippet :
add_action(‘admin_head’, ‘ticing_users_parche_pupupbuilder’, 1 );
function ticing_users_parche_pupupbuilder( ) {
global $post_type;
if ( strpos($_SERVER[‘REQUEST_URI’], ‘users.php’) !== false ) {
$post_type = ‘users’;
}
}I hope it works for you.
Regrads- This reply was modified 4 years, 4 months ago by ticing.
Thank you.
It already works.Ticket created
Regards
We have already solved it after comparing the changes in the code of user-registration/includes/frontend/class-ur-frontend.php
The Login page had to be converted to blocks.
It had been created with a classic editor.We hope it helps someone.