23226 comments found.
Hello, does the drop down menu stays sticked? I need to build a site with a menu similar to mac.com
Please contact us through purchased account.
Hello, I hope you are doing well.
I see that there are two custom tabs in the product pages. What should I do in order to add more custom tabs?
Thanks a lot
Hi, Porto theme support 2 custom tab and 1 global tab. It’s impossible to add more tabs. You should customize the following files: inc/content_types/product.php woocommerce/single-product/tabs/tabs.php
Hi, can u recommend any cache plugin that u know it works well or best? W3TC, WP Super Cache, WP-Rocket?
Thank you!
We recommend W3TC and WP Super Cache.
RTL Problem ?
What problem? Please let me know your question.
How do I turn to the theme of Arabic.you tell me
ADD YOUR CUSTOM RTL CSS HERE ?
Please select the language in Settings > General. You can add custom style for rtl in style_rtl.css
I’ve imported the demo content but the slider (homepage version 11) keeps loading as well are some other sliders on the homepage (and images). I’ve contacted you twice without any response. I hope that you can help me to fix this problem as soon as possible.
Kind regards
Please go to Ultimate > Modules > Scripts and Styles and configure the options and click Save Changes.
Do you know the custom CSS to reduce the margin above and below my header Logo ?
Please send me your site url.
Its ok, I managed to fix it.
No other fonts show up when you click on the drop down font field within the typography section of the info box element but just the default font. I thought it was part of the updates…
Please select the fonts in ultimate > google fonts on admin sidebar.
but then how would I select the element to change its font?
Hi, Please go Ultimate > Google Fonts. You can see google fonts in this page. Please search the font which you want to add. Please click “Add to Collection” buttons and then will be add this font in Your Font Collection. Please configure the font settings and click “Update Font”. When edit the ultimate addons shortcodes, you can select this font.
I think you are missing the point. I mean how would you replace the fonts for the existing elements in the website site like product title and so forth? usually custom themes have a typography option so customers can get to switch the fonts and not adding a css code. Like you only have it for body and alternative within the skin options but it is limited…
We are going to add typography options in next release. Could you use these options in the future?
How to get this theme to work with Polylang multilanguage plugin?
We didn’t tested this plugin in porto theme. You need to customize this plugin in porto theme.
I would like to report a bug in template: Sometimes color changes that make the skin session are not applied in the frontend. I am developing a site with your theme and development environment that began to happen. I made a new clean installation of wordpress and started again from scratch, installed theme and began to set up the site. I was usually working customizing colors when suddenly no longer works.
ps .: css folders are with permission 777
please change the permission of the following folders to 777 or 755. less scss css/skin.css, skin_rtl
as I explained in the previous message folders were already with permission 777. I switched to 755 and also not solved.
Any changes that I make in the skin thema session is not being applied in the frontend.
Problem solved: I cleared the cache of my virtual machine and everything is perfect now. Thank you for your help!
What is wrong with your demo site? I can’t access the demo site
Is the theme only best used as an ecommerce site?
Our demo sites are working. You can use porto theme as corporate theme, portfolio theme.
Hi there,
1) Is it possible to hide the prices of the products in the SHOP page or frontpage and only let them visible in the product detail page ??
2) Also, can you please tell me how to deactivate the sliding in the Porto Category Product Slider in the Visual Composer as I don’t want the products to slide automatically, I want them to slide only if the user clicks the arrows to slide
3) How do we change the background color / text color / etc… of the Footer Top Widget ??
Thanks
Hi, 1. It’s possible. You can add the following code in function.php: remove_action(‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_loop_price’, 10); 2. Please change the following code in js/theme.js on line 2810: autoPlay : 5000, to autoPlay: false After change, please minify this file and copy all the code in theme.min.js 3. Could add custom styles? .footer-wrap .footer-top { background: url(http://image_url); color: #xxxxxx; }
Hello again, in numer 2), can you please give me step by step instruction or video or something because I don’t know how to minify js/theme.js and where to copy all the code in theme.min.js ??
Thanks
Hello again, in numer 2), can you please give me step by step instruction or video or something because I don’t know how to minify js/theme.js and where to copy all the code in theme.min.js ?? Thanks
Hi,
2. You can find the following code in theme.js:
// Woocommerce Products Slider
(function(theme, $) {
theme = theme || {};
$.extend(theme, {
WooProductsSlider: {
defaults: {
elements: $('.products-slider')
},
initialize: function($elements) {
this.$elements = ($elements || this.defaults.elements);
this.build();
return this;
},
build: function() {
var self = this;
self.$elements.each(function() {
var $this = $(this);
var cols_lg = $(this).attr('data-cols-lg'), cols_md = $(this).attr('data-cols-md'), cols_xs = $(this).attr('data-cols-xs'), cols_ls = $(this).attr('data-cols-ls');
var $slider_wrapper = $this.parents('.slider-wrapper');
if ($this.find('.product').length) {
portoCalcSliderMargin($slider_wrapper, $this.find('.product').css('padding-left'));
portoCalcSliderButtonsPosition($slider_wrapper, $this.find('.product').css('padding-left'));
} else if ($this.find('.product-category').length) {
portoCalcSliderMargin($slider_wrapper, $this.find('.product-category').css('padding-left'));
portoCalcSliderButtonsPosition($slider_wrapper, $this.find('.product-category').css('padding-left'));
}
portoCalcSliderTitleLine($slider_wrapper);
var single = $(this).data('single');
var singleItem = false, autoHeight = false;
var pagination = $(this).data('pagination') == '1' ? true : false;
var navigation = $(this).data('navigation') == '1' ? true : false;
if (!navigation && !pagination)
navigation = true;
if (single) {
singleItem = true;
//autoHeight = true;
}
var items = [], scrollWidth = theme.getScrollbarWidth();
var i = 0;
if (cols_ls)
items[i++] = [0, cols_ls];
else
items[i++] = [0, 1];
if (cols_xs)
items[i++] = [481 - scrollWidth, cols_xs];
if (cols_md)
items[i++] = [768 - scrollWidth, cols_md];
if (cols_lg)
//items[i++] = [parseInt(theme.container_width) + 30 - scrollWidth, cols_lg];
items[i++] = [992 - scrollWidth, cols_lg];
$(this).owlCarousel({
autoPlay : 5000,
navigation: navigation,
navigationText: ["", ""],
pagination: pagination,
rewindNav: true,
stopOnHover : true,
singleItem : singleItem,
autoHeight : autoHeight,
itemsCustom : items,
lazyLoad: true,
beforeUpdate: function() {
if ($this.find('.product').length) {
portoCalcSliderMargin($slider_wrapper, $this.find('.product').css('padding-left'));
portoCalcSliderButtonsPosition($slider_wrapper, $this.find('.product').css('padding-left'));
} else if ($this.find('.product-category').length) {
portoCalcSliderMargin($slider_wrapper, $this.find('.product-category').css('padding-left'));
portoCalcSliderButtonsPosition($slider_wrapper, $this.find('.product-category').css('padding-left'));
}
portoCalcSliderTitleLine($slider_wrapper);
},
afterInit: function() {
if ($this.find('.product').length) {
portoCalcSliderButtonsPosition($slider_wrapper, $this.find('.product').css('padding-left'));
} else if ($this.find('.product-category').length) {
portoCalcSliderButtonsPosition($slider_wrapper, $this.find('.product-category').css('padding-left'));
}
}
});
});
return self;
}
}
});
}).apply(this, [window.theme, jQuery]);
You should change “autoPlay : 5000,” to “autoPlay: false”.
Please copy all the code in theme.js.
Please go http://jscompress.com/
Please paste the codes and click “Compress Javascript”.
Please copy the compressed code and paste in theme.min.js
Thank you,
One more question.
1) Besites hiding the price of the products in the shop page using the following code in function.php: remove_action(‘woocommerce_after_shop_loop_item_title’,
Is it also possible to remove this inside the product page ??
2) Instead of removing the price of the products, can I change the look of it in order to show like this for the variable products ??
instead of showing ”$19-$200” for variable products to only show “from $19” ??
Also the same thing for the product page.
Thanks
Also, once I minify theme.js, I copy the minified code in theme.min.js and erase the code inside this file or I paste the code after all the code in that file ??
Thanks
Never mind my last question, i found out bymiself
Just tell me once I minify theme.js, I copy the minified code in theme.min.js and erase the code inside this file or I paste the code after all the code in that file ??
Thanks
Never mind my last question as I found out how to solve this bymiself.
Just tell me once I minify theme.js, I copy the minified code in theme.min.js and erase the code inside this file or I paste the code after all the code in that file ??
Thanks
You should copy the code in theme.js and minify this code in http://jscompress.com and paste the minified code in theme.min.js.
Hello again,
What I want to know is if I erase all the code that was in the theme.min.js and add the code generated by jscompress.com from the theme.js of the slider I changed or if I only have to add this code below all the code that allready exists in theme.min.js
Thanks
Hello again,
What I want to know is if I erase all the code that was in the theme.min.js and add the code generated by jscompress.com from the theme.js of the slider I changed or if I only have to add this code below all the code that allready exists in theme.min.js
Thanks
You should find ”// Woocommerce Products Slider” code block and replace with above code.
After the last update the menu links in block “Home Banner” stopped working in mode browsing on the phone but normal surfing on the Desktop links work well/
http://officedio.co.il/Hi, Could you check after refresh phone browser cache?
yes,Does not help
Hi, I don’t have another solution. Please check on another phone.
Hi, there is something wrong with one of the plugins. When I install the theme, everything is fine until i install all the plugins. After I do that and visit the website or refresh into the wordpress dashboard, I keep getting an error message. I have figured out that the Master Slider is one of the plugins causing this error:
“500 Internal Server Error”: It reads: “Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.”
Hi,
Please add the following code below define(‘WP_DEBUG’, false); in wp-config.php: define(‘WP_MEMORY_LIMIT’, ‘128M’);
We recommend to you extend memory limit.
Please extend max_execution_time in php.ini.
If you are getting 500 error after change, please send me wp admin and ftp accounts. Let me check.
Is this theme compatible with multisite?
Yes, we also built demo site as multi site.
Before I bought this theme I asked if it played well with official woocommerce plugins and the answer was yes. Product Reviews Pro is an official Woocommerce plugin that we use on our website (here’s the link: http://www.woothemes.com/products/woocommerce-product-reviews-pro/). Its user experience completely breaks with this theme. Will you provide a fix?
Could you send me your site url? Let me check.
Look t this page under the questions and comments tab: http://agencies.publiseek.com/shop/startup-launch-pr-package/
Look t this page under the questions and comments tab: http://agencies.publiseek.com/shop/startup-launch-pr-package/
.contribution-form-wrapper { margin-bottom: 30px; }
#reviews .commentlist li { padding-left: 0; }
This was a quick bandaid fix that does little. I’m not sure why the Product Reviews Pro continues to look so ugly, I’m guessing there are some css naming conflicts. It would probably need about 50 lines of CSS to bring back to a look&feel that can be used in production with real users.
Could you add custom styles? We changed default woocommerce styles in porto theme. Sorry, I don’t have another solution.
You’re are showing author images in place of avatar. Is it possible with your theme? If yes how to do that? I’m willing to purchase the theme.
Sorry, do not understand what you mean.
In your demo, your are displaying author image in author box after blog post. But there is usually a auto generated avatar. Is it possible to change avatar with custom image, if yes can you tell me how?
Did you purchase Porto from us?
Is it possible to hide the prices of the products in the SHOP page or frontpage and only let them visible in the product detail page ??
Thanks
Please contact us through purchased account.
Hi, could you please instruct me how to remove information about author, date, comments etc. in each post/blog? How to modify CSS? Thanks
Hi, Please configure the options in Theme Options > Post > Single Post.
Hi, I know about this option but I need to hide complete information/complete row with information about author, date, comments. Not just author. I tried to add information into custom CSS but unfortunatelly it does not work – I added .post-meta { display: none; } Unfortunatelly this did not help. Could you please help me to add correct css? Thanks.
Hi, just to be sure – I work on child theme.
Could you change the template file? You should customize content-post-xxxx.php (content-post-large, content-post-large-alt, content-post-full, content-post-medium). You can copy these files in porto-child folder and can customize.
How do I use custom Font On the Theme???
How do I use custom Font On the Theme???
You should add custom font styles in style.css. You can add like
@font-face { font-family: “custom-font”; src: url(‘fonts/custom-font.eot?v=1.0’); src: url(‘fonts/custom-font.eot?#iefix&v=1.0’) format(‘embedded-opentype’), url(‘fonts/custom-font.woff?v=1.0’) format(‘woff’), url(‘fonts/custom-font.ttf?v=1.0’) format(‘truetype’), url(‘fonts/custom-font.svg?v=1.0#minicart-font’) format(‘svg’); font-weight: normal; font-style: normal; } body { font-family: “custom-font”; }
You should upload the font files in fonts folder.