Discussion on Impreza – WordPress Website and WooCommerce Builder

Discussion on Impreza – WordPress Website and WooCommerce Builder

Cart 119,792 sales
Recently Updated
Well Documented

UpSolution supports this item

Supported

This author's response time can be up to 2 business days.

6358 comments found.

hi, how can I determine the order of items using the grid element with option “Items of the current query (used for archives and search results)”?

Hello,

At the moment there is no such feature available out of the box. WordPress orders posts by date but you can try using 3rd party solutions. Usually, there are plugins almost for everything.

Let us know if you have further questions!

I managed to solve! Just change ordering from the Wordpress panel Appearance -> Customize https://ibb.co/1J1Pyk8

Hello. Will there be a discount on your theme soon?

Hello,

Very likely it will be this fall. Feel free to subscribe to our newsletter to be notified of discounts.

Let us know if you have further questions!

On one of your changelog, you indicated that one can build a page without the need for the page builder. How is thay possible and can I build my upcoming site with just the built in builder without relying on added builder. Also are there new demos coming soon?

Hello,

Yes, it’s possible. Just don’t install any 3rd party builder and you’re good to go. We are working on new demos, so they should be available in the future.

Let us know if you have further questions!

Hello, i want to report a bug that occurs since the new update. Things like the search bar or tabs sections do not work anymore, means if you click on them nothing happens. I cleared the cache, so that’s not the cause. Please have a look at this problem and fix it with a new version. Thanks

Hello,

Please provide us with a relevant URL so we could take a look.

Thanks!

As I can see you’re using some code optimiser that changes scripts order. Go to Theme Options > Advanced and turn OFF the “Move jQuery scripts to the footer”

Let us know if it helped!

Thanks, that helped!

Hi! Did you remove the option for changing column sizes in different breakpoints? (Find the answer. Impreza/ options/ advance)

Hello,

We didn’t remove these options. Please go to Theme Options > Advanced and turn OFF the “Columns Layout via CSS grid” and check again.

Let us know if it helped!

Hi, where can I find information about your Page Builder, Page Blocks, and Content Templates, they look interesting but I am struggling to find info on your site. Can you send me some links to evaluate the purchase?

Hello,

Unfortunately, we don’t have special docs for the Page Builder, but it works as any other builder so it’s quite straightforward. Feel free to try it out on this test drive server: http://themetest.net/impreza/

Page Blocks and Content Template are custom posts. Page Blocks used for repeatable blocks, such as footers, titlebars, sidebars, banners, etc. Content Template used to show post content via predefined layout. You can edit both as any other post using page builders.

Let us know if you have further questions!

hello, does the header search only take place by product title? if I try to search by SKU it doesn’t return any results. Thanks

Hello,

Unfortunately, WordPress doesn’t search for SKU by default. Try using Relevanssi plugin, it should improve things.

Let su know if you have further questions!

I love this theme so I have 15 licenses of Impreza.

I recommend this theme more than anything on the market.

In the latest update 8.3,

Theme Option >> Typography

is going something wrong.

Especially, the setting of “Bottom indent” doesn’t work well on the mobile since I updated into 8.3 .

On the PC view, there is no problems.

Please check “Line height” and “Bottom indent” setting work well or not on mobile.

When I updated the theme, the looks of my websites changed.

It looks like all the Heading typography has more bottom margin.

Please fix this. Thanks.

Hello,

This is a complicated question, a good one for our smart support guys, please create a ticket on the Support Portal: https://help.us-themes.com/ and provide credentials via private reply (URL, admin username, and password)

Thanks in advance!

Hello there! Where can I note some bugs? On checkout page is not visible the “do you have already an account?” message on chrome, and on firefox is also not visible the message for “promo code”. Seems these element stay “behind” the header. Is it possible to fix it? Thanks!

Hello,

Please provide us with a relevant URL so we could take a look.

Thanks in advance!

Hello,

I’ve just updated the theme to version 8.3 as suggested in the wordpress back end update section, I did all the usual procedure, updated core plugin etc. All works fine, apart from when editing back end, on the ‘Design’ tab with Text, Background, Sizes, Spacing etc… the tabs do not open to change settings, when you click each section it just doesn’t open, i’ve noticed it works on the new ‘Edit Live’ option but the usual backend way just doesn’t work – do you know why?

I tried installing the theme again via FTP with the files, but the download seems to be 8.2.1 (downloaded all files, and downloadable files too, both the same), which then messes up some design elements, so reverted back to 8.3.

I know my support has expired but I have been using this theme for years, and it’s my go to theme for everything wordpress, as nothing usually goes wrong, but please can you help with this, I would really appreciate it.

The new live builder is amazing by the way, great for when you just want to quickly change something, spot on! Great work!!

Thanks, Matt

Hello Matt,

it might be a caching issue, please clear all cache and try again. If it won’t help, try a completely different browser.

Let us know how if goes!

Wow, speedy reply!! :)

CACHE!!! How embarrassing it was exactly that, why did I not think of that, thanks for the help.

The new edit live option is really good, well designed, it will certainly come in handy, so hats off to you for that too.

Keep up the good work!

Kind regards, Matt

Is this legit?

https://prnt.sc/1w06hgr

I just updated to 8.3 now there’s another version ( 8.3.1) out already?

Hello,

Yes, it’s legit.

Hello, How can we show the number of posts found in the grid?

Also – is it possible to set up correct clean links for the filter instead of /shop/?filter_product_cat=monitory ?

Thank You!

Unfortunately, Impreza doesn’t provide this feature out of the box. You can create a feature request https://help.us-themes.com/impreza/tickets/create/ and we’ll consider implementing it if it will receive a significant number of voices from other clients.

strange because this is standard WordPress functionality.

I am unable to create a feature request because support has ended.

Ok, in any case, your theme is the most flexible that I have seen, although the absence of some things is strange to me.

I thought a little and made a shortcode for the Grid (Items of the current query (used for archives and search results))

[total_posts]

function wpb_total_posts() { if ( function_exists( 'woocommerce_result_count' ) ) { if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) { return; } $total = wc_get_loop_prop( 'total' ); $per_page = wc_get_loop_prop( 'per_page' ); $current = wc_get_loop_prop( 'current_page' ); if ( 1 === intval( $total ) ) { print '<p class="woocommerce-result-count">'; _e( 'Showing the single result', 'woocommerce' ); print '</p>'; // } elseif ( $total <= $per_page || -1 === $per_page ) { /* translators: %d: total results */ } else { printf( '<p class="woocommerce-result-count">' . _n('Showing all %d result', 'Showing all %d results', $total, 'woocommerce' ). '</p>', $total ); // } else { // $first = ( $per_page * $current ) - $per_page + 1; // $last = min( $total, $per_page * $current ); /* translators: 1: first result 2: last result 3: total results */ // printf('<p class="woocommerce-result-count">' . _nx( 'Showing %1$d–%2$d of %3$d result', 'Showing %1$d–%2$d of %3$d results', $total, 'with first and last result', 'woocommerce' ) . '</p>', $first, $last, $total ); } } } add_shortcode('total_posts','wpb_total_posts');

Is it possible to open a page in a popup? For example, I want to open a popup with the content of the post for 3D Buchstaben when a grid element is clicked.

When I click on the grid element “3D Buchstaben aus Acryl rückseitig lackiert ”, I want the corresponding content of the post

3D Buchstaben aus Acryl rückseitig lackiert

appear in the popup.

Is it possibel?

Thanks in advance!

Hello,

Open Grid Settings and set an Overriding Link to “Opens Post in a Popup” https://prnt.sc/1von4lt

Let us know if you have further questions!

hi this theme tested with Bookly Plugin and Good wrk with it?

Hello,

We didn’t test this plugin yet. But you can try it yourself on this test-drive server: http://themetest.net/impreza/ and report here.

Thanks!

Commenting on behalf of a client with an expired license -

The US Core plugin has query filtering in place for WooCommerce’s woocommerce_hide_out_of_stock_items setting, and it breaks some queries where multiple post types are being queried and some don’t have any _stock_status meta value. Specifically, the current behavior breaks the “Membership Content” area when using WooCommerce Memberships, since it may include any number of different post types. Any posts that would normally show up but don’t have a meta value for _stock_status will be removed.

In us-core/plugins-support/woocommerce.php, the us_wc_code_get_posts method, line ~ 540, the meta query should be updated to handle the case in which the _stock_status meta key does not exist:

// Add meta_query for outofstock
if ( $include_outofstock_meta ) {
    $query_vars['meta_query'][] = array(
        'relation' => 'OR',
        array(
            'key' => '_stock_status',
            'value' => 'outofstock',
            'compare' => '!=',
        ),
        array(
            'key' => '_stock_status',
            'compare' => 'NOT EXISTS',
        )
    );
}

You may even reach out to the WooCommerce team to vet your usage of this setting and get recommendations on how best to implement it.

I would think Woo core should be doing sufficient query filtering to handle this setting, and custom code in your plugin may not even be necessary.

Hello,

Our devs will investigate the issue and provide a fix in one of the next updates.

Thanks for the feedback!

Hi, with the new update the product gallery module (for woocommerce photos) does not change the image of the product variable. Example: in frontend with a variable product with different images when I select the variable of the drop-down it does not change the photo loaded on the variable.

where do i find the CSS class of the product? The page template is the same for all products …

There is no need to find it, simply assign one, please see this: http://somup.com/cr6jXd3lFQ

Let me know how it goes!

Yeah! class “product”

You are the best! Thanks

Hi, I’m using impreza on this site https://mzipup.teamaglet.com/ but the theme is stuck in maintenance mode… I deactivated it from the upsolution licenses page but still cannot deactivate maintenance mode.

Can you please assist

Hello,

Go to Impreza > About and make sure that your license deactivated, then go to Impreza > Theme Options > General and turn off the Maintenance Mode.

Let us know if it helped!

Support why is it that after updating to the latest version of the theme, the header got scattered. so we have to revert to our backup to keep our site stable

Hello,

Please provide us with a relevant URL and a screenshot so we could investigate the issue.

Thanks in advance!

Hello! We are seeing the following problem when trying to create (or importantly update and save) page blocks.

WordPress version 5.8 Current theme: Impreza (version 8.2.1) Current plugin: UpSolution Core (version 8.2.1) PHP version 7.4.24

Error Details

An error of type E_ERROR was caused in line 335 of the file /nas/content/live/site/wp-content/plugins/us-core/functions/post.php. Error message: Uncaught ArgumentCountError: Too few arguments to function us_vc_base_save_post_custom_css(), 1 passed in /nas/content/live/site/wp-includes/class-wp-hook.php on line 303 and exactly 2 expected in /nas/content/live/site/wp-content/plugins/us-core/functions/post.php:335 Stack trace: #0 /nas/content/live/site/wp-includes/class-wp-hook.php(303): us_vc_base_save_post_custom_css(NULL) #1 /nas/content/live/site/wp-includes/plugin.php(189): WP_Hook->apply_filters(NULL, Array) #2 /nas/content/live/site/wp-content/plugins/js_composer/include/classes/core/class-vc-post-admin.php(51): apply_filters(‘vc_base_save_po…’, NULL) #3 /nas/content/live/site/wp-includes/class-wp-hook.php(305): Vc_Post_Admin->save(14319) #4 /nas/content/live/site/wp-includes/class-wp-hook.php(327): WP_Hook->apply_filters(NULL, Array) #5 /nas/content/live/site/wp-includes/plugin.php(470): WP_Hook->do_action(Array) #6 /nas/content/live/site/wp-includes/post.php(4468)

Hello,

Please provide your website credentials via this form (URL, admin username, and password) https://themeforest.net/user/upsolution#contact so we could investigate the issue.

Thanks in advance!

Hi there, just a quick question: Is there any possibility to set the layout of one page to full width? Maybe with some CSS? Sadly there is no such option in the page settings when in edit mode. I don’t want to use the Impreza Page Builder!

Hello,

Please provide us with a relevant URL so we could take a look.

Thanks!

Hi, i figured out myself. Here is the CSS which needs to be added for those who are interested: .l-section { padding-left: 0 !important; padding-right: 0 !important; } .l-section-h { max-width: 100% !important; } .l-section-h.i-cf { padding-top: 0 !important; }

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