Discussion on Porto | Multipurpose & WooCommerce Theme

Discussion on Porto | Multipurpose & WooCommerce Theme

Cart 102,334 sales
Recently Updated
Well Documented

p-themes supports this item

Supported

23242 comments found.

How to make the Logo bigger on Mobile Devices?

İ have also upload the Logo with big slze, but the logo will display allways very small on mobil devices.

Where i need set the logo size for mobile devices ?

Hi,

You can set the Logo size on mobile, tablet and desktop as per your requirement from Appearance >> Theme Options >> General >> Logo, Icons. Please see this screenshot for the better understanding: http://prntscr.com/jkht75

And also Could you please purchase support extension to get further support? Your 6 months of support period is now expired. According to Envato support policy, renewing support is required for further support.

Thanks for your understand.

Hi,

I like the update you gave for the category-columns on mobile but I have one question. When I set the columns for the category-view at 2 and the set a single column for the products ( archive ), subcategories are shown with one column. ( https://cedes-supply.com/shop ) Doesn’t this need a fix?

kind regards

Jeroen

Hi,

Actually, this is not the bug in the Theme this is just a single Option which works on two things on the product archive page columns on mobile and on the subcategories page on mobile version but you are also right that there should be two separate Options for both of these pages and I am forwarding your this feature request to our development team and they will look through it in next coming updates.

Thanks for your understanding.

Hi,

Thanks for your fast reply. I think your development is outstanding and it’s great to see this theme become one of the best I’ve seen. With the ever expanding theme-options it saves me so much time in customising scripts. #thumbsup

Thanks for your appreciation.
Have a great day.

Can I set the porto countdown element to be recurring everyday? We send shipments out every day at 2:30, so Id like to put in the header: “Time Until Next Dispatch” and show the countdown element counting down to 2:30pm. Is this possible?

Hi,

Sorry to say that it is not possible with the help of theme options, there is no option in the theme to achieve this.

Thanks

Is Porto compatible with WordPress 4.9.6

Hi,

Yes Our latest Porto WordPress Theme 4.4.1 is fully Compatible with the latest WordPress 4.9.6.

Thanks.

hi, i got problems to get in the customizer. what must i do? what get wrong?

Hi,

When you notice that the WordPress theme customizer suddenly stops working and if the live preview in your WordPress dashboard was working fine before, then the most common reason for the issue is a plugin conflict. Even if you have changed nothing on your site or have not installed any new plugins, your issue still can be caused by a previously installed plugin, for example when a plugin was updated automatically or in case there are plugin leftovers on your website.

So please check your site after deactivating all the third party plugin hope you will not find an issue if yes then contact us through our support system with your site WP Admin Login details so we will check and solve it for you.

Thanks.

Hello, We are looking to use for a Woo site the Porto Wp theme + some plugins from the YITH suite. Have you got, by any chance, a showcase with your theme along with some YITH pugins? If not, are you aware of existing issues as far as compatibility, ease of integration go? Thank you very much,

Hi,

First of all thanks for showing your interest in Porto WordPress.

Yes our latest Theme is fully Compatible with the latest Woocommerce and some Yith Plugins as well like:

Compatible with YITH WooCommerce Wishlist plugin
Compatible with YITH WooCommerce Ajax Search plugin

And you can see fully compatible with plugins list that we confirmed on our end here: https://themeforest.net/item/porto-responsive-wordpress-ecommerce-theme/9207399

Thanks.

Hi, i’ve created a cusotm template, but the mobile menu is not showing !!

<?php /* Template Name: Home Custom*/ ?>

<?php get_header() ?>

<?php global $porto_settings, $porto_layout;

$featured_images = porto_get_featured_images(); ?>

<?php get_footer() ?>

Hi,

You should echo an image by pasting the code into your code:

<?php echo $featured_images; ?>

Please see this screenshot: http://my.jetscreenshot.com/30684/20180518-qpx8-12kb hope it will solve your issue if not then contact us throguh our support system with your site WP and FTP Login details so we will check and try to solve it for you.

Thanks.

I solved in other way, but thanks !! :)

Sound’s Great!
Most Welcome

I could not find the demo data? Where can I find it? I did watch the manual video but could not find the demo.

Hi,

You can find/install the Demo Data from Porto >> Setup Wizard >> Demo Content please see this screenshot for the better understanding: http://prntscr.com/jjhst6

And also Could you please purchase support extension to get further support? Your 6 months of support period is now expired. According to Envato support policy, renewing support is required for further support.

Thanks for your understand.

Now I really give up on Porto theme :( New version released, 1 issue fixed and 2 new issues appear…..

The variation attribute select button still not work if direct product attribute is used. Data in .js file is escaped, a function which is deprecated looong time ago.

Inventory message for variable products is back again but it does not appear as before or as in simple product. Message now appear just below the price, and if product is out of stock the price get a line-through.

So what happend, when a customer click to select a variant the page jump up because the inventory message show up higher up in the page. Customer is now into nowhere, he will not see add to cart button and not see the inventory message because page landed just in between.

So after the selection of variant customer has to scroll upp/down before he can continue the order process.

You must move the inventory message down to where it always has been so when a customer select a variant the message/variant price show up just below the variant selector. Then everything is in one place, variant selector, stock message/price and add to cart button.

Otherwise provide me where the code/hook used is located so i can fix this mess once and for all..

No you can not, that file only serve the add to cart form. Somewhere you have an action hook that take care of where the inventory message should appear, or you are using jquery/ajax to load the message. And this is the file i need.

I found it in woocommerce-theme.js file and had to remove the below codes to make it work as normal:

        $(document).on('woocommerce_variation_select_change', '.variations_form', function(e) {
            if ($(this).closest('.product-summary-wrap').find('p.price.d-none').length) {
                $(this).closest('.product-summary-wrap').find('p.price:visible').html($(this).closest('.product-summary-wrap').find('p.price.d-none').html());
            }
            $(this).children('.single-variation-msg').hide();
            if ($(this).closest('.product-summary-wrap').find('.single_add_to_cart_button').length) {
                $(this).closest('.product-summary-wrap').find('.single_add_to_cart_button').removeAttr('disabled');
            }
        });
        $(document).on('show_variation', '.variations_form .single_variation', function(e, variation, purchasable) {
            if (!$(this).closest('.product-summary-wrap').find('p.price.d-none').length) {
                $(this).closest('.product-summary-wrap').find('p.price').clone().addClass('d-none').insertAfter($(this).closest('.product-summary-wrap').find('p.price'));
            }
            $(this).hide();
            if (purchasable && $(this).closest('.product-summary-wrap').find('.single_add_to_cart_button').length) {
                $(this).closest('.product-summary-wrap').find('.single_add_to_cart_button').removeAttr('disabled');
            } else {
                $(this).closest('.product-summary-wrap').find('.single_add_to_cart_button').attr('disabled', 'disabled');
            }
            if (variation.variation_is_visible) {
                $(this).closest('.product-summary-wrap').find('p.price:visible').html($(this).html());
            } else {
                if (!$(this).closest('form').children('.single-variation-msg').length) {
                    $('<div class="single-variation-msg" style="display: none;" />').prependTo($(this).closest('form'));
                }
                $(this).closest('form').children('.single-variation-msg').show().html($(this).html()).show();
            }
            if ( !purchasable ) {
                $(this).closest('.product-summary-wrap').find('p.price:visible').find('.price').css('text-decoration', 'line-through');
            }
        });

Hi,

Thanks for sharing this and clearing my concept as well.

product description cannot show full page on mobile, how to setting for mobile vision?

http://www.blankking.com.hk/product/ts101/

Hi,

Have you purchased the Porto WordPress theme? If yes, then please contact us through your theme purchase account to get the free support for Porto WordPress theme.

Thanks.

So, I am on the checkout page, and let say i forget to enter some required information, such as house number, and I click on check out button. It will return me to the check out page and display a message on top, “You forget to enter your house number”.

When i inspect that element in chrome, i can see this classes are applied to that error message.

woocommerce-NoticeGroup woocommerce-NoticeGroup-checkout woocommerce-error

I would like that message, to have different color than rest of the checkout page text, because like this, when it is the same color, sometimes people don’t realize that the message is even there and they think something is wrong with a website.

So, how do I change the color for error messages text in porto?

Hi,

Please copy and paste the below given Custom CSS code to Appearance >> Theme Options >> Skin >> Custom CSS and change the color value as per your requirement your issue will solve.

.woocommerce-error li { color: red !important; /* Change text color */ border-color: red !important; /* Change border color */ }

Thanks.

When i try to update via cpanel , i get scss error with save satings on line 44, what i have to do ?

save_settings.php on line 44

Hi,

I think the Theme files are not updated properly, that is why showing this error. Can you please delete the theme files and upload the theme zip file again then extract it to your site. I hope your issue will be solved. We have tested the theme update already before releasing the update and did not find any issue in theme update via Cpanel or WP admin area. We have checked both ways to update the theme.

And also Could you please purchase support extension to get further support? Your 6 months of support period is now expired. According to Envato support policy, renewing support is required for further support.

Thanks for your understand.

is porto Version 4.4.1 compatible with WordPress 4.9.6 ? is it safe to update?

Hi,

Yes the latest Porto WordPress version 4.4.1 is fully compatible with the latest WordPress version 4.9.6 you can easily update your WordPress version and use it.

Thanks.

I can not activate Porto Functionality plugin after update. When I try to activate it Im getting the error below.

Warning: require_once(/home/tikl2096/public_html/wp-content/plugins/porto-widgets/widgets/price_filter_list.php): failed to open stream: No such file or directory in /home/tikl2096/public_html/wp-content/plugins/porto-functionality/porto-functionality.php on line 117

Fatal error: require_once(): Failed opening required ’/home/tikl2096/public_html/wp-content/plugins/porto-widgets/widgets/price_filter_list.php’ (include_path=’.:/opt/alt/php70/usr/share/pear’) in /home/tikl2096/public_html/wp-content/plugins/porto-functionality/porto-functionality.php on line 117

Hi,

It seems that Porto Functionality files are crashed, so please go to wp-dashboard >> plugins and delete the Porto Functionality Plugin and upload the Porto Functionality Plugin again from wp-dashboard >> plugins and activate it hope you will not find an issue if yes then contact us through our support system we will check and solve it for you.

Thanks.

Hello after the update, half of the sidebar in Google Chrome is out of the screen, and with Firefox there are no images on the product page. Why are there so many problems after an update?

Hi,

Please check your site after deactivating all the third party plugins and also after removing the cache hope you will not find an issue if yes then we have to debug your site and for that you have to contact us through our support system with your site WP Admin Login details.

Thanks.

Hallo nach dem Update ist die Sidebar in Google Chrome zur hälfte auserhalb des Bildschirms, und mit Firefox sind keine Bilder zu sehen auf der Produktseite. Warum gibt es immer so viele Probleme nach einem Update?

Hi,

Please check your site after deactivating all the third party plugins and also after removing the cache hope you will not find an issue if yes then we have to debug your site and for that you have to contact us through our support system with your site WP Admin Login details.

Thanks.

How can you get the responsive menu to close on click when using the One Page theme? I see it doesn’t close on your demo as well. Can some Javascript code be added?

Hi,

Yes you are right on One Page Demo on a cell / mobile phone when you click on the hamburger and on a menu item it scrolls to you on the particular item section and it will not close by default because the page is not reloaded it works on the Id’s that is why you have to close it by clicking again on the hamburger icon this is the default functionality of the One Page Demo.

And also Could you please purchase support extension to get further support? Your 6 months of support period is now expired. According to Envato support policy, renewing support is required for further support.

Thanks for your understand.

Hi

It seemed to me a bit daft that this function wasn’t working as standard as it wrecked the onepage theme.

I have now managed to get it to work by adding 2 bits of JS to the wp_head and wp_footer files using a free plugin called Custom css-js-php

Head needs:

(function(){ document.querySelectorAll(”#nav-panel ul li a”) .forEach(a=>{a.onclick=function(){ var s=document.querySelector(”#nav-panel”); s.style.display=”none”; })()

}})

Footer needs:

window.onload=function(){ document.querySelectorAll(”#nav-panel ul li a”) .forEach(a=>{a.onclick=function(){ var s=document.querySelector(”#nav-panel”); s.style.display=”none”; }

}})

I hope that you find this useful as I hope others do to.

Hi,

Thanks for sharing this valuable information with the Customers hope it will help other Customers if they want the same functionality as your’s.

Thanks.

BLANK PAGE WITH UPDATE THEME I did the update of the theme and after much searching I saw that there is an incompatibility between the theme and the plugin functionality, when I activate the plugin nothing works, everything goes blank, when I delete the file, everything returns to normal .

I just did the test on localhost, I have the same problem.

when disable the functionality everything works, when active only the blank page is displayed I’m downloading functionality direct through theme options

Hi,

Strange because this plugin is required for the Theme so we have to debug your site please contact us through our support system with your site WP Admin Login details.

Thanks.

Hi guys, can you help me to sort out the correct image sizes and settings for this theme, its not correct what ever iam doing :) http://ahcykler.dk/produkt-kategori/cykler/cross/focus-cross/ and when you click the products, then its wrong to. – i have regenerated tnails after resizing…

Kind regards Jesper

Hi,

To change image size: To change this setting now on the front end you have to go to customize >> WooCommerce >> Product Catalog and you can customize the store display from there.

Please read this doc: https://woocommerce.com/2018/01/whats-new-woocommerce-3-3/

You must need to regenerate the image thumbnails after making the change in size then after that check your site after removing the cache you will not find an issue.

After change the image size, you should regenerate all the thumbnails in Tools > Regen.Thumbnails on admin sidebar.

If your issue will not solve then contact us through our support system we will solve it for you.

Thanks.

Hello, I have purchased your theme and installed the demo version, when I m checking my site in Safari, the style has been break. Please let me know how can I fix this issue.

Hi,

Can you please contact us through our support system with your site WP Admin Login details so we will check your site and solve the issue for you.

Thanks.

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