anish6
Forum Replies Created
-
For anyone with the same problem:
Add this css class to your site (I have added it in the css section of FunnelKit/Checkout):
body .iti__flag {
background-image: url(https://templates-elementor.funnelswp.com/wp-content/plugins/funnel-builder-pro/modules/checkout/assets/img/flags.png) !important;
}Forum: Themes and Templates
In reply to: [OceanWP] String translation in child themeHi Amit, I got it working with a plugin called TranslatePress. Thanks 🙂
Forum: Themes and Templates
In reply to: [OceanWP] Redirect after registrationI found a solution to this in case anyone needs it in the future.
function custom_registration_redirect() { global $woocommerce; $cart_url = "(custom url here)"; wp_redirect($cart_url); exit(); } add_action('woocommerce_registration_redirect', 'custom_registration_redirect', 2);Forum: Themes and Templates
In reply to: [OceanWP] String translation in child themeHi Amit, thanks for replying.
Yes I have activated the child theme.
My website : http://www.equalitywebshop.comI did update the string in Poedit. When I place
esc_html__( 'Custom Menu', 'oceanwp-child' )in the parent functions.php, the translation shows up correctly in the front-end. But when I place it in the child functions.php the translation does not take place.Hope you can find the error 🙂