Discussion on Flora - Responsive Creative WordPress Theme

Discussion on Flora - Responsive Creative WordPress Theme

By
Cart 1,641 sales
Well Documented

Wyde supports this item

Supported

1368 comments found.

Just updated to most recent version, and the google maps block is not loading

My apologies! There seems to be an issue with the Google Maps when the AJAX Page is enabled. Thank you for reporting this issue. It will be fixed ASAP.

In the meantime, you may need to disable the AJAX Page under Theme Options -> AJAX Page to work around this issue.

so I disabled AJAX and the entire site didn’t load.

I’m sorry but I’ve never seen this issue before. Everything seems to be working fine on our demo sites that are also using the latest version of the Flora theme. Please ensure that you’ve updated all bundled plugins to the latest update too.

Also, there may be plugin conflicts on your site. Try to deactivate your plugins to see if it works.

If it still doesn’t work, you may need to send me your web address so I can check it.

Guys how can i donwload the past version? The 1.7 broke my site and i loose all my customizations.

My apologies, there are a lot of changes in the latest update. Thank you for reporting this issue. We’re working on this and will release a bug fix ASAP!

Hello, I have a very URGENT issue with the Flora Theme.

I’m using version 1.6.4 with Woocommerce 5.0.0 and WooCommerce Stripe Gateway 4.9.0.

I’ve found that when Stripe need to confirm payment intent (i.e. when bank require 3-D Secure or something similar) the popup with the validation is not showned. So user remain in the check-out page and the payment process is blocked.

I’ve already tried to disable all the plugins and to use the original theme (instead of my version with some customization) but the issue is the same. Tried also in incognito mode with all browser plugins and add-ons disabled.

Nothing is logged in JS console. While in Whoocommerce log with Stripe debug enabled we see just that there is a pending athentication for the order:
2021-03-07T10:37:28+00:00 DEBUG
====Stripe Version: 4.9.0====
====Start Log====
Stripe PaymentIntent xxxx requires authentication for order 22130
====End Log====

Then I’ve tried to use the Storefront theme and everything works fine.

To be more clear, a popup like this will be generated during checkout: 2021-03-07-11-37-37-Window

When I’m using your theme this popup is not opened and the user is locked in the checkout page.

This is preventing us to complete checkout for all customers that use bank that require security improvements like 3-D Secure and obviously is a huge problem (aka… we are loosing money!).

Thanks in advance for your help

Hello, thanks again for the quick fix!

I confirm that the issue with link button on price list, footer and logo size are fixed.

There remains the issue of the loss of settings after upgrade (occurs both by upgrading from 1.6.4 to 1.7.1 and from 1.7 to 1.7.1). I fixed this by exporting and re-importing settings but it’s probably in your best interest to fix this bug for other users that will upgrade as well.

Have a nice day! Fabio

Vedo solo un problema tecnico nelle pagine di Woocommerce: il margine / riempimento a destra è più lungo che a sinistra. Ho cercato di capire perché ma sto ancora indagando.

test

Indeed! Thank you for reporting this issue. It will be fixed in the next update.

Hi, I want to buy this skin and install one page version – https://wydethemes.com/flora3/

After carefully reviewing the skin I have the last question:

After I install a skin, will I be able to instantly install exactly that demo od the one page parallax, so that I change images and texts afterwards (close some sections) to finish the website faster?

I would appreciate a prompt answer

Thank you

I need answers ASAP!

My apologies for the late reply!

1. You can to add the following CSS snippet into Appearance -> Customize -> Additional CSS to change the maximum height of the logo:

#header-logo img {
  max-height: 75%;
}

2. The Favicon in the Theme Options is only available for the old version of WordPress. If you’re using WordPress 4.3 or greater, you can set the Favicon under Appearance -> Customize -> Site Identity. You will find more details here: https://wordpress.org/support/article/creating-a-favicon/

3. That’s in the sliding sidebar under Appearance -> Widgets. You will find that widget in the Sliding Bar section.

4. You can translate the theme by using POEdit or installing the Loco Translate plugin ( https://wordpress.org/plugins/loco-translate/ ) so you can change any static words in the theme into another language.

5. Please ensure that you’ve setup the correct Google Maps API key under Theme Options -> Google Maps. Also, you have to enable the Maps JavaScript API under APIs section in your Google Cloud Console. You will find more details on how to create a Google Maps API key here: https://developers.google.com/maps/documentation/javascript/get-api-key#key

Hi, I am working on “Flora One Page theme” and when I try it on mobiles, the dimension doesn’t stay fix. Is there an option to mantain a minimum format on mobiles?

Would you mind giving me your web address so I can check it? If it requires a login, you can send me the credential through the contact form on our profile page: https://themeforest.net/user/wyde#contact

Hi, I would like to change the font size for the body of my blog articles (only in the articles). How can I change it with custome css please ? Thanks a lot for your help :)

My apologies for the late reply!

You can add the following CSS snippet into Appearance -> Customize -> Additional CSS to change the font size for the body of the blog articles:

.entry-content {
    font-size: 18px;
}

Also, here’s for the excerpt of the articles:

.entry-summary {
    font-size: 18px;
}

Hello, I would like to know if there is a way to delete the writing ””Currently browsing category-blog-name” and live just the title of the category? Example https://www.valentinalombardi.com/category/lifestyle/

Thanks, Giada – Giaco studio

You can add the CSS snippet below into Appearance -> Customize -> Additional CSS to hide it:

.archive.category .subtitle {
    overflow: hidden;
    text-indent: -99999999px;
}

.archive.category .subtitle strong {
    position: absolute;
    left: 0;
    text-indent: 0;
    width: 100%;
}

I would like to know if there is a quick & easy way to add quantity field to the woocommerce shop page?

My apologies for the late reply!

You will need to add the following PHP code into functions.php in your child theme to add a quantity field to the shop page: /** * Adds a quantity field before the add to cart button on the shop page. */ function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) { if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) { $html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">'; $html .= woocommerce_quantity_input( array(), $product, false ); $html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>'; $html .= '</form>'; } return $html; } add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 ); And then add the CSS snippet below into Appearance -> Customize -> Additional CSS to style the quantity field and the add to cart button:

.products li figure .cart {
    align-items: flex-end;
    bottom: 10px;
    display: flex;
    justify-content: flex-start;
    height: 45px;
    left: 10px;
    right: 10px;
    margin: 0;
    padding: 0;
    position: absolute;
}

.products li figure .cart .quantity {
    flex: 1 1 15%;
    height: 100%;
    overflow: hidden;
    max-width: 15%;
}

.products li figure .cart .quantity input {
    height: 100%;
    width: 100%;
}

.products li figure .cart .button {
    flex: 1 1 80%;
    height: 100%;
    left: auto;
    right: auto;
    top: 0;
    margin: 0 0 0 auto;
    position: relative;
    max-width: 80%;
}

Hi, I’m trying to make your theme WCAG / AODA compliment but all icons are using tags. Can you let me know where social-icons in the footer are located? I want to replace with

Thank you

The social icons are generated by the PHP function called ‘wyde_social_icons’ in ‘inc/custom-functions.php’ in the theme folder.

However, editing that function in the theme folder directly is not recommended. Your changes will be lost when you update the theme.

We would recommend editing the footer template in your child theme instead.

Here’s a quick guide:

1. Copy the footer template file which you’d like to edit, for instance, ‘footer-v1.php’ from the theme folder ‘flora/templates/footers/’ to your child theme ‘flora-child-theme/templates/footers/’.

2. Edit that template file in your child theme to replace the ‘wyde_social_icons();’ with your custom function that generates the social icons.

Hi, for support can I write here or there is a special panel where I can open tickets?

My problem is that I imported the Main demo and the only page that hasn’t been imported is the Home, the one i need the most.

Please let me know.

Regards, Giada – Giaco studio

Thank you so much for your help. I fixed the problems!

Hi, in the homepage I would like to show only the latest 3 blog articles. I use the Blog post element, I set 3 articles per page but is shown all of them. How can I do what I need?

Thanks, Giada

My apologies for the late reply!

If you set your blog page as the Posts page under Settings -> Reading. The Blog Posts element and other content elements on that page will be removed and replaced by the recent posts on your site. You will need to set the number of posts under Settings -> Reading -> Blog pages show at most. Also, you can change other blog settings under Theme Options -> Blog.

hi, i try to put this on my website but it says it not valid i go to https://mrsippyaus.myshopify.com/admin and put upload theme and it not let me. please help me

Looks like you are using Shopify.

However, the Flora theme is a WordPress theme and is only for WordPress websites. It couldn’t install on the Shopify.

You will need to install a WordPress site on your web host. Here are the instructions on how to install WordPress:

https://wordpress.org/support/article/how-to-install-wordpress/

Also, you can find the instructions on how to install the theme in the documentation: https://wydethemes.com/flora/documentation/#installation

I need to convert it to shopify, can u make it work for shopify otherwise it won’t work

We are sorry but WordPress theme is different from Shopify theme. It couldn’t work with Shopify and you couldn’t convert it to Shopify theme, as you can see in the link below: https://www.quora.com/Do-WordPress-themes-work-on-Shopify

We suggest to use WordPress instead of Shopify, it also comes with WooCommerce so you can create an e-commerce website like Shopify.

Hello Team Flora! Big fan of your theme! I want to create a row with two columns that each has a different color. I’ve tried everything but I keep getting padding/frame on the right side of the right column, and left side of the left column. Can you help? Many thanks in advance

You need to set the Padding Size under the Column Settings to No Padding to remove the padding from the left and the right sides.

Hello,

We nought the theme Flora. and first i want to say i love this theme it works great and its easy.

i Tried to do some changes on the contact form(colors of text in CSS-wpbakery) and now i have some issues. the auto fill gives a white bar and the underline dissapears. also links are not yellow anymore. is there an easy fix to just set the css of the contact form to default theme settings?

Thanks!

I guess that you’ve changed the Text Style in the row or column settings so it changes all content elements in that row/column.

You may need to put the contact form into different row so the text color setting won’t affect it.

If this doesn’t work, you may need to send me your web address so I can check it.

Hi Wyde, good morning! I have a question, what is the criterion of the product search result? I doubt if it is due to alphabetical order or insertion order. Can you answer that for me? Thank you!

By default, the product search results are sorted by relevance when you search through a Product Search widget from WooCommerce.

However, you can change the sorting option at the top of the search results if you’d like.

Hi Guys, your theme is great! I really like it a lot! i have a problem with rank Math plugin. after installing it, I can’t see the setting on the page. I see the rank math entry in flora tjeme option, but if I click it’s all blank, all white

Thank you for reporting this issue. We will look into this and fix it ASAP!

Hi Wyde, good morning! I’ve updated the latest version of the theme on 3 sites and realized that in all of them it is no longer possible to change the images that are in the “theme options”> “Navigation” menu. The same thing happens when I try to put a new field in the contact information in the same “Navigation” menu. In all other tabs of “Theme Options”, “footer, etc.” it is working normally. I tried both PHP 7.4 and 7.3 to see if that was the problem. But it did not work. I urgently need to change the website logo and I can’t do it anymore. Help me please!

Hi Wyde, that’s right, I had to install the previous version of WP to work. I will download this update and give you feedback. I am the one who thanks you. Cheers!

This issue has been fixed in the latest update of Flora theme (1.6.4) that was released a few hours ago.

After you update the theme, you will see a notification message with the link to update Wyde Core plugin that comes with the new version of Redux Framework so it will be compatible with the new version of WordPress.

You can find more details in the changelog: https://themeforest.net/item/flora-responsive-creative-wordpress-theme/12038776#item-description__update-log

Worked perfectly. You are the man! Thank you

Hi !! Suddenly OnePage option not working on Desktop, only on Tablet and Phone.

Could you help me?

Would you mind giving me your web address so I can check it?

The Testimonials don’t seem to be working. How do I add a new one or edit an existing testimonial?

You can add a new one in the Testimonials section on your WordPress admin. If it doesn’t work, please ensure that you’ve updated the theme and all bundled plugins to the latest update. You can find more details in the changelog: https://themeforest.net/item/flora-responsive-creative-wordpress-theme/12038776

Thanks for the reply. I did a little troubleshooting of my plugins and found that it was RankMath that was preventing me from adding the info to a new testimonial. All good now.

Thank you for getting back to me and I’m so glad to hear it has been solved!

HI!!

Slider revolution doesn’t work. It ask me for upgrade, but without purchase code. I can’t do it.

So, I doesn’t have my hero slider on the home page.

Thanks!!

Great! Glad to hear it has been solved :)

Hi!! Against the Slider Rev give me problems. It’s needed upgrade… with the theme licence does not work. Could you help me!!??

Could you please let me know more details about this issue? Actually, you can normally use the Slider Revolution 6.2.15 with the latest update of the theme without any problems. The new update of that plugin will be included in the next update of the theme.

However, if you would like to update it right now. Here are the instructions:

1. Navigate to Plugins screen on your WordPress admin.

2. Deactivate then delete the Slider Revolution plugin.

3. After you delete it, you will see a notification message with the link to install it.

4. Click on the link “Begin installing plugins” to install the new Slider Revolution.

Hi – we are experiencing issues with page loads. The users see the loader animation but once that completes the page renders blank. They need to hit reload once or multiple times before it renders. The issue can be reproduced by me on two different cell phones (not responsive mode on a dev tool) after clearing the browser cache or in private mode.Any suggestions?

My apologies for the delayed reply!

I’ve never seen this issue before. There may be plugin conflicts on your site. Try to deactivate your plugins one by one to see if it works.

If it doesn’t work, you may need to send me your web address so I can check it.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey