Discussion on Claue - Clean and Minimal Magento Theme

Discussion on Claue - Clean and Minimal Magento Theme

Cart 5,080 sales
Recently Updated
Well Documented

Arrow-Theme supports this item

Supported

This author's response time can be up to 1 business day.

2390 comments found.

Hi We have issue in version 21.4, could you help or direct us asap? Thanks in advance. 1 exception(s): Exception #0 (Magento\Framework\Exception\LocalizedException): Please upgrade your database: Run “bin/magento setup:upgrade” from the Magento root directory. The following modules are outdated: Smile_ElasticsuiteCatalog data: current version – none, required version – 1.6.1 Smile_ElasticsuiteCatalogRule data: current version – none, required version – 1.0.0 Smile_ElasticsuiteSwatches data: current version – none, required version – 0.0.1 Smile_ElasticsuiteVirtualCategory data: current version – none, required version – 1.4.1

Exception #0 (Magento\Framework\Exception\LocalizedException): Please upgrade your database: Run “bin/magento setup:upgrade” from the Magento root directory. The following modules are outdated: Smile_ElasticsuiteCatalog data: current version – none, required version – 1.6.1 Smile_ElasticsuiteCatalogRule data: current version – none, required version – 1.0.0 Smile_ElasticsuiteSwatches data: current version – none, required version – 0.0.1 Smile_ElasticsuiteVirtualCategory data: current version – none, required version – 1.4.1
#1 Magento\Framework\App\FrontController\Interceptor->Magento\Framework\Interception\{closure}() called at [vendor/magento/module-page-cache/Model/App/FrontController/BuiltinPlugin.php:71]
#2 Magento\PageCache\Model\App\FrontController\BuiltinPlugin->aroundDispatch() called at [vendor/magento/framework/Interception/Interceptor.php:135]
#3 Magento\Framework\App\FrontController\Interceptor->Magento\Framework\Interception\{closure}() called at [vendor/magento/framework/Interception/Interceptor.php:153]
#4 Magento\Framework\App\FrontController\Interceptor->___callPlugins() called at [generated/code/Magento/Framework/App/FrontController/Interceptor.php:23]
#5 Magento\Framework\App\FrontController\Interceptor->dispatch() called at [vendor/magento/framework/App/Http.php:116]
#6 Magento\Framework\App\Http->launch() called at [generated/code/Magento/Framework/App/Http/Interceptor.php:23]
#7 Magento\Framework\App\Http\Interceptor->launch() called at [vendor/magento/framework/App/Bootstrap.php:264]
#8 Magento\Framework\App\Bootstrap->run() called at [pub/index.php:30]

Hi,

Please try to run command: php bin/magento setup:upgrade to resolve that issue.

Best regards

Hi,

another issue found. Using OneStepCheckout is not possible to place an order with Paypal. Disabling OSC order is placed normally.

Message: Property “DisableTmpl” does not have accessor method “getDisableTmpl” in class “Magento\Quote\Api\Data\PaymentInte rface”

How to fix ?

Hi,

Please download latest version of the theme and update for your site to fix that issue.

Best regards

Hi AHT, I want to report 2 issues: 1. The increase/decrease qty buttons on PDP not working (Claue 2, magento 2.4.4)

2. On the One step checkout:

step 1. Entering an email for an existing customer will show the password field for the customer login

step 2. Enter the correct password, then click the Login button. It will show the error: “Invalid login or password.”

Debug: open the developer tool, check the ajax login URL: domain.com/customer/ajax/login check payload, you can see the field password is empty, it should show the password here.

Sorry for missing your comment, we will check it.

Hi AHT, There is an issue on PDP: if a product has empty description, it will show error in the Product Details tab. “We’re sorry, an error has occurred while generating this content.”

To fix this issue, check if product has description or not before getContentByShortcode: In file app/code/MGS/Fbuilder/Block/Catalog/Product/View/Description.php

Change $productDescription = $this->_panelHelper->getContentByShortcode($product->getDescription()); $product->setDescription($productDescription); to

if ($product->getDescription()) { $product->setDescription($this->_panelHelper->getContentByShortcode($product->getDescription())); }

Hope you apply this fix in the next release.

Thank you for your report, we will check and update it.

Hope you won’t missed my 4 comments above and a comment below.

Hi, We updated the whole thing in 2.1.5

Hi, I have this error, when i try to open fbuilder

302 Found http://127.0.0.1/fbuilder/index/active/referrer/aHR0cDovLzEyNy4wLjAuMS8%2C/

What could it be?? Thank!!

Hi,

Please open a support ticket here: https://arrowhitech.ticksy.com/

Our developer will check for you.

Best regards

It looks like you missed my comment about some issues on magento 2.4.4 2 weeks ago:

One step checkout page:

1. The shipping address form not rendering.

To resolve this issue and similar issue if exists: update the fix to MGS_OSCheckout module like magento core has been done – Fix HTML tags not properly nested/closed: https://github.com/magento/magento2/commit/3197b50fd46491ab07cccfeabb289cde0633d79b

I’ve checked all html files in MGS_OSCheckout module, the following files (5 files) should be updated: – app/code/MGS/OSCheckout/view/frontend/web/template/address/billing/actions.html

- app/code/MGS/OSCheckout/view/frontend/web/template/address/billing/details.html

- app/code/MGS/OSCheckout/view/frontend/web/template/address/billing/form.html

- app/code/MGS/OSCheckout/view/frontend/web/template/address/shipping-address.html

- app/code/MGS/OSCheckout/view/frontend/web/template/order-comment.html

2. The mini cart show incorrect information: once customer add an item to cart, the mini cart show no item: “You have no items in your shopping cart”

To fix this issue, implement the same like what we did on issue 1: Fix HTML tags not properly nested/closed.

Here is the diff file for this: https://www.diffchecker.com/Tych4jwi

3. The billing section not rendering.

Solution: In app/code/MGS/OSCheckout/view/frontend/web/js/view/billing-address.js, change: this._super().observe({ isAddressSameAsShipping: true, }); to this._super();

For the issue 2, the file should be updated is app/design/frontend/Mgs/claue/Magento_Checkout/web/template/minicart/content.html

Updated

Hi AHT,

There is an issue with Claue 2.1.4 on magento 2.4.4: When a category has bundle product(s) which does not has thumbnail image, the category page will throw the error: Exception #0 (Exception): Deprecated Functionality: basename(): Passing null to parameter #1 ($path) of type string is deprecated in app/design/frontend/Mgs/claue/Magento_Catalog/templates/product/list.phtml line 156

I’ve fixed this issue, here is the diff, hope you apply this change to the next release: https://www.diffchecker.com/Glibm4GP

In the diff I mentioned above, I’ve fixed the issue: Setting for Catalog (General Setting of Category Page and Catalog Search Page): If “Hide Add to Wishlist button” set to “Yes” and “Hide Add to Compare button” set to No and vice versa, the wishlist and compare icons will show together, that means this work incorrectly.

Hi, the theme with demo version, with all features working and in magento version 2.4 and updated Claue theme in version 2.1.4: Is there? I need the theme populated with products, because only then can I try to understand how to make it work.

It’s the fourth client that we’ve used the theme, but it’s always a big challenge to make it work, because we have a great T.i. operating.

P.S.: Excellent theme, but very weak support and support manual.

Hi,

Thank you for your comment.

All features in 2.1.4 work fine on 2.4 And we suggest you to use version 2.4.0 – 2.4.2, which is the most stable working versions so far.

Best regards

There is an issue for Cart, “You have no items in your shopping cart.” is duplicates 3 times check screenshot https://drive.google.com/file/d/1U3EwjjQN8QRoPDN1vJJiAak55kfQByst/view?usp=sharing latest version for 2.4.4

Hi,

Sorry for later reply. Please download latest version of the theme to update for your site to fix that issuse.

Best regards

Do you have plans to support RTL on V2 ? ETA ?

Hi @ArrowHiTech, are you aware that your new update (patch 2.4.4+) is corrupt? After compiling, I got a lot of errors. Can you please check this and fix it soon? Thanks!

It helped a bit, bit I get another issue this time. Just:

An error has happened during application run. See exception log for details.

I still can reach the backend end, except the front end it not working anymore.

In Exception log I see this error:

[2022-06-03T05:03:44.966508+00:00] main.WARNING: Could not add an invalid email address to the mailing queue {exception] (Laminas\\Mail\\Exception\\InvalidArgumentException(code: 0): Email must be a valid email address at /SECRET/public_html/vendor/laminas/laminas-mail/src/Address.php:65)”} []

Are you also aware the the version number in Magento backend still is 2.1.3 and not 2.1.4 ? (MGS > Theme Settings V2.1.3, instead of V2.1.4)

Hi,

Thank you for your report. About send mail issue, it doesn’t seem to be the theme’s bug, please check again.

For theme version, we will check and update it soon.

Best regards

But it happens after updating. Now I am back at 2.1.3 and I do not have the issue. I will wait for the new update.

Hi, We found that Claue 2 doesn’t have store locator functionality, is there any ETA for that extension?

Hello, I reinstalled Magento 2.1 with Magento 2.4.3 and installed Claue 2. After reinstalling the theme is not activated

Hi,

Sorry for missing your comment. Please open a support ticket here: https://arrowhitech.ticksy.com/ our developer will check for you.

Best regards

Hi ArrowHiTech, There is an issue with minicart: Unable to scroll down into bottom of the minicart. To reproduce this issue: - Mini cart type: dropdown - Enable Paypal payment method - Adding 5 products to cart, then hover to the minicart and try to scroll down into the bottom. Here we unable to scroll down into bottom and unable to see the Paypal logo.

https://i.imgur.com/vFj2Chk.png

If you could take a look that would be good. Thanks

When we can expect the new version release of this theme …?

Hi ArrowHiTech,

I want to report an issue related to MGS_Protabs module. This setting does not work: Admin -> MGS -> [Product tabs] Tabs Settings Accordion tab: “Show as accordion” is Yes and “Show after product information” is No

https://themes.magesolution.com/claue/docs/v2/#:~:text=Accordion%20tab%3A%20%22Show%20as%20accordion%22%20is%20Yes%20and%20%22Show%20after%20product%20information%22%20is%20No

Other issues on magento 2.4.4:

One step checkout page:

1. The shipping address form not rendering.

To resolve this issue and similar issue if exists: update the fix to MGS_OSCheckout module like magento core has been done – Fix HTML tags not properly nested/closed: https://github.com/magento/magento2/commit/3197b50fd46491ab07cccfeabb289cde0633d79b

I’ve checked all html files in MGS_OSCheckout module, the following files (5 files) should be updated: - app/code/MGS/OSCheckout/view/frontend/web/template/address/billing/actions.html

- app/code/MGS/OSCheckout/view/frontend/web/template/address/billing/details.html

- app/code/MGS/OSCheckout/view/frontend/web/template/address/billing/form.html

- app/code/MGS/OSCheckout/view/frontend/web/template/address/shipping-address.html

- app/code/MGS/OSCheckout/view/frontend/web/template/order-comment.html

2. The billing section not rendering.

Solution: In app/code/MGS/OSCheckout/view/frontend/web/js/view/billing-address.js, change: this._super().observe({ isAddressSameAsShipping: true, }); to this._super();

Could you confirm these fixes will be included in the next release? Do you know when (roughly) the new version will be released?

Another issue: increase/decrease qty buttons on PDP not working (Claue 2, magento 2.4.4)

Updated

Hi ArrowHitech,

I want to report 2 issues: 1. MGS > Theme Setting: > Product Detail Page: Show Add to Wishlist link and Show Add to Compare link features does not work.

To fix this issue: In the file app/code/MGS/ThemeSettings/Observer/RemoveBlocks.php, implement to remove block view.addto.wishlist.additional and view.addto.compare.additional

2. MGS > Theme Setting: > Catalog (General Setting of Category Page and Catalog Search Page): Hide Review, Hide Add to Cart button, Hide Add to Wishlist button, Hide Add to Compare button features does not work.

To fix this issue: See how the feature works in app/design/frontend/Mgs/blank/Magento_Catalog/templates/product/list.phtml and implement the similar in app/design/frontend/Mgs/claue/Magento_Catalog/templates/product/list.phtml

Hi,

Thank you for your report. We will update it on next versions.

Best regards

Why all of my 8 tickets / bugs are still not answered fixed ?

Hi ArrowHiTech,

I was upgrade our site to magento 2.4.4, there is some issue with Claue theme, hope you find it useful and adding the fix in the next release:

Issue 1: There are 15 files has error like this: Deprecated Functionality: Optional parameter $meta declared before required parameter $request is implicitly treated as a required parameter in app/code/MGS/Mmegamenu/Model/DataProvider.php on line 21


I know that your developer already know how to fix this issue as you’re posted for a case above some days ago, so I’ll list these files here: app/code/MGS/Blog/Block/Category/Posts.php app/code/MGS/Blog/Block/Post/View.php app/code/MGS/Blog/Block/Posts.php app/code/MGS/Blog/Block/Sidebar.php app/code/MGS/Blog/Model/Category/DataProvider.php app/code/MGS/Blog/Model/Post/DataProvider.php app/code/MGS/Mmegamenu/Model/DataProvider.php app/code/MGS/Portfolio/Block/Category.php app/code/MGS/Portfolio/Block/Portfolio.php app/code/MGS/Portfolio/Block/PortfolioItem.php app/code/MGS/Portfolio/Block/Widget.php app/code/MGS/Portfolio/Model/DataProvider.php app/code/MGS/Protabs/Block/Protabs.php app/code/MGS/Testimonial/Block/Testimonial.php app/code/MGS/Testimonial/Model/DataProvider.php

Issue 2: when searching using instantsearch, and go to instant search page result: website.com/instantsearch/result/?q=bag

It throw error: 1 exception(s): Exception #0 (Exception): Deprecated Functionality: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in app/code/MGS/InstantSearch/view/frontend/templates/search/product/list.phtml on line 74

To resolve this issue: update $pos = $block->getPositioned(); to $pos = $block->getPositioned() ?? ’’;

After resolve this issue, new issue appear: 1 exception(s): Exception #0 (Exception): Warning: Undefined variable $position in app/code/MGS/InstantSearch/view/frontend/templates/search/product/list.phtml on line 74

To resolve this issue: rename all $pos variables to $position in app/code/MGS/InstantSearch/view/frontend/templates/search/product/list.phtml

Thanks.

Hi,

Thank you for your report. Could you send an email to info@magesolution.com? We want to discuss something with you.

Best regards

Hi ArrowHiTech, I’m just sent an email to that email.

Que tal este tema Roupa para mulher portugal acho uma que é uma boa opção para migrar para o tema avato.

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