christinajoujou
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Blocks] WC Gutenberg installed but not available in pickerI’m using WooCommerce blocks Version 1.4.0 and Gutenberg Version 5.3.0 on WordPress version 5.1.1.
When I go to a Page and click on Add Block I don’t get the Woocommerce block as shown on this image https://ps.w.org/woo-gutenberg-products-block/assets/screenshot-5.png?rev=2027349.
Please help…
@verheilen yes!!! It works!!! Thanks a lot!!!
Hi Rodica,
Thanks for your reply. I’ve tried deactivating all plugins and as soon as I activate Orbit Fox and only Orbit Fox it stops working.
Here are some screenshots:
1. https://drive.google.com/file/d/135sK39qIDIpZVylPAVuLR2zqIl-Ps-xE/view?usp=sharing
2. https://drive.google.com/file/d/1zjM4dl2qWRFVAvpVj-8shPQwViv2GCQE/view?usp=sharingForum: Themes and Templates
In reply to: [Hestia] Problem with header on pages except HOMEI just want to get rid of the blue banner/header. > I guess you mean the black navbar? I don’t see anything blue…
Ok, so the problem I see is that if you don’t want the navbar, we can make it transparent, but the menu will still show which means it will overlay the rest of the page when scrolling…
I don’t see the initial problem you pointed out about the bit of the content not being shown.
Forum: Themes and Templates
In reply to: [Hestia] Problem with header on pages except HOMEIf you want, send me a link to your site and I’ll have a look…
Forum: Themes and Templates
In reply to: [Hestia] Change Navbar ColorSo, navbar changed the background color on desktop but not on mobile?
To change the menu color text to white it would be
.navbar-nav{
color:#ffffff;
}Can you send me the link to your website so I can have a look.
Forum: Themes and Templates
In reply to: [Hestia] Help on footer copyright informationNo problem. Just remember that you will have to do it again after every theme update. ??
Forum: Themes and Templates
In reply to: [Hestia] Problem with header on pages except HOMEHave you tried adding Padding or Margin to the body/next section?
Forum: Themes and Templates
In reply to: [Hestia] 4 Features on one lineGo to Appearance > Customise > Additional CSS and add the following:
@media (min-width: 992px)
.col-md-4{
width:25%;
}Forum: Themes and Templates
In reply to: [Hestia] Add Additional Features Section on Front PageCheck here https://docs.themeisle.com/article/681-how-to-add-a-custom-section-to-hestia
Go to the Hestia lite section and follow instructions.
And here are the hooks locations https://demo.themeisle.com/hestia-pro/hook-locations/
Forum: Themes and Templates
In reply to: [Hestia] Change Navbar ColorGo to Appearance > Customise > Additional CSS and add the following:
.navbar{
background-color:#000000;
}Just change #000000 for the color you want.
Yeah, rollback didn’t work for me either…
Forum: Themes and Templates
In reply to: [Hestia] Help on footer copyright informationAre you using hestia theme?
If so…you need to hardcode it as follows:
COPYRIGHT
class-hestia-footer.php
line 128
public function bottom_footer_content() {
$hestia_general_credits = get_theme_mod(
‘hestia_general_credits’,
sprintf(
/* translators: %1$s is Theme Name, %2$s is WordPress */
esc_html__( ‘%1$s | All rights reserved.’, ‘YourCompanyName’ ),
esc_html__( ‘© YourCompanyName 2019’, ‘YourCompanyName’ ),
/* translators: %1$s is URL, %2$s is WordPress */
sprintf(
‘%2$s‘,
esc_url( __( ‘https://themeisle.com’, ‘hestia’ ) ),
‘ThemeIsle’
)
)
);- This reply was modified 5 years, 10 months ago by christinajoujou.