59208 comments found.
Hi Sizam, do you offer custom design service?
Design – no. But customization service is possible
Hi, sizam how can we get rid of this issue shown in google chrome lighthouse test > [aria-*] attributes do not match their roles for rehub search icon > please check the image > https://prnt.sc/Lpog3eE_9gyA
theme uses wordpress core search form and it has correct labels “Search”, you don’t need to worry about this. If you want to customize and place something own, modify files in inc/header_layout
When is the next discount coming?
We don’t plan discount in nearest dates
Can we use our filters instead of Latest, Hottest, Lowest Price, Highest Price etc on repick theme?
As you see, we use https://repick.wpsoul.net/
How can i create custom filters?
you don’t need to create them, they are added Automatically when you import repick demo
I want to create different filters, not these which are appears in repick demo. You understand ?
then you need to use page builder and enable filter panel in options of post blocks https://rehubdocs.wpsoul.com/docs/rehub-theme/page-builder/page-builder/
How to disable the related post section which comes right after the post. I am using repick theme. Not using woocommerce.
Theme options-global enable
I want to remove the related post section which appears in the post area check screenshot i want to remove the one which appears first https://i.postimg.cc/B6hMw8FB/Screenshot-at-Aug-20-16-52-17.png
this is not from theme. I guess, it’s from Jetpack
Thank you. It solved. One more thing i like to discuss. I have shown the affiliate button after post content but it shows the price as well can show only the button as you can see in the screenshot above
Hello,
Given the documentation you provided me earlier, my site is still not functioning the way I anticipated it to.
Can you please help me in solving this issue? I was given two links, read through each one, and it still will not work.
Please, create topic according to guidelines, with all information, links, screenshots. This will allow us to understand your issue and give you a better and fast answer.
https://sizamtheme.support-hub.io/articles/how-to-write-to-support-if-you-need-technical-helpIs worth it and safe to upgrade my wordpress to php 8.1 or I can keep the version 7.4 ?
better to update to 8 version first, it’s safe
How can I activate “post offer” for a custom post type?
I started using ReHub when you there was ThirstyAffiliate for coupon management included. When it stopped working, I purchased a coupon plugin that I’m using right now. But I’m not fully satisfied and would prefer to use your integrated feature when it’s already there.
When I activate the additional post type in the theme options for that purpose, the “posts” don’t have “post offer” functionality.
I use a child theme with template functions file and wouldn’t mind creating a template file if necessary.
theme options – global enable – duplicate meta panel
Amazing, thanks!
Hello
1.Is Greenshift included with Rehub? 2.I imported the ReviewIt demo when it was built with Elementor, now how do I reimport in Gutenberg?
Thank you
hi I need This Function add
Appearance-widgets-latest comparison
How to add Product Custom Comparison Like this widgets
Why do not use widget?
there is no such block, but as it’s simple image and titles, you can build it with Flexbox block in gutenberg editor in Reusable template section, then copy shortcode of template and use in woocommerce products
Hi , how to activate price history for deals in recash/redeals ?
Price history is available only if you use Content egg free or pro version
Hi, I use logo with 250×250px, partially transparent png with a file size of +/- 30kB (optimized with online generator). But somehow the alternative, scale-up versions in 600w, 1200w that get loaded additionally have a size of over 240kB and PageSpeed rates it really badly because of that (the 600w in mobile view to be precise). Is it possible to cut everything above original size out or to optimize the upscaling procedure?
Because Wordpress doesn’t resize png files properly so you should not use this format. Also it’s outdated and must be replaced by webp
I’ve avoided .webp because they didn’t show in Safari. Has this changed meanwhile?
Ah, okay. It works on 11 Big Sur only. Currently, that would be quite a lot of users that wouldn’t see it. I optimized and replaced the upscaled files for now. For logo only, that’s fine, I think.
I haven’t updated myself, because my Adobe Suite would stop working then ^^
“because they didn’t show in Safari”
of course, it shows. It doesn’t show only on old versions of ios and macos
Написал вам 2 тикета которые пока без реакции
I watched your video on editing the Cons Pros block. How do I change the red X icon for the Cons list to something else?
You can’t change it. But you can build own block in Greenshift plugin and Advanced list block
[Re:Deals] Hi, i don’t understand if each deals and coupons are a “user post” or a “user article” Thanks for explanation
Wordpress has only posts
Dear Sizam,
For SEO, I need to add a “read more” button to shorten my long content in tab Description of single product, like this pic: https://ibb.co/Hd79kwk
Below extra codes in functions.php is work on default product layout but not “compare prices by sku” in https://thongsokythuat.vn/sp/vivo-y20i-2020/
add_action('wp_footer','chowordpress_readmore_flatsome');
function chowordpress_readmore_flatsome(){
?>
<style>
.single-product div#section-description {
overflow: hidden;
position: relative;
}
.single-product .tab-panels div#section-description.panel:not(.active) {
height: 0 !important;
}
.chowordpress_readmore_flatsome {
text-align: center;
cursor: pointer;
position: absolute;
z-index: 9999;
bottom: 0;
width: 100%;
background: #fff;
}
.chowordpress_readmore_flatsome:before {
height: 55px;
margin-top: -45px;
content: "";
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff00', endColorstr='#ffffff',GradientType=0 );
display: block;
}
.chowordpress_readmore_flatsome a {
color: #318A00;
display: block;
}
.chowordpress_readmore_flatsome a:after {
content: '';
width: 0;
right: 0;
border-top: 6px solid #318A00;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
display: inline-block;
vertical-align: middle;
margin: -2px 0 0 5px;
}
</style>
<script>
(function($){
$(document).ready(function(){
$(window).on('load', function(){
if($('.single-product div#section-description').length > 0){
var wrap = $('.single-product div#section-description');
var current_height = wrap.height();
var your_height = 300;
if(current_height > your_height){
wrap.css('height', your_height+'px');
wrap.append(function(){
return '<div class="chowordpress_readmore_flatsome"><a title="Xem thêm" href="javascript:void(0);">Xem thêm</a></div>';
});
$('body').on('click','.chowordpress_readmore_flatsome', function(){
wrap.removeAttr('style');
$('body .chowordpress_readmore_flatsome').remove();
});
}
}
});
});
})(jQuery);
</script>
<?php
}
Can you tell me the correct “CCS selector class” of compare prices by sku product layout? Cause I use CSS id “section-description” it not work.
Thanks.
Sorry, but we can help with customization only for buyers with active support
What is the process to add a Video or YouTube vid URL on the website? FAQ documentation doesn’t talk about it. [rh_get_post_videos] this is very confusing… requires more details..
just drop youtube url in content
Hello, I need deregistering. We use this Lic# for customer demos I need to use to new demo. please guide me to deregister link. Thank you.
NOTE: Sorry, is ready please do not deregister. Thanks
Sorry, is ready please do not deregister. Thanks
Hello,
I am very happy with the ReHub theme!
I need little help.
Can you please add two Google fonts, Space Grotesk and Spece Mono?
I mean by this add-in Theme options, Font family.
Thanks in advance
Ok, will be added
Thanks Sizam! You are the best