This user has no favorite topics.
Favorite Forum Topics
Forum Topics Created
Status |
Topic
|
Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Pages don't duplicate properly
Started by: jonathanH-15 in: English Support |
3 | 4 |
1 year, 8 months ago
jonathanH-15 |
||
The reusable block is translated in both English and Arabic
Started by: jonathanH-15
in: English Support
Problem: Rehub theme reusable block is translated in both English and Arabic Solution: 1- Edit the (wp-content\plugins\rehub-framework\includes\class-rehub.php) file /* Get REHub theme option value by key */ public static function get_option( $key ) { if ( function_exists( 'vp_option' ) ) { $value = vp_option( "rehub_option." . $key ); } else { $options = get_option( 'rehub_option' ); $value = (!empty($options[$key])) ? $options[$key] : ''; } return $value; } With /* Get REHub theme option value by key */ public static function get_option( $key ) { if ( function_exists( 'vp_option' ) && ! class_exists('SitePress') ) { $value = vp_option( "rehub_option." . $key ); } else { $options = get_option( 'rehub_option' ); $value = (!empty($options[$key])) ? $options[$key] : ''; } return $value; } |
2 | 10 | 1 year, 8 months ago | ||
my default language in wordpress settings changed from arabic to english and tha
Started by: jonathanH-15 in: English Support |
2 | 2 | 2 years, 3 months ago | ||
When I go to Translation Management –> Get More Words and I fill up the form fo
Started by: jonathanH-15 in: English Support |
2 | 2 | 4 years, 10 months ago |