Discussion on Impreza – WordPress Website and WooCommerce Builder

Discussion on Impreza – WordPress Website and WooCommerce Builder

Cart 118,596 sales
Recently Updated
Well Documented

UpSolution supports this item

Supported

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

6337 comments found.

There is a bug in the grid: if I use “Custom html code” and put a shortcode there which returns a simple text and I use the grid to display products – I can see the shortcode text that is supposed to be shown, but when I use the ajax filter – instead of the shortcode result i see the template [shortcode_name].

Hello,

This is a complicated question, please create a ticket on the Support Portal and provide your WP admin credentials via private reply so our support team could investigate. Thanks in advance!

Block Slider of images. Why can’t it create links for each of the slides? It’s logical. At the same time, there is such a function in the blog “record slider” to make your own link for the transition, different from the record. If it were possible to create links for each of the slides in the image slider block, then it would not be necessary to install the slider revolution plugin, which creates an additional load.

Hello,

We haven’t yet received a lot of feedback from our customers regarding this issue. If such a request will become popular, we’ll consider adding this extra functionality to the image slider.

Hi! Why wait for it to become popular? Many people don’t even realize how convenient it is, they just have to install slider revolution. Is there a problem to copy a function from one block to another so that the development of a website using your theme is more universal?

Hello!

There is a possibility we will add this feature eventually to our slider element. And there is no problem implementing it, of course. Yet, we have lots of other really great features planned already. And also many other highly requested (and voted for) features asked by our customers. And we do believe that our customers do realize what is better for them when asking/voting for a feature.

Thank you for your feedback! We value every comment on our theme’s functionality and will take yours into account too.

Thanks!

Hi! Why is there no parameter – viewed products /posts in your demo theme in the product grid? I haven’t found this parameter anywhere, not even in the slider. Is it possible to display the products/posts viewed by the user in the grid and slider without additional plugins? It seemed to me that this is one of the main functions. This is a very simple function that works through cookies, but for some reason you did not do it by default in the theme so that you could apply grid styles or carousels to it like other products in the catalog.

add_action( ‘template_redirect’, ‘f123_recently_viewed_product_cookie’, 20 );

function f123_recently_viewed_product_cookie() { if ( ! is_product() ) { return; } if ( empty( $_COOKIE[ ‘woocommerce_recently_viewed_2’ ] ) ) { $viewed_products = array(); } else { $viewed_products = (array) explode( ’|’, $_COOKIE[ ‘woocommerce_recently_viewed_2’ ] ); } }

if ( ! in_array( get_the_ID(), $viewed_products ) ) {
    $viewed_products[] = get_the_ID();
}
if ( sizeof( $viewed_products ) > 8 ) { //we set the number of cat products. will be stored
    array_shift( $viewed_products ); 
}
wc_setcookie( 'woocommerce_recently_viewed_2', join( '|', $viewed_products ) );

add_shortcode( ‘recently_viewed_products’, ‘f123_recently_viewed_products’ );

function f123_recently_viewed_products() {

if( empty( $_COOKIE[ 'woocommerce_recently_viewed_2' ] ) ) {
    $viewed_products = array();
} else {
    $viewed_products = (array) explode( '|', $_COOKIE[ 'woocommerce_recently_viewed_2' ] );
}
if ( empty( $viewed_products ) ) {
    return;
}
$viewed_products = array_reverse( array_map( 'absint', $viewed_products ) );
$product_ids = join( ",", $viewed_products );
return do_shortcode( "[products ids='$product_ids' per_page='4' columns='4']" ); // we display 4 products in 4 columns

}

Hello,

Thank you for the detailed feedback! We’re not providing this feature out of the box, but we’ll consider implementing it in one of the future updates.

Hello, how can we deactivate the google fonts complete? In germany/europe it is not data protection compliant. Thanks

Hello,

Please check the relevant FAQ section regarding this issue. If you need further assistance, please create a ticket on the Support Portal and our team will gladly assist and guide you.

Hello there.

I have a huge issue with my website developed with your theme Impreza: The agreement checkbox doesn’t work with Apple devices and not even from Safari browser.

Could you help me understand why?

Thank you in advance.

Hello,

This is a complicated question, please create a ticket on the Support Portal and provide a relevant URL so our support guys could help you out. Thanks in advance!

sir, it is I don’t know how many times when your latest version of impreza is not available as a standalone kit. it always happens like this? to know the situation…....

Hello,

Updating the Theme package on Themeforest commonly takes several days from release date. But you can always update to the latest version via WordPress > Dashboard > Updates if your Theme is activated.

SUPER-PRESALE-QUESTION:;

About to buy it, but I have been testing and it is impossible to adapt dokan completely, showing seller name, featured store. That's the only reason I haven't paid for it yet. Will it be possible to add that detail?

Hello,

Unfortunately, we won’t be able to test the compatibility with this plugin, as we never worked with it and it’s not in the list of supported ones.

Preorder Q: Hey there

I see some premium plugins there for example Slider Revo

if ill buy theme, can i use all “Slider Revo ADDONS + TEMPLATES?”

regards

ok u don’t need to answer anymore… we can’t use premium features, but you’re misleading people by saying “save $85” on the product page… If I have to buy to access premium features, there’s no savings of $85… Thats plugin price… I think you should fix your product page and give correct information, it’s a shame

Hello!

Thank you for your feedback! Yes, we are unable to provide addons and templates with Slider Revolution, since they have limited it only for their own licenses. We are sorry that this was not explained good enough, and we will improve our description page to make this more clear.

Thanks!

I submitted a refund request via Envato on the same day as the order. I’m just sorry because i can’t use this super fast theme as i thought… ty anyway

Hi Up Solution,

Great theme, just one thing that has been bothering me for a long time and wanted to let you know about it.

I’ve been building a lot of sites using this theme and it’s really awesome. The only thing is that when setting a given row to Full Width (as shown on the links I’ve posted below) it fucks it all up on the right side. There’s always a gap no matter what I do.

Here is 3 examples that shows when Full Width on a row is enabled and also disabled.

https://prnt.sc/AuZfWNKgF8m6

https://prnt.sc/kD-xZDWKnzFU

https://prnt.sc/e0BcxO-4BWJt (this here is working fine because it’s disabled)

Just wanted to let you know about it for future build upgrades.

Hello,

This case needs more data to investigate its reason, please create a ticket on the Support Portal and provide your WP admin credentials via private reply so our support team could investigate. Thanks in advance!

Don’t worry, I have a work around. Though It’s a huge bug in your theme and might effect thousands of users, so it’s a good idea for you guys to look into that your selves. Just sent you a heads up, that’s all.

My work around was very simple and work side wide:

For some reason UpSolution chose to write this CSS:

.g-cols.via_flex.type_default { margin: 0 -1.5rem; }

I changed to this and works just fine when having a colum with Full Width enabled:

.g-cols.via_flex.type_default { margin: inherit !important; }

If it’s the right fix for this, I don’t know, but it works for me.

Dear customer support, on Impreza v8.4, the .webp pictures are not displayed on the front-office but only in the back-office. Thank you for your advices. peldur

Hello,

We strongly recommend using the latest versions of Impreza and the UpSolution Core plugin. Try updating both and check if you can still replicate the issue.

Hello,

We strongly recommend using the latest version of Impreza and UpSolution Core plugin. Try updating both and check if you can still replicate the issue.

any chance to make some website like these two https://www.tigo.com.pa/ https://www.masmovilpanama.com/ ? thank you

Hello,

Yes, you can replicate the design and layout of the sites you mentioned above with Impreza and relevant plugins.

If you need further assistance, please create a ticket on the Support Portal and our team will gladly assist and guide you.

hello. I’m in trouble. product gallery. The image height of the feature image is It changes depending on the registered image of the image in the product gallery. Is there a way to handle this

Hello,

This is a complicated question, please create a ticket on the Support Portal and provide your WP admin credentials via private reply so our support team could investigate. Thanks in advance!

Hi there is there a solution to stack columns like this: https://www.dropbox.com/s/q7010f4me5ow7nk/Schermafbeelding%202022-10-08%20om%2023.54.10.png?dl=0 (2 columns then 3 columns ect..) ?

almost, what I want is for me to load posts with the schedule you offer. You can link your grid to this grid and thus get a nice overview. But I want to show that overview 2, 3, 2 columns. and to create a ticket for that, the question has been asked here. Answers can also be given here, right?

Hello,

Unfortunately, we’re not able to provide detailed support in the comments. If you need further assistance, please proceed to the Support Portal.

it was just a question, no support needed. If ur not willing to answer just say no, that wil do.

Hello. Is there a mechanism for buying a theme for users living in the Russian Federation?

Hello,

We sell our Themes exclusively on ThemeForest, thus, its purchase interface and available payment options is the only way to get one.

No more post in grids since upgrading theme from8.11 to 8.11.2 !

Hello,

This is a complicated question, please create a ticket on the Support Portal and provide your WP admin credentials via private reply so our support team could investigate. Thanks in advance!

Is Impreza 8.11.2 compatible with PHP 8.0 ?

Hello,

Yes, Impreza is compatible with the PHP 8.0, and the fix for the issue with the posts is released with the UpSolution Core 8.11.3. Please update and check if everything is working correctly now.

Hi! The checkout page in your theme looks unfinished. Is it possible to allocate delivery methods in a separate widget for customizing the checkout page? To make an individual design of delivery methods, as you did for payment methods. Now the delivery methods are in the widget together with the products and are inseparable from them, they also do not have a customized style and it does not look nice, especially if the names are long or if there are descriptions for delivery methods. Because there is no place for this in the table. See the screenshot – https://tinyurl.com/2qr6mewf Are you planning to add a shipping methods widget to wpbakery and make display styles like for payment methods? and separate it from the list of products? A separate list of products, separate shipping methods. Thanks

Thanks for your feedback!

Please create a feature request on the Support Portal, we’ll consider implementing this feature in one of the next updates.

I can’t do that as it’s a pre-sale issue. The portal can leave suggestions or comments only with the purchased license. I was testing your demo and I had these questions. Can I get an answer to them?

We’re currently not planning to implement the customization you mentioned and didn’t yet receive any feature requests from our clients regarding this functionality.

Looks like the 8.10 version broke video rendering. https://www.decadeofhealth.co.uk/other-ways-you-can-get-involved-and-help-build-a-bigger-bubble/ When we revert back to 8.9 the YouTube videos render just fine, however since 8.10(and including 8.11) the iframes no longer render.

Hello,

This case needs more data to investigate its reason, please create a ticket on the Support Portal and provide your WP admin credentials via private reply so our support team could investigate. Thanks in advance!

Opened a ticket here: https://help.us-themes.com/impreza/tickets/57112/ And after further poking at things it looks like YouTube Playlist embedding is what’s now broken.

Hi, is there a simple way of reducing line height for bullet points? The line height always seem excessive and I would like to reduce it slightly. I know how to to change body text line height but bullet points seem to be larger. Thanks

Hello,

Please create a ticket on the Support Portal and share an example page with the description of the desired behavior, so our support team could investigate and guide you. Thanks in advance!

I’ve tried to activate a development site with mi license and appear an https error.

Hello,

It should be working correctly now, please check.

Not really. When I click in ACTIVATE and I use my Envato account user login, automatically return to the Impreza Activate page but it continue unactivated

Hello,

Please create a ticket on the Support Portal and provide your WP admin credentials via private reply so our support team could investigate. Thanks in advance!

Hello FYI your support website has a https problem.

Hello,

Thank you for pointing out the issue. It’s already resolved, you can now use the Support Portal normally.

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