Discussion on Porto | Multipurpose & WooCommerce Theme

Discussion on Porto | Multipurpose & WooCommerce Theme

Cart 102,326 sales
Recently Updated
Well Documented

p-themes supports this item

Supported

23241 comments found.

Hi, I have a problem with the checkout fields mandetory settings. I have to remove the mandetory / requiered status of the Telephone field in the checkout page. I tried it with the following code sniped. This normaly works, but not with this theme:

add_filter( ‘woocommerce_billing_fields’, ‘wc_npr_filter_phone’, 10, 1 ); function wc_npr_filter_phone( $address_fields ) { $address_fields‘billing_phone’ = false; return $address_fields; }

I checked the woocommerce array for the telephone field. The requiered field for “Telephone” is set to false. But the setting is ignored in the checkout. What can I do? Any help is appreaciated? Thank you.

Hi,

Please use the below given code and paste it into function.php file it will work for you as it is working for me as well, I have tested this code on my test site as well.


// Remove billing phone (and set email field class to wide)
add_filter( 'woocommerce_billing_fields', 'remove_billing_phone_field', 20, 1 );
function remove_billing_phone_field($fields) {
    $fields ['billing_phone']['required'] = false; // To be sure "NOT required" 

    $fields['billing_email']['class'] = array('form-row-wide'); // Make the field wide

    unset( $fields ['billing_phone'] ); // Remove billing phone field
    return $fields;
}

// Remove shipping phone (optional)
add_filter( 'woocommerce_shipping_fields', 'remove_shipping_phone_field', 20, 1 );
function remove_shipping_phone_field($fields) {
    $fields ['shipping_phone']['required'] = false; // To be sure "NOT required" 

    unset( $fields ['shipping_phone'] ); // Remove shipping phone field
    return $fields;
}


Here is the Link: https://stackoverflow.com/questions/49742442/remove-phone-from-billing-shipping-fields-everywhere-in-woocommerce

Thanks.


Hi, thanks for this perfect theme. I have 3 question.

First please check picture… https://prnt.sc/ocghke

1- How can change color of link in product category left side?

2- How can i edit ?

3- Where is the language setting.?

thanks best regards

Hi,

You can change any word in the Theme Language Translation files as per your requirements and use it, and if you have any issue then please contact us via our support system with your site WP Admin Login details so we will check it for you.

Thanks.

ok thanks alot

Most Welcome!.. :)

Just Amazing keep it up!

Thank you so much :)

Hi, How can i remove the “Follow Me” from the individual member’s page i dont want it on the member’s profile page.

Hi,

Please copy and paste the below given CSS code to Appearance >> Theme Options >> Skin >> Custom CSS and check your site after removing the browser cache.


.share-links-block h5 {
    display: none !important;
}


Thanks.


Hi,

How to override the !important property of ID selector in masonry items. Refer the attached screenshot for easy understanding.

https://prnt.sc/oc7rs0

I can test the css code snippet in chrome div tool. But cannot use in the custom css due to the lack of !important property.

Please help me. Final outcome should be as per the attached screenshot.

https://prnt.sc/oc7zdk

Thank you

Hi,

The CSS is coming from index which means the CSS value is coming from the particular element setting, Please once check the element setting again, OR contact us via our support system with your site WP Admin Login details so we will check and provide you the solution if possible.

Thanks.


Hi all

can someone tell me how to allways set the product filter toggle opened.

Hi,

Can you please provide me the screenshot that which product filter toggle you are talking about?

Thanks.

Hi,

Please go to Appearance >> Theme Options >> WooCommerce >> Product Archives and change the Filters Layout from there as per your requirements as showing in this screenshot: https://screenshot.net/ekdd3i4

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.

How to remove “Everything about Lifestyle, Travel and Gadgets!” from top menu?

Hi,

Can you please contact us via our support system with your site WP Admin Login details and provides the screenshot of the Top Menu as well in your ticket so we will check and provide you the solution for it.

Thanks.


When I select a row to be full width, on page load, the row is normal width, then once it has finished loading, it jumps to full width. This isn’t ideal as it doesn’t look great it changing halfway through loading. Any ideas how to avoid this? I assume its because it’s done via javascript.

Hi,

I think you have only read the single article which you have described above, The main thing is that there are two ways calling the Fonts on your web directly from Google or Download the Font onto your site and use it with the stylesheet.

In both ways calling Fonts directly from Google takes time to load and render more as compared to second way download the Font onto your site.

And Porto WordPress provides both ways, You can turn ON/OFF the Google Fonts from Appearance >> Theme Options >> Skin >> Typography as showing in this screenshot: https://pasteboard.co/I7CnIyt.png

And if you want you can download the complete zip file of any font as per your requirements and upload it to your site from Appearance >> Theme Options >> Font Control as showing in this screenshot: https://pasteboard.co/I7CokPO.png

You can also see in your providing link, Some of the Experts solutions: https://pasteboard.co/I7CoZ3d.png
and you can see clearly that your providing article was around 2 years old and a lot of webs is changes in past 2 years, The browsers are also changing as well.

But if you still want to use the Google Fonts and wants to load it faster then here are some tips for you: https://frontendnews.io/editions/2018-07-25-tips-for-loading-web-fonts

And for Preload fonts:

When using custom fonts you should tell the browser to preload them using the appropriate rel=”” tag and attributes:

<link rel=”preload” as=”font” href=”/fonts/custom-font.woff2” type=”font/woff2” crossorigin=”anonymous”>

<link rel=”preload” as=”font” href=”/fonts/custom-font.woff” type=”font/woff2” crossorigin=”anonymous”>

Note that the use of cross-origin here is important; without this attribute, the preloaded font is ignored by the browser, and a new fetch takes place. This is because fonts are expected to be fetched anonymously by the browser, and the preload request is only made anonymous by using this attribute.

You can read more about it here in this article: https://medium.freecodecamp.org/web-fonts-in-2018-f191a48367e8

Hope this is more clear now.

Thanks.


Thank you for your reply, but fonts are not the issue. The issue is, the page width is set to be a set size, e.g. 1120px and then half way through loading, the page width is then set to be full width. Can you confirm why this is? I am assuming it is because css is overwritten by what the user (i.e. me) has chosen the width to be in the wp bakery pro admin settings.

Hi,

Please contact us via our support system with your site WP Admin Login details so we will check it for you and if possible provide you the solution for it.

Thanks.

Hello ,

Now When user Click Logout it redirect to my account and then ask for confirm logout , how can i remove that? i want it to be logged out once i click… no need to redirect and confirm log out?/strong>

Hi,

You may find that you want to bypass this message and just log the user out immediately. To do so, all you need is a simple code snippet. Please copy and paste the below given Code to function.php file and check your site after removing the browser cache.


/**
 * Bypass logout confirmation.
 */
function iconic_bypass_logout_confirmation() {
    global $wp;

    if ( isset( $wp->query_vars['customer-logout'] ) ) {
        wp_redirect( str_replace( '&', '&', wp_logout_url( wc_get_page_permalink( 'myaccount' ) ) ) );
        exit;
    }
}

add_action( 'template_redirect', 'iconic_bypass_logout_confirmation' );


Thanks.


lol , now it redirect me to this page

https://psngalaxy.com/wp-login.php?action=logout&redirect_to=https%3A%2F%2Fpsngalaxy.com%2Fmy-account%2F&_wpnonce=9faab39e9c

and saying : You are attempting to log out of PSN Galaxy Store

Do you really want to log out?

it is the same issue… also confirming to logout!!

Hi,

Just tested the same code written here: https://iconic-3935.rask32.raskesider.no/blog/bypass-are-you-sure-you-want-to-log-out-message-in-woocommerce/
at my end now on my test site and it is working fine, Please see this video of my test site: https://jmp.sh/91lBsVn
It must be any third party plugin confliction or the cache issue at your end nothing else. Please read this thread as well: https://wordpress.org/support/topic/how-to-logout-and-skip-confirmation-message-are-you-sure/

Thanks.


could you provide me porto-functionality-de_DE please?

Hi,

Please download the Porto Functionality plugin German Language translation files from the below given links and upload it to wp-content/languages/plugins and check your site after removing the browser cache.

https://www.dropbox.com/s/9stqe9jz6qoey2x/porto-functionality-de_DE.po?dl=0
https://www.dropbox.com/s/dfu30et6prx4imv/porto-functionality-de_DE.mo?dl=0

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. The Quick View function is not working with the Woocommerce Composite Products plugin. When I click on Quick View for these type of products it just keeps trying to load the display. Can you please advise ASAP? Thank you

Hi,

We have not tested the Woocommerce Composite Products plugin with the latest Theme and nor it is included in the third party compatible plugins list with the Theme confirmed from our end here: https://themeforest.net/item/porto-responsive-wordpress-ecommerce-theme/9207399
So this is the Plugin confliction issue with the Theme Please contact plugin author and ask plugin author to Customize the plugin files for making it compatible with the Theme for you or if you want our paid Customization services you can contact our Customization team as well.

Thanks.


hello, I have 2 questions

first question :how can I move the place of search form in the header from the center to the left (next to logo) and how to change the size of it ?

second question : how can I change the link color on hover (in the side menu – category menu) ?

thank you :)

Hi,

1. If you are using Pre-Built Header Type then you can not change the Structure of the header, you can only change the color of the header if you are using the Pre-Built Header Types, OR if you want to change the structure then you have to use Header Builder Feature for it: https://www.portotheme.com/wordpress/porto/documentation/header-builder/
and you have to change the Size of the Search Box using Custom CSS.

2. Please share your site URL and the screenshot of the side menu with me here so that I’ll check and provide you the solution for it.

Thanks.


i need to reset licenses key on domain because my domain is hacked .. :| have on porto wordprees and porto magento

Hi,

I have reset your purchase code, now you can use the same purchase code for registration of your theme.

Thanks.

Offers, review or aggregateRating know the template? Google search console is not specified.

Hi,

Please read and follow the instructions written in this doc: https://www.checkerboard.com/web-development/fix-offers-review-aggregaterating-specified/

Thanks.


Need help with Single Product Page

https://screenshot.net/w7n99f9

Need the Short Description (green border) and custom meta & Availability (green border) to be displayed in the same way as the Additional Information (Orange Border)

I need the title “Additional Information” heading to go away but the Weight, Dimensions to stay n the same colored lines format. Need the Short Description and the Custom Meta also in the same fomat of Colored Lines.

Like Everything in a separate row .(Colored and then plain) Short Description (Colored); Gender; EAN (Colored); Size; Weight (Colored); Dimensions; Availability.(Colored)

Hi,

Sorry to say that this is not possible with the help of Theme Options as there is no option in the theme for that so this is only possible with the help of customization and we only provide our dedicated support for the Theme Options related issues, not for customization this is beyond our limitations, Hope you can understand our limitations.

This requires customization. Item support does not include services to modify or extend the item beyond the original features, style, and functionality described on the item page. For customization services that will help you tailor the item to your specific requirements, we recommend to contact our customization team for paid Customization services or hire a developer.

Thanks.


Fixed this . The Additional Information is a tab that auto populated the Attributes of the product.

I switched to using arritbutes instead of Meta for the products and things started to look the way I needed it.

Using WooCommerce Tab Manager, I could rename the tab to what I wanted.

Was an easy fix but needed some time to figure out :)

Sound’s Good!.. You are the best :)

Thanks for sharing this with others, Hope it will help lots of Other Customers as well.

Thanks.

Hi, How to change a youtube video size? I add a youtube video with video player, I set video-size to 40%, but it doesn’t work. please help me. Thank you very much.

Hi,

I have just checked it at my end now and it is working perfectly fine at my end, Please make sure that you are using the very latest version of the Theme and Plugins, If not then please update it or contact us via our support system with your site WP Admin Login details so we will check it for you.

Thanks.


I’m interested in using a Porto theme for a fairly standard retail store with a couple of unique filtering, search and purchase tools. I would like to get confirmation that your platform either has these capabilities or would support external plug-ins to allow me to build this functionality. The 3 main items I need are (1) a step filter that allows buyers to go step by step through features to identify the right tire for the way they ride (this is in addition to traditional filtering); (2) filtering that allows a user to filter for attributes within variable products and displays the appropriate parent products per that filtering, but which pre-selects/pre-loads the appropriate variables on the product page per the user’s filtering so they don’t have to re-select their specific attributes again once they select the appropriate parent product; (3) a membership function that allows both the sale of memberships and applies a site-wide discount for members. Thank you for your help.

Hi,

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

1. Sorry to say that but this is not possible using Theme Options, You have to use any third party plugin for it, The Theme provides filters are Filter by attributes, by price, by ratting, Yith Ajax Product Filter, Yith Ajax Reset Filter, Archive Product Filters.

2. Yes, you can be using Filter by Attributes but it will show you all the products having the particular attribute.

3. No, Sorry to say that but this is not possible using Theme Options, You have to use any third party plugin for it.

Thanks.

I am getting an error “This code was already used in” however its not in use on any other site

Hi,

I have reset your purchase code, now you can use the same purchase code for registration of your theme.

Thanks.

Option to setup “Open Product in new tab” When a user clicks on a product from the main shop page, the product should open in a new tab. A check box for user to select if he wants to open the product in new tab or in the same tab would be really great.

Hi,

Please copy and paste the below given code to Appearance >> Theme Options >> Skin >> JavaScript Code as showing in this screenshot: https://screenshot.net/jdr86a9
and check your site after removing the browser cache.


jQuery(document).ready(function($){
    $('.woocommerce.archive .products .product').each(function(){
        $(this).find('a').attr('target', '_blank' );
    });
});


Thanks.


That worked , thanks a lot :)

Any possibility of a checkbox for the user to choose is they want to open the product in new tab or same tab?

Hi,

While we currently do not have that feature, I have submitted your idea as a feature-request to our team so that they can consider for future updates. Have a great day!

Thank you

Hi Porto Team, I searched in the comments how to make it possible to make banner position behind header (while banner is image added in wpbakery) or porto banner costume, but I can’t see any changes in my pages while choosing another header layout, colors, options or choosing the option of banner to be behind header, I made everything transparent in skin theme options but nothing happened!! Any help step?

Hi,

Please go to Blocks and create a Block and create your banner using Image from there and save changes and then copy the Block Slug name and then go to pages and edit the particular page and Scroll below you will find Banner Type, Set it as Banner Block and Paste the Block Slug name in it and then set your Banner Position as Behind Header from Page View Options and save changes and check your site after removing the browser cache.

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.

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