59156 comments found.
Hi Igor,
can I automatically mask the Post offer -> url offer? from re-cash?
best greetings
We used some technics early, but we found that any link cloaking just increase chances to be penalized in search engines, so, currently, we don’t provide any functions for this
Hi. In the post page i set featured image as a perceft size but in the top table constructor page the thumbnails look terrible in every post image. how to correct this? i tryed to change the size in settings, media thumnail but it did not do the job good…
Top table uses cropped images with 1:1 ratio. Other sizes will look ugly in tables. You can configure your sizes with next changes
file
template-toptable.php
$width_figure_table = apply_filters( ‘wpsm_top_table_figure_width’, 120 ); $height_figure_table = apply_filters( ‘wpsm_top_table_figure_height’, 120 );
here you can control height and width size
You can also try to disable crop in theme option – global enable/disable
Also, you should change css
.top_rating_item figure>a img {width: 120px; height: 120px;} .top_rating_item figure {width: 126px;height: 126px;}
change to your own sizes and place in theme options – general options – custom css
How to create a child theme with rehub?
blank child theme is inside full theme package
specification-fields.zip plugin can’t be installed. Why? 
Need more info
Could you help me resolve problem with tabs, in post edit Tabis looking great but on post site does’t > http://imgur.com/dqIv8Ui
I tested it on on other themes and looks like only recash got problem with it.
Hi Could you tell me how make first image as a featured image ? ( sorry I wrote last comment from wrong account :/ ) Cheers
Insert table inside table shortcode. Find it inside shortcode generator
Is it possible to do it wiithout short code, cause I will have to make more than 100 edits ….
This plugin doesn’t work on shortcodes, check description
I meant Could you help me resolve problem with tabs, in post edit Tabis looking great but on post site does’t > http://imgur.com/dqIv8Ui . Without using any kind of shortcode , cause I will have to make more than 100 edits fot simple tabs ….
table { border-collapse: separate; padding-bottom: 1px; width: 100%; margin: 10px 0 20px; border-spacing: 0; font-size: 14px; } table tr:first-child th { border-top: 0 none; } table tr th, table tr td { padding: 10px 15px; border-bottom: 1px solid #e8e8e8; text-align: left; } table tr th { background: none repeat scroll 0 0 #f5f5f5; color: #111; font-size: 15px; font-weight: 700; text-transform: uppercase; } table tbody tr td { background: none repeat scroll 0 0 #FAFAFA; } table tbody tr:nth-child(2n+1) td { background: none repeat scroll 0 0 #fff; }
you can place this in theme options – general options – custom css
It looks now soo beautiful .
Like always , You Are The Best !
ps.
I think this should be as a default in theme & ” First image in post as a featured image ” ( if feature image is not chosed ), it’s just couple line of code, but gives
great features 
Hi Could you tell me how make first image as a featured image ?
can i let user put more than place in submit page ?
Not clear what you mean
You can edit form and add another field which you want
Hi,
I really like your theme and the possibilities it seems to have for linking to affiliates.
I am wondering how you get the different prices for a product on a page, such as http://rehub.wpsoul.com/product/woo-album-4/
There is a box with 4 prices (in this example only Amazon prices). Is this 1 product with 4 merchandisers and prices in it?
And is this the same info as on the review page in the Deals Box at the end of the page http://rehub.wpsoul.com/woocommerce-product-review/ ?
How is this done? Woocommerce, something else, as 1 product or multiple?
Would be nice to know, I am really thinking of buying this theme.
Kind regards,
Pieter
This part is one of unique function of theme. It’s combination of woocommerce (which works on such page as hub of deals) and Content Egg plugin (you can use also another plugin which works with shortcodes)
Here video https://www.youtube.com/watch?v=5-9B69fLa24
Great, thanks.
And can I add my own affiliate partner prices as well (I need some Dutch)? No need to do this automated (although it would be nice).
Kind regards,
Pieter
What affiliate partner do you use?
Hi, some shops like www.Bol.com have their own affiliate program, others use Tradetracker, TradeDoubler, Daisycon or Zanox. It are all partners in the Netherlands.
COntent Egg supports Tradedoubler and Zanox. Also Affiliate Window and Affili.net which are also popular in west Europe
That’s good to hear. And would it be possible to add custom affiliate links myself (no automation necessary) or import a csv file or other file with prices per product?
For Content Egg – no, it will be hard.
But you can import deals to woocommerce (deal per product). For this, we have another instrument https://www.youtube.com/watch?v=QSuTOSEeF_Y
I mean, that it’s possible to combine several instruments on the same site. This is why I call theme – Hybrid theme
Hi, How can i make the size of the grid image in RE:Cash larger like the one in RE:Pick? I just would like to the image to use up the space in the box instead of leaving huge margin around the image. Thanks.
.offer_grid .offer_thumb, .offer_grid figure{margin: -15px -15px 15px -15px !important; height:auto !Important} .offer_grid .offer_thumb img, .offer_grid figure img{width:100% !important}
After this code, you can use only images with ratio near 4:3, all tall images will be stretched
you can place this in theme options – general options – custom css
I have noticed that for recash theme , all custom elements in visual composer are disabled :/ how to active them?, because I can’t creat my dream home page without it .
http://i.imgur.com/hFoQm6h.jpgall of them available in recash, maybe you disabled them in settings /wp-admin/admin.php?page=vc-roles
Well thanks to your link I activated them, but I see this page first time so i have no idea why these options were off :/ .
Like always, you are the best ! 
Hi,
Yesterday all day and today I am trying to find an answer how could I make a list of woocommerce products, which were submitted only by subscribers. I am a little bit confused about this, so I believe you could move me on the right path, because I am just a beginner of coding.
Let me explain it in details. I have a community page, where people can see how many points they accumulated, a leader-board of all users and etc. In case because users can submit deals(coupons), on this page I want to display only deals, which were submitted by users, that have a role – subscriber.
If I understand correctly I have to create a meta key for coupons, which were submitted by subscribers. After that I can easily call it by using “List of woo products” in Visual Composer. Is it correct way to do it? Please assist me.
To get user role I am using this code:
<?php
$user = new WP_User( $post->post_author );
$author = get_the_author();
if ( !empty( $user->roles ) && is_array( $user->roles ) ) {
foreach ( $user->roles as $role )
echo "";
}
if ($role == 'subscriber' ) {
// some condition
}
?>
This is not correct code. For this – I recommend to use WC Vendor plugin, I am working on a major update special for this plugin now and it will be available on next week.
This plugin has such shortcode (role is vendor in it)
Okey, thanks. Just I worry a little bit about amount of plugins I have now. Now I use over 30 plugins, and looks that all of them are necessary. Is it normal to use such amount of plugins? On the other hand I was cached the pages I and front page loading time was less than 2 seconds. I think is pretty good score. What is your opinion about so many plugins?
Yes, it’s a bit too much amount. Can you write their names?
Yes, of course.
1. Affiliate Egg (this currently doesn’t work. I am waiting licence key from you);
2. Ajax Search Pro;
3. Akismet;
4. amr shortcode any widget (for some functions I made shortcodes in theme functions.php, but I don’t know how to customize widgets);
5. BuddyPress;
6. Capability Manager Enhanced;
7. Contact Form 7;
8. Contact Form DB;
9. Favorites;
10. Google Analytics by MonsterInsights;
11. Wise Chat;
12. MailChimp for WordPress;
13. myCRED;
14. RH Frontend Publishing Pro (Rehub Theme addition);
15. Shortcodes in Menus;
16. Shortcodes Ultimate;
17. Simple Tooltips;
18. Social Share myCRED Integration by Heateor;
19. Heateor Share Counts;
20. Super Socializer (18, 19 and 20 are used to count shares and display it on author profile);
21. WooCommerce;
22. WOOF – WooCommerce Products Filter;
23. WooSidebars;
24. Wordfence Security;
25. WordPress Social Login;
26. WP All Import;
27. WP All Import – REhub Post Add-On;
28. WP All Import – REhub Product Add-On;
29. WP Smush (I think this will not be necessary, becaus I use CloudFlare);
30. WPBakery Visual Composer;
31. YITH WooCommerce Wishlist;
32. Yoast SEO;
You can deactivate near 10 plugins
Ajax search pro – theme already has option to have ajax search
Contact Form 7 and Contact Form DB – why do you need 2 contact form plugins?
Google Analytics by MonsterInsights – Seo by Yoast already has similar module
Wise chat – not sure why you need this, Buddypress already has private message module
Shortcodes Ultimate – too much shortcodes which already exist in theme
Simple Tooltips – theme already has such shortcode
Heateor Share Counts and Super Socializer – why do you need two social share plugins?
WOOF – WooCommerce Products Filter – if you don’t have too much products with attributes – you don’t need this plugin, because woocommerce already has some filter widgets
Also, it’s not clear what type of site do you want to create. Multivendor?
26-28 – use plugins only when you need import something. Wp smush – you don’t need this plugin
1. Ajax search pro. I need to search only woocommerce stores. Is it possible with theme search? If it is, where can I set the options to search by taxonomy- store?
2. Contact Form DB, Google Analytics by MonsterInsights, Shortcodes Ultimate- deactivated. Thanks.
3. Simple Tooltips. Where can I find the shortcode?
4. Heateor Share Counts and Super Socializer. Super Socializer is the main plugin, and Heateor Share Counts is add-on. So I need both.
5. How about Affiliate Egg. Is it possible to get a licence key? I asked this question several times, but can’t get an answer.
I create a site only for discount coupons and products, which are for sale. So site is about saving of money. Afilliate program.
1. There is search module for this, but if you want to search taxonomy in default search form – you can use this plugin
3. In shortcode generator of theme http://screencast.com/t/nB7YpOyjLiSu
5. I can’t find any messages from you about Affiliate Egg, can you write it here?
If your site has only external products – you can use Post offer section for this. No need in woocommerce
1. Affiliate Egg.
I think you can’t find it here, because we had an email correspondence. Let me remind you a situation. I was bought Affiliate Egg licence for other site, but I decided to build new one (a site I build now) instead of old one. First site are already not live. We have agreed you provide new licence key for $5. From you I just got an email like this:
“I deactivated license of AE (you can activate it again on this site)”
But you didn’t paste any site link. Can you provide it?
2. Regarding using Post offer section.
Hmm.. I think in my situation Woocommerce is necessary, because Posts offer I use to post articles (blog) and products like this: http://www.savelex.com/brilliant-products/
Woocommerce is used for posts like this: http://www.savelex.com/product-tag/free-shipping/
and also like this (display all coupons of one store): http://www.savelex.com/store/1800-flowers/
It means I post specific products (for these I need Affiliate Egg) and I post discount coupons for many stores.
Is it clearer now? 
- – - – - – - – New questions – - – - – - – -
3. How can I change this text of button to “More Products” or something similar. http://www.screencast.com/t/irYDI0FY1PkQ
4. I can’t understand how to override functions of parent theme using child theme. Below is short function from review_functions.php (just an example, I don’t want to change exactly this). How could I override it? I have tried to past it to functions directory of child theme and then to change, but it didn’t work.
if( !function_exists('rehub_get_overall_score_editor') ) {
function rehub_get_overall_score_editor(){
$thecriteria = vp_metabox('rehub_post.review_post.0.review_post_criteria');
$score = 0; $total_counter = 0;
foreach ($thecriteria as $criteria) {
$score += $criteria['review_post_score']; $total_counter ++;
}
if( !empty( $score ) && !empty( $total_counter ) ) $total_score = $score / $total_counter ;
if( empty($total_score) ) $total_score = 0;
$total_score = round($total_score,1);
return $total_score;
}
}
5. I have an issue with Reset of password. I use theme pupop for sing up and log in. The problem is that I get an email like this: http://www.screencast.com/t/skMJNRUfjFzJ
A link to change password redirect to default wp-login.php. I need redirection to user account page, where he or she could change a password. How can I do that?
1. Affiliate Egg – I am not sure what link I need to send you. Your license is deactivated and you can activate it again on new site
3. Text can be changed as all other localization strings. Use Loco translate for this. (you can translate only some strings, plugin has search for this)
4. Yes, function must be added to functions.php of child theme
5. Ok, I will add such option in update
1. Thank you. Now Affiliate Egg works as expected. Sorry for that. It was my mistake.
Now, when this plugin is active I have one question related with it.
On my site I want to display only products, which are for sale. Is it possible to create some additional filter and show only discounted products?
It means, that the products are displayed on page, if affiliate Egg has two prices (new and old).
Also I want to pay the money for additional works you made. Can you please submit your bank account by this email: info@savelex.com
3. Thank you for this suggestion to use Loco translate plugin. I honestly didn’t know the plugin like this on the whole exist 
I am not sure if this will work, but I think it must. here settings for visual composer module to show only posts which connected to affiliate egg and has old price http://screencast.com/t/yKSsMiFfsQ
Don’t forget that you must have enabled option to save data from AE to post meta (in settings of plugin)
can forum and slider be enabled in re pick?
yes
Please, Can I use a third party plugin like Doc Plus – Woocommece Doc Viewer Wordpress Plugin?
You can use any plugin with theme
Hi,
how can i make the footer full width? You can see my setting here -> https://picload.org/image/rrrdgllp/footer.jpg
Thx
You have unclosed tag inside content, widgets. I can’t check because you closed site from non loged users
Thx. i have find the problem. I forget a in the newsletter widget
All of our buttons in our sidebars with the offer are gone plus all of the offer boxes within the reviews are gone! So now there is no way for readers to click through to the merchant on any of our reviews!
Don’t say we can attach them at the bottom of the review, because I do not have the time to go through over 250 reviews and update them!
If you need TA – copy file admin/metabox/post_type.php from previous version of theme to current
Old attached TA offers are working in new theme also
no, they aren’t working in the new theme if you edit a review and save it, you loose all the TA information and the offer box, buttons, etc. are gone. See screenshot: https://drive.google.com/open?id=0ByLP0XQOHZMpZnU1b2NkOUI5LUU
Yes, I mean that it’s working in old post. New post must have new way of adding offers or use old file as I wrote early
But it’s unrealistic to think people aren’t going to edit existing reviews… and when you do you lose everything. Also should have given a heads up that this would happen.
If I copy this file back will it negatively impact anything with new updates?
If you copy old file, only one thing will be missed – pros and cons section inside review. But it’s possible to combine old and new file
copying that file over, only fixed part of the problem. Wherever we have the [offer_product] shortcode – which is on all our reviews… the offer box still does not show up.
really need to get this resolved….
so we are going to have to combine these files (old and new) each time we upgrade now, until we get our entire site migrated over to woocommerce?
But I didn’t change offer_product and it supports TA
http://screencast.com/t/zmdf96EeKdIf you saved post after update to new version, you need to assign TA offer again
2. Yes, you need to set this file each time after update. To combine two files – use old file and add next code
array(
'type' => 'textarea',
'name' => 'review_post_pros_text',
'label' => __('PROS. Place each from separate line (optional)', 'rehub_framework'),
),
array(
'type' => 'textarea',
'name' => 'review_post_cons_text',
'label' => __('CONS. Place each from separate line (optional)', 'rehub_framework'),
),
after this code http://screencast.com/t/xm8aH8ISsGfI
Do you have 1 offer per post or you have list?
Hello 
Is ” Rehub ” compatible with ” UberMenu ” ? .
^** If you don’t know then could this UberMenu creating some issues with Rehub ? .
Cheers
Yes, it’s compatible
Hi, It takes a long time to reveal a coupons. it seems that something is not right…
It’s the same as search, it’s depending on your server speed. What do you have in memory limit now after changes in wp-config.php?
Hi Igor, The limit memory of PHP server is the 512MB.
I mean on your site, not on the server
Hi Igor, I have 512MB. I send you the info by private mail.
acording to your screenshot, you still have 40 mb. send wp-config
Hi Igor, I returned to modify the file of wp-config with: define( ‘WP_MAX_MEMORY_LIMIT’, ‘256M’ ); I don´t now why not record my modification of wp-config.
I already wrote you early, that you inserted code in wrong place. Must be before comment which tells you that you must insert customizations before this string
http://screencast.com/t/Z2gpBygqI send you email by private. Thanks.
Hi, You can tell me something about of my email please. Thanks,
Now you have correct place of code, but code is not correct. I don’t know where you find it, https://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/ compare one more time with your code and make it correct
Hi Igor,
Thanks for you reply.
I’ve made the changes as indicated on of link WooThemes but I do not see improvement
I returned to talk to my hosting and they say that my memory is established in 512MB PHP.ini
Please Igor, ¿can you enter my website and see what’s happening?.
This problem is driving me crazy.
What value do you have in snapshot plugin now?
you need to add 512mb as value
Anyway, this can be without any effect on speed. If hosting is not optimized for wordpress, all cache and wordpress optimization will not help. I can’t optimize ajax code, because it’s already optimized and use simple wordpress functions which can’t be made in another way.
I use simple shared hosting on demo site and I don’t have problem with speed. I pay 3$ in month for hosting and it works good. Maybe you choose not the best hosting.
Currently I see too slow server response time. Also, one of possible problem is not correct cache settings. It’s very common issue, when not correct settings for cache can slow site instead of increasing speed. You can try to deactivate
Hi Igor,
Thanks for your answer.
I’ve gotten it to work better the search engine and the speed of revealing coupon. I talked to my hosting and have reviewed that there was a small mistake with a node. Even so I would like to work a bit faster
but much improved.
You mind giving me your opinion on the functioning of the web now.
Can you tell me what hosting you use by private.
It’s not private info. I use Siteground and currently very happy with their hosting and support and this in not promotion. I tried all most popular hosting companies and ST is the best. Also, Wpengine is very good, but their price is bit expensive.
Hi Igor,
- I change the host to SiteGround (It is powerful and economical). - I installed the plugin of cache that your recommend (WP Super Cache). - I installed the plugin of Autoptimize. - I updated the data of .htaccess as recommended in (https://wpsoul.com/how-optimize-speed-of-wordpress/).
I’m still feeling slow the search of Web.
¿There are any other way to increase speed searched? ¿Or is this the only thing what can be done?
For me, speed now is much much better
there is one way to increase speed of search, but not so easy. I will update this in future.
Ok Thanks,
I wait for this update 
Cash child theme and list view: how I can change the hot meter look to slider like here: http://repick.wpsoul.net/phasellus-nec-sem-in-justo-pellentesque-facilisis/ on homepage list view and post details page. I’m average developer so if you can give code and instruction what file modify.
.table_cell_hot.fullwidth_cell {opacity: 1;}
.hotminus:before{content: "\f088";}
.hotplus:before{content: "\f067";}
.gradus_icon:before{content: "°"; font-size:100%}
you can place this in theme options – general options – custom css
Great, thanks! How about the same for post detail page?
For post – it’s not available, because it will not fit design of CTA block in recash. Possible only with customization of core files. Price is $20 for this
Please, could you give me some tip where to start looking?
You need to compare single.php file of recash theme and repick theme. You will find there function which shows hotmeter and thumbs meter, they have logical names
Thank you so much! Would still give me advice what file I need to modify home page listing (recash)?
inc/parts/query_type1.php
Hi i am searching solution for:
1. i have different domain name for ReCash type theme and ReDirect Type theme.. ok ? Example: For ReCash domain is abc.com and for redirect : xyz.com
2. Do i need to buy different licence to install on my different domains?
3. or i can use the same theme with all benefit under one theme .. please help.
I want to use all of theme as different sites as you mentioned in the demo ReCash. ReDirect. etc…
or alternate is : ABC.COM==> FRONT PAGE DEFAULT
REDIRECT THEME REDIRECT.ABC.COM AND RECASH.ABC.COM ..
IF THIS IS THE SOLUTION THAN HOW TO DO THIS? HOW TO SET RECASH THEME AND REDIRECT THEME ON SAME DOMAIN WITH SUB DOMAIN SETTING? SO I CAN TAKE ALL THE BENEFITS AT ONE PLACE 
Thank You
Yes, you need to buy separate license for domains if you want to have support for them. Also you can use single license on unlimited subdomains