lailagmelo
Forum Replies Created
-
I see you’re using Elementor.
Navigate to the top of each section you want to make a menu item for, select the element, and then go to the ‘Advanced’ tab. Fill in the CSS ID box with an easy name for the section, such as ‘commodities,’ ‘cargodeals,’ ‘mission,’ ‘platform,’ and ‘plans.’ Here’s an example from my own website:
Then you must change the menu links so they can find the CSS ID, by using #, your menu links should look like this:
https://cf-deals.com/#commodities
You can use any ID you want, as long as they don’t include spaces or special characters.
Forum: Developing with WordPress
In reply to: Looking for assistance in choosing programming strategyAre you using WooCommerce to register the products retrieved by the API?
Forum: Everything else WordPress
In reply to: Problem with the button to delete products in the cartSorry, the CSS I sent was specifically for the button in the float cart, for use in the checkout page you gotta change the selector, like this:
.woocommerce-cart-form__cart-item td.product-remove a.remove {
width: 22px;
height: 22px;
border-radius: 22px;
border: 1px solid #d5d8dc;
text-align: center;
right: 0;
bottom: 20px;
transition: .3s;
}Forum: Installing WordPress
In reply to: With Csv file attributes are not importedDid you export and edit the file, or did you create it from scratch? It seems like your file is missing some columns or that they differ from the standard schema.
You can check the csv schema here:
Forum: Everything else WordPress
In reply to: Export User Tool from codection. – Phone NumberHave you tried using the form builder from Elementor itself, or perhaps WPForms? Create a test page with a form built using one of these other plugins, and then register a test user for this purpose. Afterward, export the CSV again and check if the test user’s cellphone number is correctly exported.
The ‘Female’ part looks weird because WordPress uses PHP to serialize information and record it, and then unserialize it before exporting (or at least that’s how it’s supposed to work).
If you’re also using another plugin to export user data, please let me know.
Forum: Everything else WordPress
In reply to: Export User Tool from codection. – Phone NumberWhat form builder plugin are you using?
Forum: Everything else WordPress
In reply to: Broken ImagesThe JNews Theme comes with several features designed to enhance page loading, including WEBP conversion and lazy loading. Try disabling these features and see if the problem persists.
Additionally, it’s worth checking your Media Library to ensure that the pictures still exist in your files or have been deleted entirely.
Forum: Everything else WordPress
In reply to: Export User Tool from codection. – Phone NumberAre you viewing the CSV file in Excel or Notepad? Excel sometimes misformats columns, causing them to appear as dates or equations. To prevent this, select the column and choose the ‘number’ format type from the dropdown menu at the top of the sheet.
Forum: Everything else WordPress
In reply to: MultisiteWhen using the Multisite feature, your user table is already shared, which simplifies this task compared to managing two separate WordPress instances. However, you’ll still need a plugin to handle individual prices for each product.
Consider using the ‘Subscribers & Members Special Pricing for WooCommerce’ plugin. Before making any purchases, be sure to review the documentation to ensure it meets your specific needs.
Forum: Everything else WordPress
In reply to: Problem with the button to delete products in the cartHello! On my cellphone, it looks normal. Perhaps you could try clearing your browser’s cache for this page?
To edit the button appearance, you can set the style through the “Additional CSS” section of your theme (Appearance > Themes > Customize > Additional CSS)
You can copy paste this code:
.elementor-menu-cart__product-remove {
color: #69727d;
width: 22px;
height: 22px;
border-radius: 22px;
border: 1px solid #d5d8dc;
text-align: center;
overflow: hidden;
position: absolute;
right: 0;
bottom: 20px;
transition: .3s;
}
.elementor-menu-cart__product-remove:hover {
border: 1px solid #d5d8dc;
}This style maintains the button’s current appearance. You can adjust the values to customize it as you prefer. If you’re unsure how to make these changes, just let me know how you’d like it, and I’ll provide you with the updated code.
Forum: Networking WordPress
In reply to: Multisite permalink issueNginx cache is pretty persistent, are you flushing the cache before and after changing the permalinks? Or disable it until you can make sure the permalinks are working as intended.