hemp1111
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: duplicate start rating on single product pagesI tried asking the same question into multiple Elementor communities but they ignore to provide any kind of support…
Forum: Fixing WordPress
In reply to: Refused to apply style from ‘https:/fonts.googleapis.com/css’Hi unfortunately I can’t get an answer from Elementor support seems like they are not answering to the questions anymore.
Forum: Fixing WordPress
In reply to: Refused to apply style from ‘https:/fonts.googleapis.com/css’Hi thank you very much for the help, I asked their support and they told me that they don’t use such code in their theme. I tried by deactivating all of my plugins and I found that the error is no longer there when I deactivate the Elementor plugin and their Rehub framework. When one of these two plugins is activated the error is there, however, they are pretty sure that this error doesn’t come from the Rehub framework. Is there any good solution to this issue?
Forum: Fixing WordPress
In reply to: Refused to apply style from ‘https:/fonts.googleapis.com/css’I’m sorry if I’m breaking the rules but I feel that this forum is much more responsive than their paid support. I haven’t edited any files myself except some codes that aren’t related to the fonts. Once again thank you so much for responsiveness I really appreciate that.
Forum: Fixing WordPress
In reply to: Refused to apply style from ‘https:/fonts.googleapis.com/css’Yeah that’s exactly that, thank you for the super-fast response. I added fonts through my Rehub theme.
- This reply was modified 4 years, 5 months ago by hemp1111.
Forum: Themes and Templates
In reply to: [OceanWP] Is Ocean Extra compatibile with the latest WP update?I contacted Siteground support and they were fixed that for me.
I explored your plugin yesterday and what makes me confused is, 3 hostels are in the same location, the best solution would be if people can search by hostel not by location, can I manage that? Also, each hostel that receives a booking needs to receive an order confirmation email, is that possible via plugin or I need some extra plugins?
Forum: Themes and Templates
In reply to: [OceanWP] I have a problem with URLs caused by Oceanwp tool barHi, thank you very much for taking the time to answer me. I talked about this:
I saw rel canonical tag to the all-products but I want to prevent these pages showing in search, or maybe to completely delete it. Could I place some directives in robots.txt to prevent access to those URLs?Forum: Themes and Templates
In reply to: [OceanWP] Unordered list doesn’t workingYeah, it was the cache issue, thank you once again for your help. Cheers.
Forum: Themes and Templates
In reply to: [OceanWP] Unordered list doesn’t workingI don’t know why but now it doesn’t work, it was worked for some time and now I can’t see the unordered list again.
Forum: Themes and Templates
In reply to: [OceanWP] Unordered list doesn’t workingThank’s it, thank you very much for taking the time to help me. Wish you a wonderful day.
Forum: Themes and Templates
In reply to: [OceanWP] Unordered list doesn’t workingIn the first link are images how it looks in WordPress editor and on the front end https://imgur.com/a/pCYmGZZ
The second link is WordPress text editor and Elementor editor https://imgur.com/a/ZCLKLmJ
So even if I put the unordered list in Elementor as well as in WordPress I can’t see that on the front end.Also maybe you want to know that I’ve designed the single product page myself in Elementor.Hello, thanks a lot for your reply I really appreciate it. I’ve fixed the issue, it’s all about the code which I’ve added trying to speed up my website. I’ve added code trying to fix render blocking CSS and JS but I didn’t do that properly so I messed things up. Thanks again for the reply. Have a wonderful day.
Hi Tony, thank you very much for such a detailed answer, I’m using all in one migration plugin and I built a website exactly as I want it to be, so I could simply export from local on a live server and that’s it right? I’m afraid that my website will be down when I do that and that’s the reason why I asked a question here on WP forum.
Forum: Plugins
In reply to: [WooCommerce] Subcategories are showing with the categories and products.Yes, that’s the link you’ve just shared, but I’ve only changed
add_action( 'woocommerce_before_shop_loop', 'msc_product_loop_start', 40 ); add_action( 'woocommerce_before_shop_loop', ' msc_maybe_show_product_subcategories', 50 ); add_action( 'woocommerce_before_shop_loop', 'msc_product_loop_end', 60 );
to
add_action( 'woocommerce_before_shop_loop', 'msc_product_loop_start', 1 ); add_action( 'woocommerce_before_shop_loop', 'msc_maybe_show_product_subcategories', 2 ); add_action( 'woocommerce_before_shop_loop', 'msc_product_loop_end', 3 );
that can be also found in the comment of that post on GitHub. Now I’m creating a child theme and I’ll copy a function.php file in it.
Thank you for your help actually you helped me a lot.