freddyeee
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Wrong displacement on email purchasewhere is this ?
WooCommerce → Settings → Emails → Email Settings and turning off “Enable modern email design for transactional emails”.
I can’t find it.
Forum: Plugins
In reply to: [WooCommerce] Wrong displacement on email purchaseI use the default Woocommerce email setup.
sorry for the late reply.
It didn’t solve the issue.
Forum: Plugins
In reply to: [Code Snippets] Can not ad or edit any snippet codeIt was a wordpress update issue.
Yes, on the product image.

Kadence Theme, no builder for product pages.

I didn’t explain myself correctly.
I have a top bar on my website, inside I have a short sentence (Free shipping on orders over $200) the currency and number remain inalterable, but the text should translate. With some code I change that currency and numbers depending of the user location. If I use the code this sentence can no longer translate with the language switcher, but I do want it to change.Forum: Plugins
In reply to: [Joinchat - Enhanced "click to chat"] Restrain appearance countriesI made this code to hide the bubble on the US, but it didn’t work:
Functions.php on child theme
add_action('wp_enqueue_scripts', 'pasar_geolocalizacion_js');
function pasar_geolocalizacion_js() {
$user_country = WC_Geolocation::geolocate_ip();
wp_enqueue_script('ocultar-joinchat', get_template_directory_uri() . '/js/ocultar-joinchat.js', array('jquery'), null, true);
wp_localize_script('ocultar-joinchat', 'userLocation', array(
'country' => $user_country['country'],
));
}JS file name “ocultar-joinchat.js” on child theme
jQuery(document).ready(function($) {
if (userLocation.country === 'US') {
$('#joinchat__peak_l').hide();
$('.joinchat__button').hide();
}
});what could I do ?
- This reply was modified 1 year, 7 months ago by freddyeee.
Hi
When I clic on the button “Add field mapping”, nothing happens and this is the issue on the Console brower:
JQMIGRATE: Migrate is installed, version 3.4.1
POST https://www.runayaq.com/wp-admin/admin-ajax.php 400 (Bad Request)
Failed AJAX Call :( /// Return Data: [object Object]
I still can´t add any field mapping, what could be the issue ?
Forum: Fixing WordPress
In reply to: CORS issuesalso, my server is apache, but I have NGINX cache, do I have to deactivate that cache with this code ?
location / { # Replace / with your desired location path if needed
if ($http_origin ~* https://gtm\.runayaq\.com) {
add_header 'Access-Control-Allow-Origin' "$http_origin";
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers'
'X-Requested-With, Content-Type,
Accept';
}
# Your other location configuration goes here...
}Forum: Fixing WordPress
In reply to: CORS issuesThank you very much
location / { # Replace / with your desired location path if neededwhat should I use for location ? could you please explain a little bit with an example ?
Forum: Fixing WordPress
In reply to: CORS issuesThank very much, but I use NGINX cache, what other option do I have without deactivating that cache ?
Forum: Fixing WordPress
In reply to: CORS issuesI think that there was some problem with the firewall with one security plugin, I fixed it. could you please check again ?
For the server side tracking with GTM I need a subdomain, that’s why.
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Price doesn’t appearwhat could the reason on having that issue on my end ?
Forum: Themes and Templates
In reply to: [Kadence] footer mobile versionI don’t see that option to hide on desktop and tablet.

I did it on this widget part :

Over here it will appears on the footer a big title and under that the subcategories. I can’t do the “collapse sub menu items” to that.