Discussion on Porto | Multipurpose & WooCommerce Theme

Discussion on Porto | Multipurpose & WooCommerce Theme

Cart 102,093 sales
Recently Updated
Well Documented

p-themes supports this item

Supported

23226 comments found.

hi can you consider to added whatsapp sharing in mobile devices thanks

Hi, Don’t have a plan to added this.

why not …is it wrong

Hi, I just checked whatapp sharing. We will add this button in next release.

please update: porto/woocommerce/checkout/form-pay.php

Good job! Works : )

Could you please consider to change the review that you left for Porto? We tried to help you as much as we can so far.

Hi, The latest version is compatible with wp nav menu roles plugin: https://wordpress.org/plugins/nav-menu-roles/ Please use this plugin. Could you please consider to change the review that you left for Porto? We tried to help you as much as we can so far.
We are using the Port Theme Demo Version 15. How can I change the sizes of the image-boxes on this page for example: http://newsmartwave.net/wordpress/porto/demo15/product-category/women/ Because our product-images are usaly wider. for example: 200width , 100height Which files do I must configure to change the sizes? Greetz
Hi, Please change the image sizes in Woocommerce > Settings > Products > Display > Product Images and regenerate all the thumbnails in Tools > Regen.Thumbnails. http://newsmartwave.net/wordpress/porto/documentation/assets/images/01_woo_image_size_02.png

Woocommerce: porto/woocommerce/checkout/form-pay.php version 1.6.4 is out of date. The core version is 2.4.7,

Hi, i have the spanish translation for your theme (.po and .po files) where i can send it?

If you are using porto theme, please upload these files in porto/languages folder.

Hi, I have installed theme and works fine other browser but on IE it breaks page layout and IE gets defaulted to IE 7. When I manually change it to Edge everything starts to look and work fine.

I have sent you private message through your profile page.

While fiddling I found that removing <!-[if IE]> and <![endif]-> fixed the issue. Will it have any issues if I remove these tags?

Checked this issue. Please remove the following code in functions.php on line 228:
?>

    <!--[if IE]>
    <link rel="stylesheet" href="<?php echo porto_css; ?>/ie8.css?ver=<?php echo porto_version ?>" />
    <![endif]-->
    <?php

Woocommerce: porto/woocommerce/checkout/form-pay.php version 1.6.4 is out of date. The core version is 2.4.7,

Please contact us through purchased account.

Hi there.

Could you please tell me how I can replicate the menus “My Account” and “My Wishlist” menu. I cannot get the size to be small or bellow the search field. I am replicating your demo10. http://newsmartwave.net/wordpress/porto/demo10/

Yeah, we’re working on it. Hope you to understand that support reply may take upto 24 hrs, and it was midnight here.

Hi, Do you have a menu with theme location – Top Navigation? If you don’t have please create a new menu and add the menu items and select the theme location as “Top Navigation”. Please reference http://newsmartwave.net/wordpress/porto/documentation/#menu_setup

Thank you.

Hi i installed WP 4.2.1 after installing all needed plugins and activating my page goes white! after deleting all plugins it works again? please help me out here…

Hi, Please extend memory_limit 128M or higher in php.ini. If it’s not fixed please send me wp admin and ftp accounts. Let me check.

it worked you gave me the right fix :)!!!

Hi there,

I want to create marketplace or multi vendors with this plugin: https://wordpress.org/plugins/wc-vendors/

Does this plugin compatible with Porto theme?

Thanks

Thanks for your interest in Porto.

We also had no chance to test with this plugin yet.

porto/woocommerce/checkout/form-pay.php version 1.6.4 is out of date. The core version is 2.4.7,

Hi, We will update porto theme. Please update this file with the following content:
<?php
/**
 * Pay for order form
 *
 * @author         WooThemes
 * @package     WooCommerce/Templates
 * @version     2.4.7
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

?>
<div class="featured-box align-left">
    <div class="box-content">
        <form id="order_review" method="post">

            <table class="shop_table">
                <thead>
                    <tr>
                        <th class="product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
                        <th class="product-quantity"><?php _e( 'Qty', 'woocommerce' ); ?></th>
                        <th class="product-total"><?php _e( 'Totals', 'woocommerce' ); ?></th>
                    </tr>
                </thead>
                <tbody>
                    <?php
                    if ( sizeof( $order->get_items() ) > 0 ) :
                        foreach ( $order->get_items() as $item ) :
                            echo '
                                <tr>
                                    <td class="product-name">' . $item['name'].'</td>
                                    <td class="product-quantity">' . $item['qty'].'</td>
                                    <td class="product-subtotal">' . $order->get_formatted_line_subtotal( $item ) . '</td>
                                </tr>';
                        endforeach;
                    endif;
                    ?>
                </tbody>
                <tfoot>
                <?php
                    if ( $totals = $order->get_order_item_totals() ) foreach ( $totals as $total ) :
                        ?>
                        <tr>
                            <th scope="row" colspan="2"><?php echo $total['label']; ?></th>
                            <td class="product-total"><?php echo $total['value']; ?></td>
                        </tr>
                        <?php
                    endforeach;
                ?>
                </tfoot>
            </table>

            <div id="payment">
                <?php if ( $order->needs_payment() ) : ?>
                <ul class="payment_methods methods">
                    <?php
                        if ( $available_gateways = WC()->payment_gateways->get_available_payment_gateways() ) {
                            // Chosen Method
                            if ( sizeof( $available_gateways ) ) {
                                current( $available_gateways )->set_current();
                            }

                            foreach ( $available_gateways as $gateway ) {
                                ?>
                                <li class="payment_method_<?php echo $gateway->id; ?>">
                                    <input id="payment_method_<?php echo $gateway->id; ?>" type="radio" class="input-radio" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php checked( $gateway->chosen, true ); ?> data-order_button_text="<?php echo esc_attr( $gateway->order_button_text ); ?>" />
                                    <label for="payment_method_<?php echo $gateway->id; ?>"><?php echo $gateway->get_title(); ?> <?php echo $gateway->get_icon(); ?></label>
                                    <?php
                                        if ( $gateway->has_fields() || $gateway->get_description() ) {
                                            echo '<div class="payment_box payment_method_' . $gateway->id . '" style="display:none;">';
                                            $gateway->payment_fields();
                                            echo '</div>';
                                        }
                                    ?>
                                </li>
                                <?php
                            }
                        } else {

                            echo '<p>' . __( 'Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements.', 'woocommerce' ) . '</p>';

                        }
                    ?>
                </ul>
                <?php endif; ?>

                <div class="form-row">
                    <?php wp_nonce_field( 'woocommerce-pay' ); ?>
                    <?php
                        $pay_order_button_text = apply_filters( 'woocommerce_pay_order_button_text', __( 'Pay for order', 'woocommerce' ) );

                        echo apply_filters( 'woocommerce_pay_order_button_html', '<input type="submit" class="button alt" id="place_order" value="' . esc_attr( $pay_order_button_text ) . '" data-value="' . esc_attr( $pay_order_button_text ) . '" />' );
                    ?>
                    <input type="hidden" name="woocommerce_pay" value="1" />
                </div>

            </div>

        </form>
    </div>
</div>

thanks done

Hi. This theme has enables you to display how many times a post/page had been viewed?

Hi, Porto theme don’t have this feature. You should customize porto theme.

Hi there,

Great theme!

Yet I’ve got some questions..

1. Is it possible to change the tab names on the productpages? 2. Is it possible to change the tab order on the productpages? 3. Do you know if there is any plugin that provides multiple affiliate links for one product? 4. Is there any way to show standard 24 items on the product category page instead of 12? 5. How can I hide the metabar on the single post pages?

Thnx!

Hi, 1, 2: Please reference http://docs.woothemes.com/document/editing-product-data-tabs/ 3. I don’t know the affiliate plugins. Could you find this plugin on Codecanyon. 4. Please change the products per page in Theme Options > Woocommerce > Product Archive. Please check http://newsmartwave.net/wordpress/porto/documentation/#option_woocommerce 5. Please edit content-post-xxxx.php. You should remove the following code:
<div class="post-meta">
            <span><i class="fa fa-user" /> <?php echo __('By', 'porto'); ?> <?php the_author_posts_link(); ?></span>
            <?php
            $cats_list = get_the_category_list(', ');
            if ($cats_list) : ?>
                <span><i class="fa fa-folder-open" /> <?php echo $cats_list ?></span>
            <?php endif; ?>
            <?php
            $tags_list = get_the_tag_list('', ', ');
            if ($tags_list) : ?>
                <span><i class="fa fa-tag" /> <?php echo $tags_list ?></span>
            <?php endif; ?>
            <span><i class="fa fa-comments" /> <?php comments_popup_link(__('0 Comments', 'porto'), __('1 Comment', 'porto'), '% '.__('Comments', 'porto')); ?></span>
        </div>

By pushing your latest updates, WPBakery Visual Composer, YITH WooCommerce Ajax Product Filter and YITH WooCommerce Ajax Search asking for updates. Do you have new versions for these plugins?

Hi, We will embed again Visual Composer plugin in next release. Please update the yith plugins in Appearance > Install Plugins.

hi i can not use main menu and side menu both , can you help me ? thank you

Hi, Please reference http://newsmartwave.net/wordpress/porto/documentation/#menu_setup If you couldn’t fix, please send me wp admin and ftp accounts. Let me check.

I’m trying to create a 3 icon menu similar to this http://i.imgur.com/jkXk8ss.jpg but I am struggling to find the information necessary to do so. I initially saw this on the Porto theme and was hoping to use shortcodes to replicate it but cannot find any documentation on buttons that change text within the page (rather than send you to a link).

Hi, Please use visual composer tabs shortcode in Porto section when add a new element. When edit this shortcode, please select “Type” to “Simple”, “Icon Style” to “Style 6”, “Icon Effect” to “Effect 6” when edit tabs shortcode and add fontawesome icon when edit tabs shortcode within tabs shortcode. Please check http://newsmartwave.net/wordpress/porto/shortcodes/tabs/

This is exactly what I was looking for. Best support. Thank you.

Hi guys, Could you please tell how to add a triangle divider/separator on the bottom of a section. On your demo page: http://www.digifocus.nl/home-version-13/ at the bottom of the “Who we are” section the triangle is displayed. I can’t discover how to implement this. Thank you for your support. Regards, Marcel van Leeuwen

Hi, Please use visual composer separator shortcode. When edit this shortcode, please select show fontawesome icon and select “Chevron Down” icon on font icon page 5. Please check the divider styles in http://newsmartwave.net/wordpress/porto/shortcodes/dividers/

I cant change the demos, always gives an error 500, i already chance php limits and wp-config.php

Please update php version to 5.3 or higher. If it’s not working, please send me wp admin and ftp accounts. Let me check.

didnt worked, i sent you a message with the accounts

hi.. if buy this theme.., will i have all home version ?

In demo, i saw a many kind of home versions

Yeah, you can enjoy all homepage variations.

in the header my link for ‘wishlist’ points to mydomain/# how can i change it to point to the wishlist page?

Hi, Please edit the menu with theme location-Top Navigation in Appearance > Menus. Please add a wishlist page instead of a wishlist custom link.

Hi, Please edit the menu with theme location-Top Navigation in Appearance > Menus. Please add a wishlist page instead of a wishlist custom link.

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