Discussion on REHub - Price Comparison, Multi Vendor Marketplace Wordpress Theme

Discussion on REHub - Price Comparison, Multi Vendor Marketplace Wordpress Theme

By
Cart 38,532 sales
Well Documented

sizam supports this item

Supported

59207 comments found.

Hello!!

I just purchased your theme today but I failed to install it. I am just trying to upload the theme as you wrote in the DOCUMENTATION. I go to Wordpress Admin->Appearances->Themes->Add New->Selected your theme. Uploading completed 100% then it displays on the screen “Are you sure you want to do this?” with a link saying “Please try again”. The title bar of window says, “WordPress failure Notice”

is it possible?

only with customization. answered in email

Yes, thanks for replying to my E-mail.

Any chance of flash sale? Any email from the designer I can contact for pre-purchase? thanks.

can I use this theme directly as just an online store? No vendors involved but just me as the owner and works like any other online store?

Yes of course, you can.

Hi reg the child theme Re:direct, can we have a new page like home page, but only the listings/posts in the same layout style like home page and also any option for the listings to expire automatically after some date or days 2. are multiple listings allowed from same email id? possible ? how?

1. You can set expiration date in any post and product

2. not clear what you mean

1. i mean set expiration date = 5 days and after that all the listing submitted by users will move from live to draft

2. from front end, a user submitted 1 listing, with abc@gmail.com, next date subitted another listing with same abc@gmail.com – multiple listings from same email id allowed

3. in home page, there is a big head image on homepage, after which the listings are displayed,,, can we remove the image and only listings are seen on the home page

1. only with customization

2. yes

3. you can create any page design with page builder http://rehubdocs.wpsoul.com/docs/rehub-theme/page-builder/

Hi,

is there a way I can see the biggest discounts of my products (in %) ? I would like to have a list of the top 10 discount for instance to send a newsletter with this information.

Thanks,

Mélodie

There is no such function in the theme. All discounts are calculated on the fly.

Hello,

I would like to add a tab bar menu on mobile.

How can i do that ?

With customization only.

How can I customize this? Is there an extension to do this?

I upgraded the rehub theme version 7.1.7.3 to ver 7.2.1. After the update Theme Options page stopped working. How to fix that?

I tested that if I reverting back to 7.1.7.3 Theme Options work as used to.

Please, send admin access in the contact form. Provide also in message: your issues and link on current comment (you can know it if you press on time in your comment)

How can I create contact us page? Can you please suggest best free plugin?

Contact form 7

Hi Dev,

I want to add 4 footers to my ReHub theme and I don’t know how to do it. This documentation does not help me much. I can’t find column section in Text Widget.

https://igcse.net is my website http://rehubdocs.wpsoul.com/docs/rehub-theme/how-to/divide-footer-section/

Thanks, but I can add only links or add a widget with shortcodes. I wanted to put website visit counter in that empty space you see in https://igcse.net in the footer. I don’t seem to find a way to do that.

you can convert your widget to shortcode https://wordpress.org/plugins/widget-shortcode/ then, use it in text widget

On CSS codes,

.def_btn, input[type=”submit”], input[type=”button”]{ background-color: #ebebeb; background: -webkit-linear-gradient(top, #fff 1px, #f9f9f9 1px, #ebebeb); background: linear-gradient(to bottom, #fff 1px, #f9f9f9 1px, #ebebeb); border: 1px solid #b9bbbd; border-radius: 3px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.08); transition: all 0.4s ease 0s;outline: none;font: 700 14px/16px ‘Roboto’, trebuchet ms; text-decoration: none;-webkit-appearance: none; }

Due to this code, WPdiscuz “post comment” background color can not be changed even I modified on setting for WPdiscuz. How can I do to fix this conflict?

Thank you. Jen

send link

Hi there sizam, glad finally to buy your theme. I am having troubles with Requests in pingdom tools, they are 200. Too much requests i guess. Also page size is 2,4Mb in just a single article without sidebars. Can you explain me how to solve that?

So if i disable every plugin instead wp-rocket autooptimize and just a few safe well known ones, the problem should dissapear? I understand external sites like google or FB cant control that, but i think they are suspicious malware. Normally how many requests make Rehub theme in a clean instalaltion?

you don’t need to disable all plugins, just disable plugins for social and other things which use external scripts

You don’t need to worry about requests. The only thing which you must improve is site speed. Better to have under 2-3 sec loading. Also, disable autoptimize if you use wp rocket

Ty, i did that and worked quite well, now loading speed is 1,8 sec

With repick theme I want to disable offer button in archives and loops, but when i do it also takes away the price. Is there a way for the button to take the user to the post but still show the price?

do you use child themes?

Yes i am using repick

ok. register on trello.com

I am trying to add my affiliate IDs to offer submitted by users but this doesn’t work if I try to pass more than one affiliate links. I am following your example at http://rehubdocs.wpsoul.com/docs/rehub-theme/user-submit-memberships-profiles/auto-adding-affiliate-links-to-user-submitted-offers/

What am I doing wrong?

function rh_change_affiliate_string($offer_post_url, $checkdomain, $afftag, $affstring){
    if (!empty($offer_post_url) && strpos($offer_post_url, $checkdomain) !== false) :
        if (parse_url($offer_post_url, PHP_URL_QUERY)): //check if link has query string
            if (strpos($affstring, $offer_post_url) !== false) : //check if link already has affiliate ID
                $offer_post_url = preg_replace("/(".$affstring.").*?(\z|&)/", "$1".$afftag."$2", $offer_post_url);
            else:
                $offer_post_url = $offer_post_url.'&'.$affstring.$afftag;
            endif;   
        else:
            $offer_post_url = $offer_post_url.'?'.$affstring.$afftag;
        endif;
    endif;  
    return $offer_post_url;    
}
add_filter('rh_post_offer_url_filter', 'link_change_custom');
function link_change_custom($offer_post_url){
$offer_post_url = rh_change_affiliate_string($offer_post_url, 'ebay.it', '5338259355', 'afepn=');
$offer_post_url = rh_change_affiliate_string($offer_post_url, 'amazon.it', 'megapromozion-21', 'tag=');
return $offer_post_url; 
}

from your code above, i don’t see that you are trying to overwrite ref= you are overwriting tag=

OK thanks, I managed to make it work. I tested Amazon and the affiliate ID is taken correctly it’s counting the clicks, but it doesn’t work for eBay.

For what I read is because eBay uses prefix. Do you have a solution for this?

Currently – no, but it’s in plans

Hi Artist, hope all is well

1. I have been looking into the comment to find a possible way to remove the annoying related products from my rehub vendor child theme now at version 7.2.1 with no success till now

tested: _tested the disable relative post from the theme options. _ tested the install rh woo tools (there is no related product to eliminate) _ tested this: http://rehubdocs.wpsoul.com/docs/rehub-theme/shop-options-woo-edd/how-to-disable-related-products/

I really need your help on this pls as I have not selected any product in the cross or upsell

2. am having issues when I change the single product page from default with sidebar to default with no sidebar see: https://loibuy.com/wp-content/uploads/2018/03/Captureyjyjytry.png while I would love to avoid that and have the image bigger like something like this: https://loibuy.com/wp-content/uploads/2018/03/vggsrgv.png

so you mean that my 2 questions, are too advanced for you to provide me an answer, even dough I have not been able to lunch my store yet, after a year that I have bought your theme?? because of issues am trying to figure out my self??

and this is not even customization request, but minor errors/issues or bug am having in the theme.. as you can see from my request, I always do my research before asking, if the solution was there in your guide, I would not be asking your support,

hope you will understand, a link to a solution would be enough.

1) Please, send FTP and admin access in the contact form. Provide also in the message: your issues and link on the current comment (you can know it if you press on the time in your comment).

2) There is no sidebar on that template. This is a standard WC template, but you can choose another template or edit current one if you have some PHP skill.

thanks a lot.. all the info has been sent

Hi Sizam, I got this message after install this theme. Can you fix this? Thank you. :)

Your theme (Rehub child theme – Revendor) contains outdated copies of some WooCommerce template files. These files may need updating to ensure they are compatible with the current version of WooCommerce. You can see which files are affected from the system status page. If in doubt, check with the author of the theme.

`
  1. WordPress Environment ###

Home URL: https://hijrahenvision.com Site URL: https://hijrahenvision.com WC Version: 3.3.3 Log Directory Writable: ✔ WP Version: 4.9.4 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ✔ Language: en_US

  1. Server Environment ###

Server Info: Apache PHP Version: 5.6.33 PHP Post Max Size: 256 MB PHP Time Limit: 0 PHP Max Input Vars: 1000 cURL Version: 7.58.0 OpenSSL/1.0.2n

SUHOSIN Installed: – Max Upload Size: 256 MB Default Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte String: ✔ Remote Post: ✔ Remote Get: ✔

  1. Database ###

WC Database Version: 3.3.3 WC Database Prefix: wpn0_ MaxMind GeoIP Database: ✔ Total Database Size: 12.12MB Database Data Size: 10.88MB Database Index Size: 1.24MB wpn0_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB wpn0_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB wpn0_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB wpn0_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.05MB wpn0_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB wpn0_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB wpn0_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB wpn0_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB wpn0_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB wpn0_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB wpn0_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB wpn0_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB wpn0_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB wpn0_woocommerce_log: Data: 0.02MB + Index: 0.02MB wpn0_cegg_autoblog: Data: 0.02MB + Index: 0.02MB wpn0_cegg_price_alert: Data: 0.02MB + Index: 0.03MB wpn0_cegg_price_history: Data: 0.02MB + Index: 0.08MB wpn0_commentmeta: Data: 0.02MB + Index: 0.03MB wpn0_comments: Data: 0.02MB + Index: 0.09MB wpn0_links: Data: 0.02MB + Index: 0.02MB wpn0_loginizer_logs: Data: 0.00MB + Index: 0.00MB wpn0_options: Data: 1.31MB + Index: 0.05MB wpn0_postmeta: Data: 1.52MB + Index: 0.19MB wpn0_posts: Data: 4.52MB + Index: 0.13MB wpn0_revslider_css: Data: 0.14MB + Index: 0.00MB wpn0_revslider_layer_animations: Data: 0.02MB + Index: 0.00MB wpn0_revslider_navigations: Data: 0.02MB + Index: 0.00MB wpn0_revslider_sliders: Data: 0.25MB + Index: 0.00MB wpn0_revslider_slides: Data: 2.52MB + Index: 0.00MB wpn0_revslider_static_slides: Data: 0.02MB + Index: 0.00MB wpn0_termmeta: Data: 0.02MB + Index: 0.03MB wpn0_terms: Data: 0.02MB + Index: 0.03MB wpn0_term_relationships: Data: 0.02MB + Index: 0.02MB wpn0_term_taxonomy: Data: 0.02MB + Index: 0.03MB wpn0_usermeta: Data: 0.02MB + Index: 0.03MB wpn0_users: Data: 0.02MB + Index: 0.05MB wpn0_wc_download_log: Data: 0.02MB + Index: 0.03MB wpn0_wc_webhooks: Data: 0.02MB + Index: 0.02MB

  1. Post Type Counts ###

attachment: 183 nav_menu_item: 23 page: 14 post: 7 product: 17 revision: 268

  1. Security ###

Secure connection (HTTPS): ✔ Hide errors from visitors: ✔

  1. Active Plugins (9) ###

All-in-One WP Migration: by ServMask – 6.63 Content Egg Pro: by keywordrush.com – 4.4.4 Elementor: by Elementor.com – 1.9.7 WPBakery Page Builder: by Michael M – WPBakery.com – 5.4.4 Slider Revolution Particles Effect: by ThemePunch – 1.0.6 Slider Revolution: by ThemePunch – 5.4.6.3.1 Themify – WooCommerce Product Filter: by Themify – 1.1.6 WooCommerce: by Automattic – 3.3.3 Custom Product Tabs for WooCommerce: by YIKES Inc. – 1.6.4 – Not tested with the active version of WooCommerce

  1. Settings ###

API Enabled: ✔ Force SSL: – Currency: USD ($) Currency Position: left Thousand Separator: , Decimal Separator: . Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) variable (variable)

Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5)

  1. WC Pages ###

Shop base: #31 – /shop/ Cart: #32 – /cart/ Checkout: #33 – /checkout/ My account: #34 – /my-account/ Terms and conditions: ❌ Page not set

  1. Theme ###

Name: Rehub child theme – Revendor Version: 7.1.9 Author URL: https://wpsoul.com/ Child Theme: ✔ Parent Theme Name: Rehub theme Parent Theme Version: 7.1.7.5 Parent Theme Author URL: https://wpsoul.com/ WooCommerce Support: ✔

  1. Templates ###

Overrides: rehub/woocommerce/archive-product.php version 2.0.0 is out of date. The core version is 3.3.0 rehub/woocommerce/cart/cross-sells.php rehub/woocommerce/content-product.php rehub/woocommerce/content-product_cat.php rehub/woocommerce/global/wrapper-end.php version 1.6.4 is out of date. The core version is 3.3.0 rehub/woocommerce/global/wrapper-start.php version 1.6.4 is out of date. The core version is 3.3.0 rehub/woocommerce/loop/add-to-cart.php version 3.0.0 is out of date. The core version is 3.3.0 rehub/woocommerce/loop/loop-end.php rehub/woocommerce/loop/loop-start.php version 2.0.0 is out of date. The core version is 3.3.0 rehub/woocommerce/loop/sale-flash.php rehub/woocommerce/single-product/add-to-cart/external.php rehub/woocommerce/single-product/meta.php rehub/woocommerce/single-product/product-image.php version 3.1.0 is out of date. The core version is 3.3.2 rehub/woocommerce/single-product/product-thumbnails.php version 3.1.0 is out of date. The core version is 3.3.2 rehub/woocommerce/single-product/sale-flash.php rehub/woocommerce/single-product/share.php rehub/woocommerce/single-product/tabs/additional-information.php rehub/woocommerce/single-product/tabs/description.php rehub/woocommerce/single-product-reviews.php rehub/woocommerce/single-product.php

Outdated Templates: ❌Learn how to update `

Update main theme

How to update the main theme?

i have some questions, pls help me.

1 – how to change color in widget area, category area, currently its white. see look : http://teddylist.com/category/geeky/

2 – how i add categories or any link under menu which comes like this : http://prntscr.com/ilj6wh

3 – how i make my menu colorful like this: http://prntscr.com/ilj7jt

4 – in home page gif image can not cover complete box, see : http://prntscr.com/ilj9g9 or check in website :http://teddylist.com/

5 – in this page : http://teddylist.com/geeky/spiral-spring-nut-cracker/ , how can i increased size of featured gif image and why related item image can not cover full box.

1. theme option – appearance – Enable if you have white style of background

2. appearance – menu

3. only with customization. price from our team is $30

4. upload good image with more big size, currently, size is the same as you uploaded it

5. upload good image with more big size, currently, size is the same as you uploaded it

I just followed your steps for updating the safest way. And it lost all my design. Does your theme not save the settings to the database? I even tried changing back and now i have to start all over.

What design did you lose? Theme can’t remove any pages or WordPress settings

Hi,

I got mail for update in rehub theme. Can you please suggest how to update my theme. I am not using FTP.

Hi, When can we expect cashback update.

No date for this

Hi Igor and his team,

I’m Usually duplicate Product post for similar new products I want to enter cause I don’t need to rewrite everything.

Therefore in the new post I have the old product view count.

Is there a way to rest this view count somehow?

Thank you,

Aviv

So the answer is no, I can’t delete the view count?

Great, Thank you very much it’s very helpful.

Hi, I would like to insert into “Theme options -> Shop settings -> CUSTOM CODE AREAS” of all products in my rehub site (digitalsolution.store) a custom code like this:

[content-egg-block template=custom/all_pricealert_full]

but this shortcode is visibile only if I open manually the product page and make a comparison with content egg over the other affiliate merchants. It’s possibile to active this shortcode automatically and avoid the manual activity?

Thank you very much

Chiara

This shortcode shows price alert form for content egg offers. If you don’t have offers, there is nothing to use for price alert

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