Forum Replies Created
-
Author
-
Radu
ModeratorHi again,
Try with this
COPY CODEadd_filter( 'bp_get_the_profile_field_value', 'kleo_get_field_value', 999, 3); function kleo_get_field_value($value, $type, $field_id) { if ($type == 'datebox') { $field = new BP_XProfile_Field($field_id); $birthdate = new DateTime($field); $today = new DateTime('today'); $age = $birthdate->diff($today)->y; return $age; } return $value; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 12, 2016 at 17:49 in reply to: Change login-position in mobile version / Unwanted space in mobile version #121525Radu
ModeratorHi,
You’re welcome,
ISSUES NOT FIXED BY REINSTALLATION:
1.Footer menu still missing
– You will have to populate footer widget areas from wp-admin -> appearance -> widgets -> Footer widget 1,2,3 and 4 i’ve added a menu and a meta for demo purposes, you will have to arrange footer as you need– I think there is a server related problem, i’ve tried much time to debug this but unsuccessful… very odd i think it’s server related, the avatar works by default in theme.
The debug.log file shows
COPY CODE[12-May-2016 14:34:45 UTC] PHP Warning: mysqli_query(): Error reading result set's header in /home/mrnicwft/public_html/wp-includes/wp-db.php on line 1811 [12-May-2016 14:34:48 UTC] PHP Warning: mysqli_query(): MySQL server has gone away in /home/mrnicwft/public_html/wp-includes/wp-db.php on line 1811 [12-May-2016 14:34:48 UTC] PHP Warning: mysqli_query(): Error reading result set's header in /home/mrnicwft/public_html/wp-includes/wp-db.php on line 1811
It seems that are some problems with communication between the mysql and php
I recommend you to moove your site on a test server from another hosting company to test there.
I’ve deactivated majority of plugins to check if one of them causes this.
– Carousel is still there above the search form ….How can I get rid of that?
—-Provide link to see please
QUESTIONS and ANSWERS :
– Quick Navigation Bar shows both genders….How can I do settings to show only the gender member is interested in??
-This is not possible by default.– Will the search engines find the text on the register form??
Exactly values that you see in form, the search engine will index that, if you will have website protected with a password from example the google bot will not have access there
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi, Please upload the attached file after you unzip it to : wp-content/themes/kleo-child/ Then paste this code in this file : wp-content/themes/kleo-child/functions.phpfunction my_extra_footer_widget_cols () { register_sidebar(array( 'name' => 'Footer sidebar 5', 'id' => 'footer-5', 'before_widget' => '
NOTE : Kleo Child theme needs to be installed and activated. Cheers R.', 'after_widget' => '', 'before_title' => '', 'after_title' => '
', )); register_sidebar(array( 'name' => 'Footer sidebar 6', 'id' => 'footer-6', 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '
', )); } add_action( 'widgets_init', 'my_extra_footer_widget_cols' );Radu
ModeratorHi,
Add this css to wp-admin -> theme options -> general options -> quick css
COPY CODEarticle.course.post >header>h1 { display: none; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 11, 2016 at 16:18 in reply to: Modify the “share” social media icons on woocommerce single product page #121344Radu
ModeratorNot marked as solutionMay 10, 2016 at 16:30 in reply to: Modify the “share” social media icons on woocommerce single product page #121151Radu
ModeratorNot marked as solutionMay 6, 2016 at 21:17 in reply to: Override default font color for links, which was set in Theme Options? #120814Radu
ModeratorNot marked as solutionRadu
ModeratorOk,
Add this css to wp-admin -> theme options -> styling options -> quick css
COPY CODE#members-list .four.columns:nth-child(3n+1) { clear: none !important; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I think that problem is caused because the font family that you are using is loaded from footer not from head, try to do this.
COPY CODE/*head code input */ function add_in_head_tag() { $output = "<link rel='stylesheet' id='vc_google_fonts_oswald300regular700-css' href='//fonts.googleapis.com/css?family=Oswald%3A300%2Cregular%2C700&ver=4.5.1' type='text/css' media='all' />"; echo $output; } add_action('wp_head', 'add_in_head_tag');
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts