jazzu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Translating page number URLHi @perezdans !
I did what you said. The URL is correct when I hover over the page number, but now, it just sends me to the homepage.
Forum: Fixing WordPress
In reply to: Translating page number URLHi @perezdans !
Thank you for your reply.
I tried adding it via code snippets. The URL, when I hover over the page numbers in the shop displays correctly. Screenshot
However, if I click the page, it leads to some weird page with only like 5% of some random product. The URL changes too. You can see that here.
Kind regards
Forum: Fixing WordPress
In reply to: Translating page number URLHi @perezdans !
Thank you for replying.
I added the code to functions.php. Changed it to what I want it to be, but it didn’t do anything.
function my_change_rewrite_base() { global $wp_rewrite; $bases = array( 'author' => __('Avtor'), 'search' => __('Iskanje'), 'comments' => __('Komentarji'), 'pagination' => __('Stran') ); foreach ($bases AS $key => $base) { $wp_rewrite->{$key} = remove_accents(mb_strtolower($base)); } if ( ! get_option('my_change_rewrite_base_flushed', false) ) { flush_rewrite_rules(); update_option( 'my_change_rewrite_base_flushed', time()); } } add_action('init', 'my_change_rewrite_base');After that I tried with Code Snippets plugin and got this error:
The snippet has been deactivated due to an error on line 2: Cannot redeclare function my_change_rewrite_base.Kind regards
Forum: Fixing WordPress
In reply to: Translating page number URLHi!
No, everything else is working great. I have the latest version of WordPress.
I tried to find the word “Page” in Loco translate too. I was searching in theme and plugins files, but no luck.
Kind regards
Forum: Fixing WordPress
In reply to: Translating page number URLHi @hitendra-chopda !
Thank you for your reply. One problem – the site is set to Slovenian.
Kind regards
Forum: Plugins
In reply to: [WooCommerce] Hide other shipping methods if free shipping is enabledHello @paulostp !
Thank you for your reply and for letting me know that I’m not just missing something.
I’ll try to solve it somehow.
Thank you for your help!
Kind regards
Forum: Plugins
In reply to: [WooCommerce] Hide other shipping methods if free shipping is enabledHi @csnlima !
Thank you for your reply. I solved the first issue through the link you provided. Now, every time an order exceeds 100 €, the only shipping options are Local pickup and Free shipping.
For the second issue, I don’t understand what I’m supposed to do. I see that the guide is showing that there is a Free Shipping class. I don’t have a free shipping class. I have two shipping classes – one called “Saunas” (which I need to charge for delivery, even if order exceeds 100 €) and “Smaller things”, where we charge 5 € for delivery. For example, if the order exceeds 100 €, I need the shipping to be free. However, if there is a sauna bought, I’d still need the delivery to be 100 €. And for some reason, if anyone would buy more than 1 sauna, I’d still need to have the number of saunas * 100 €. I have that set in the options, so the only problem I have is with the free shipping.
Here you can see shipping methods I currently have enabled.
Here you can see the settings I have for Flat rate shipping.
Kind regards
Forum: Plugins
In reply to: [Price Per Unit For WooCommerce] Changing how the price is displayedHi @cartflows !
Sorry, I didn’t see the email before.
Yeah, I figured as much. I fixed the issue by recreating the Terms and conditions in default WordPress editor without Elementor. It displays normally now.
Kind regards and thank you for your help!
Forum: Plugins
In reply to: [WooCommerce] Adding a banner to a specific product in the main shop pageHi @daniyalahmedk !
Thank you for your reply. I just want to ask, in case I didn’t express myself correctly. Doesn’t the content-single-product.php contain the code for specific products – like directly products, where you write the description of the product, add images, etc.?
Because I want to add a banner in the main shop page, where products are listed.
HERE you can see, what it looks like when I just changed the thumbnail. I want that red banner to be angled by 45°, at the edges of the actual product wrap – you can see what I mean HERE.Kind regards
Hi!
Yeah, I know I should write to the plugins support, but I was wondering, if there is a way with only Elementor to make the images take me to a custom URL.
Kind regards
Hello.
Yeah, I understand I could make a template, but that’s not really possible here, since all the products are already on the site. I’ll try to find a plugin.
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Custom Forgotten Password pageI actually fixed it already. The problem was that I had custom login and registration forms made with the Forminator plugin. I tried another plugin for overriding WooCommerce’s login and registration page, and now it works just like it should.
Thank you and kind regards
Forum: Plugins
In reply to: [WooCommerce] My Account redirects me to homepageHey @margaretwporg !
Actually there wasn’t a bug at all, it was a mistake I made (don’t even remember when).
The thing is, I downloaded the plugin, because I have 2 tabs in the main menu, but I only want one of them to be shown, depending on the login status. The tabs are My account and Login.So, when you are logged out, you only see Login/Register tab, and once you’re logged in, you have the My account tab.
For some reason, I restricted the My account tab not only in the main menu, but in general. So, I went ahead and only applied it to the menu, deleted the general restriction and made some redirections with Redirect plugin.
Everything works the way it’s supposed to now.
Thank you for your time