Adresă: Strada Mihail Kogălniceanu 54 st, Chișinău, 2009
Telefon: +373 694 44 496
Site web: Accesați site-ul
Rețele sociale:

Despre RXQUETTE

RXQUETTE, se află la Strada Mihail Kogălniceanu 54 st, Chișinău , MD

RXQUETTE | Official website
Built on ‘90s influences and a dark feminine aesthetic, RXQUETTE collections connect elegance with coolness, breathing seductive minimalism.Designed with longevity in mind, and often mixing masculine details with feminine shapes, each item is a subtle interplay of cultural and historical narratives, drawing inspiration from the worlds of film and music, all while maintaining a concern for the environment.
Accept consent to view thisClick to allow Embedded Videos”,”cs_google_consent_mode”:{“analytics_storage”:{“enabled”:true,”value”:”granted”,”filter”:false,”category”:0},”ad_storage”:{“enabled”:true,”value”:”granted”,”filter”:false,”category”:0},”ad_user_data”:{“enabled”:true,”value”:”granted”,”filter”:false,”category”:0},”ad_personalization”:{“enabled”:true,”value”:”granted”,”filter”:false,”category”:0}},”cs_google_consent_mode_enabled”:”1″,”cs_bing_consent_mode”:{“ad_storage”:{“enabled”:true,”value”:”granted”,”filter”:false,”category”:0}},”cs_bing_consent_mode_enabled”:”1″,”cs_url_passthrough_mode”:{“enabled”:false,”value”:true,”filter”:false},”cs_meta_ldu_mode”:”0″,”cs_block_video_personal_data”:”0″,”cs_necessary_cat_id”:”163″,”cs_cache_label”:”1758817466″,”cs_cache_enabled”:”1″,”cs_active_rule”:”12092″,”cs_active_rule_name”:”ask_before_tracking”,”cs_showing_rule_until_express_consent”:”0″,”cs_minimum_recommended”:{“164″:1,”168″:1,”166″:1,”165″:1,”cs_enabled_advanced_matching”:1,”cs_enabled_server_side”:1},”cs_deny_consent_for_close”:”0″,”cs_run_scripts”:”1″,”cs_iab”:{“enabled”:0,”native_scripts”:”0″},”cs_translations”:{“cs_iab_name”:”Name”,”cs_iab_domain”:”Domain”,”cs_iab_purposes”:”Purposes”,”cs_iab_expiry”:”Expiry”,”cs_iab_type”:”Type”,”cs_iab_cookie_details”:”Cookie Details”,”cs_iab_years”:”% year(s)”,”cs_iab_months”:”% month(s)”,”cs_iab_days”:”% day(s)”,”cs_iab_hours”:”% hour(s)”,”cs_iab_minutes”:”% minute(s)”,”cs_iab_legitimate_interest”:”Legitimate Interest”,”cs_iab_privacy_policy”:”Privacy policy”,”cs_iab_special_purposes”:”Special Purposes”,”cs_iab_features”:”Features”,”cs_iab_special_features”:”Special Features”,”cs_iab_data_categories”:”Data categories”,”cs_iab_storage_methods”:”Storage methods or accessing”,”cs_iab_cookies_and_others”:”Cookies and others”,”cs_iab_other_methods”:”Other methods”,”cs_iab_consent_preferences”:”Consent Preferences”,”cs_iab_cookie_refreshed”:”Cookie expiry may be refreshed”,”cs_iab_show_cookie_details”:”Show cookie details”,”cs_iab_nodata”:”No data”,”cs_iab_btn_text_allow”:”Allow”},”cs_design_type”:”multi”,”cs_embedded_video”:{“block”:false},”version”:”5.0.0.3″};
var cs_log_object = {“ajaxurl”:”https://rxquette.co/wp-admin/admin-ajax.php”}; var wpstg = {“nonce”:”0ba6cec874″};
// // Wait for the DOM to load completely
// document.addEventListener(“DOMContentLoaded”, function () {

// // Event delegation: Attach event listener to a parent element
// document.body.addEventListener(‘click’, function(event) {

// // Check if the clicked element is a country link (within the countries block)
// if (event.target && event.target.matches(‘.disclosure__item a’)) {

// event.preventDefault(); // Prevent the default link behavior

// // Get the country code from the ‘data-value’ attribute
// var countryCode = event.target.getAttribute(‘data-value’);
// console.log(“Country code selected: ” + countryCode); // Log the selected country code

// // Create the AJAX request
// var xhr = new XMLHttpRequest();

// // Correctly embed the admin-ajax.php URL using PHP
// //var ajaxUrl = “”;
// var ajaxUrl = “/development/wp-admin/admin-ajax.php”;

// // Make the AJAX call, passing the country code as a parameter
// xhr.open(‘GET’, ajaxUrl + ‘?action=set_currency_by_country&country_code=’ + countryCode, true);

// xhr.onreadystatechange = function() {
// if (xhr.readyState == 4 && xhr.status == 200) {
// console.log(‘Currency updated to: ‘ + xhr.responseText); // Optional: Log the server response
// }
// };

// xhr.send();
// }
// });

// });

//——————BEGIN———————Country change currency selector———–BEGIN—————
// Wait for the DOM to load completely
document.addEventListener(“DOMContentLoaded”, function () {

// Event delegation: Attach event listener to a parent element
document.body.addEventListener(‘click’, function(event) {

// Check if the clicked element is a country link (within the countries block)
if (event.target && event.target.matches(‘.disclosure__item a’)) {

event.preventDefault(); // Prevent the default link behavior

// Get the country code from the ‘data-value’ attribute
var countryCode = event.target.getAttribute(‘data-value’);
var countryName = event.target.textContent || event.target.innerText;
console.log(“Country code selected: ” + countryCode + ” Name: ” + countryName); // Log the selected country code

var currencyCode = GetCurrencySymbols(countryCode);

// Construct the URL to switch the currency based on the selected currency
var currentUrl = window.location.href.split(‘?’)[0]; // Get the current URL without query string
var newUrl = currentUrl + ‘?currency=’ + currencyCode; // Add the currency parameter
localStorage.setItem(‘selected_country_code’, countryCode);
localStorage.setItem(‘selected_country_name’, countryName);
localStorage.setItem(‘selected_currency’, currencyCode);
// Find the “Your country” button and replace the text
var countryButton = document.querySelector(‘.country_popup_full .elementor-button-text’);

if (countryButton) {
countryButton.textContent = countryName + ” / ” + currencyCode; // Update text with the country name
}
// Redirect the user to the new URL with the currency change
window.location.href = newUrl;
}
});

});

//—————–END———————-Country change currency selector—————–END———

//——————BEGIN———————Country change currency Text change———–BEGIN—————
document.addEventListener(“DOMContentLoaded”, function () {

// Add a delay (in milliseconds)
setTimeout(function() {
// Ensure the country is available (from the localized PHP variable)
var countryName = localStorage.getItem(‘selected_country_name’) !== ” && localStorage.getItem(‘selected_country_name’) !== undefined && localStorage.getItem(‘selected_country_name’) !== null ? localStorage.getItem(‘selected_country_name’) : userCountry;
var currencyCode = localStorage.getItem(‘selected_currency’) !== ” && localStorage.getItem(‘selected_currency’) !== undefined && localStorage.getItem(‘selected_currency’) !== null ? localStorage.getItem(‘selected_currency’) : GetCurrencySymbolsByCountryName(countryName)

console.log(“Set Country code entered: ” + localStorage.getItem(‘selected_country_code’)); // Log the selected country code
console.log(“Set Country name entered: ” + localStorage.getItem(‘selected_country_name’)); // Log the selected country name
console.log(“Identified Country: ” + userCountry); // Log the selected country code
//console.log(“Identified Currency: ” + localStorage.getItem(‘selected_currency’)); // Log the selected country code
//console.log(“Calculated Currency: ” + GetCurrencySymbols(countryName)); // Log the selected country code

if (typeof countryName !== ‘undefined’ && countryName !== ”) {
//console.log(“Country code set: ” + countryName); // Log the selected country code

// Find the “Your country” button and replace the text
var countryButtons = document.querySelectorAll(‘.country_popup_full .elementor-button-text’);

if (countryButtons.length > 0) {
countryButtons.forEach(function(button) {
button.textContent = countryName + ” / ” + currencyCode; // Update text with the country name
});
}
}
}, 100); // Delay of 1000 milliseconds (1 second)

});

function GetCurrencySymbols($country){
//console.log(“GET Country: ” + $country); // Log the selected country code
// Switch case to determine the currency based on the country code
switch ($country) {
case ‘GB’:
currencyCode = ‘GBP’; // United Kingdom
break;

case ‘US’:
case ‘CA’:
case ‘MX’:
case ‘CO’:
case ‘AR’:
case ‘BR’:
currencyCode = ‘USD’; // US, Canada, and other America continent countries
break;

case ‘RO’:
currencyCode = ‘RON’; // Romania
break;

case ‘DE’:
case ‘FR’:
case ‘IT’:
case ‘ES’:
case ‘NL’:
case ‘SE’:
case ‘CH’:
case ‘FI’:
case ‘DK’:
currencyCode = ‘EUR’; // Europe (example for a few countries)
break;

default:
currencyCode = ‘EUR’; // Default to EUR for other countries
break;
}
//console.log(“GET currency by Country: ” + currencyCode); // Log the selected country code

return currencyCode;
}

function GetCurrencySymbolsByCountryName(country) {
let currencyCode;

switch (country) {
case ‘United Kingdom’:
currencyCode = ‘GBP’; // United Kingdom
break;

case ‘United States’:
case ‘Canada’:
case ‘Mexico’:
case ‘Colombia’:
case ‘Argentina’:
case ‘Brazil’:
currencyCode = ‘USD’; // US, Canada, and other America continent countries
break;

case ‘Romania’:
currencyCode = ‘RON’; // Romania
break;

case ‘Germany’:
case ‘France’:
case ‘Italy’:
case ‘Spain’:
case ‘Netherlands’:
case ‘Sweden’:
case ‘Switzerland’:
case ‘Finland’:
case ‘Denmark’:
currencyCode = ‘EUR’; // Europe (example for a few countries)
break;

default:
currencyCode = ‘EUR’; // Default to EUR for other countries
break;
}

return currencyCode;
}

//——————END———————Country change currency Text change———–END————— window.onload = function() {
jQuery(function($) {
$(‘select[name=”attribute_pa_size”]’).find(‘option:first’).text(‘Select Size’);
$(‘select[name=”attribute_pa_color”]’).find(‘option:first’).text(‘Select Color’); // if needed for other attributes
});
};
.woocommerce-breadcrumb{
display:none!important;
}img#wpstats{display:none}.woocommerce-product-gallery{ opacity: 1 !important; }.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}Skip to content

Main Menu
ArchiveFW25 ShowFW25Le Bain de SirènesSS25The HolidayShopDressesTopsBottomsJackets and CoatsPressContact

€0

0
Cart

Flyout Menu
ArchiveFW25 ShowFW25Le Bain de SirènesSS25The HolidayShopDressesTopsBottomsJackets and CoatsPressContact

€0

0
Cart

Please select your country

Cum se ajunge la RXQUETTE?