kunlereedwan
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Hotelier] Reserve redirecting to wordpress DashboardForum: Plugins
In reply to: [WP Hotelier] Reserve redirecting to wordpress DashboardHello Benito,
I have done as instructed, activated Twenty Seventeen but the problem persist then i deactivated almost all the plugin but still redirect to the dashboard.
regards
Forum: Plugins
In reply to: [WP Hotelier] Reserve redirecting to wordpress DashboardHello Benito,
Can the wp hotelier be used with woocommerce?
The Reserve button is still redirecting to the wp-admin login page.
Regards
Forum: Plugins
In reply to: [WP Hotelier] Redirection Not Working On my SiteHello Benitolopez,
Thank you once again
I think the problem might be coming from the Theme (Hotello)For me to redirect to external website, do i need to enable Paypal in the Hotelier-> Setting-> Payment Gateway.
regards
Forum: Plugins
In reply to: [WP Hotelier] Redirection Not Working On my SiteThank you for your prompt response Benitolopez,
But it is redirecting to https://www.paypal.com/webapps/shoppingcart/error?flowlogging_id=45e802033e909&code=NO_BUSINESS
please kindly assist
regards
Forum: Plugins
In reply to: [WP Hotelier] Redirection Not Working On my SiteIt is redirecting to Paypal
function hotelier_custom_add_to_cart_from_room_list_redirect( $url ) {
$custom_url = ‘ https://secure1.sandbox.directpay.online/payv2.php?ID=XXXX’;return $custom_url;
}
add_filter( ‘hotelier_add_to_cart_from_room_list_redirect’, ‘hotelier_custom_add_to_cart_from_room_list_redirect’ );function hotelier_custom_allowed_redirect_hosts( $content ) {
$content[] = ‘secure1.sandbox.directpay.online/payv2.php?ID=XXXX’; // without http(s)://return $content;
}
add_filter( ‘allowed_redirect_hosts’, ‘hotelier_custom_allowed_redirect_hosts’ , 10 );