Forum Replies Created
-
Author
-
CatalinModerator
Please add this code to your style.css file from your child theme:
COPY CODE#footer-sidebar-1 a { font-size: XXpx; }
where XXpx is the new value.
also, I don’t know why you got the white screen… have you done any custom modifications to the site?
give me more details to figure this out…
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello
try:
COPY CODEbody.navbar-transparent #header div.header-scrolled { code }
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratoradd this to your style.css file from your child theme:
COPY CODEarticle.badge .article-title a { font-size: xxpx; }
where xxpx is the increased value you desire.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorinstead of
COPY CODE<div class="eight columns">
add
COPY CODE<div class="twelve columns">
and this should fix your problem.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 23, 2014 at 15:42 in reply to: 5 Question regarding customisation of SweetDate Theme #29360CatalinModeratorHello,
1. the css code to style individually is:
COPY CODE#profile div.friendship-button { } #profile div.friendship-button a { } #profile div#send-private-message { } #profile div#send-private-message a { }
you need basic css skills for making those changes… keep in mid that this customization needs to be added in the style.css file from your child theme
2. this implies custom development work.
3. 4. please resend me the email because I did not receive it and I will be able to handle this requests and the ones from your other thread.
5. take a look at https://wordpress.org/plugins/codestyling-localization/
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
You will need to add this in your style.css file from your child theme:
COPY CODE.column, .columns { padding: 0 xxpx; }
where xxpx is the new value you want to add.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please add this code in your style.css file from your child theme:
COPY CODEbody.single-badge div.article-meta { display:none; }
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModerator1. please take a look at this:
https://wordpress.org/plugins/bbpress-email-notifications/
2. please give me an example of a profile with notifications.
3. I added this:
COPY CODE#header li.btn-profile a { display:inline-block !important; }
4. I added this:
COPY CODEbody.category-news div.article-media img { width:600px !important; height:300px !important; }
6. I added this:
COPY CODEdiv.article-meta ul.link-list li { display:inline-block !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorYou can add
COPY CODE<a href="#" title="This is the title to show">hover here</a>
in a text widget in the footer sidebar under the widgets you already have.
The CSS code should be added in the style.css file from your child theme. To select the title atribute using CSS take a look at this:
http://www.w3schools.com/css/css_attribute_selectors.asp
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 17, 2014 at 15:17 in reply to: Change Color of Buttons (Membership Pro & BuddyPress) #28807CatalinModeratorHello,
You will need to add this code in your style.css file from your child theme:
COPY CODEdiv.pricing-table a.btn-default { your code } div.pricing-table a.btn-default { your code } body.registration #signup_submit { your code } body.registration #signup_submit:hover { your code }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello Jeremy,
Please compaire your code with the original function:
COPY CODEfunction kleo_comment_changes($arg) { $arg['label_submit'] = __( 'Send Message', 'kleo_framework' ); $arg['comment_notes_before'] = ''; $arg['comment_notes_after'] = ''; $arg['comment_field'] = '<div class="row"><div class="twelve columns"><label for="comment">' . _x( 'Comment', 'noun', 'kleo_framework' ) . ' ('.__("required", 'kleo_framework').')</label><textarea id="comment" name="comment" cols="45" rows="8" required aria-required="true"></textarea></div></div>'; return $arg; }
take a look at syntax and punctuation. I tested the code on my server and it works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratoradd this:
COPY CODE[class*="column"]+[class*="column"]:last-child { float: left; }
let me know if this helps.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 15, 2014 at 19:36 in reply to: Show username and instead of full name in member directory #28706CatalinModeratorHello,
You can first take a look at this:
http://buddypress.org/support/topic/display-username-in-members-directory/
then
the code that shows the user names is:
COPY CODEfunction render_bp_meta() { global $kleo_config; $output = array(); if (get_member_age(bp_get_member_user_id())) { $output['age'] = apply_filters('kleo_bp_meta_after_age', get_member_age(bp_get_member_user_id())); } //fields to show $fields_arr = $kleo_config['bp_members_loop_meta']; //user private fields $private_fields = array(); if (function_exists('bp_xprofile_get_hidden_fields_for_user')) { $private_fields = bp_xprofile_get_hidden_fields_for_user(bp_get_member_user_id()); } if (!empty($private_fields)) { //get the fields ids that will be displayed on members list if ( false === ( $fields_id_arr = get_transient( 'kleo_bp_meta_fields' ) ) ) { $fields_id_arr = array(); foreach ($fields_arr as $val) { if (get_profile_id_by_name($val)) { $fields_id_arr[$val] = get_profile_id_by_name($val); } } set_transient( 'kleo_bp_meta_fields', $fields_id_arr, 60*60*12 ); } if (!empty($fields_id_arr)) { //fields that will actually display $show_fields = array_diff($fields_id_arr, $private_fields); if (!empty($show_fields)) { $fields_arr_inv = array_flip($fields_id_arr); foreach ($show_fields as $key => $val): if(bp_get_member_profile_data( 'field='.$fields_arr_inv[$val] )): $output[] = bp_get_member_profile_data( 'field='.$fields_arr_inv[$val] ); endif; endforeach; } } } else { foreach ($fields_arr as $key => $val): if(bp_get_member_profile_data( 'field='.$val )): $output[] = bp_get_member_profile_data( 'field='.$val ); endif; endforeach; } $output = apply_filters('kleo_bp_meta_fields',$output); if (is_array($output)) { $output_str = '<p class="date">'. implode(" / ", $output).'</p>'; } else { $output_str = ''; } echo '<div class="search-meta">'; echo apply_filters('kleo_bp_members_dir_name','<h5 class="author"><a href="'. bp_get_member_permalink().'">'. bp_get_member_name().'</a></h5>'); echo $output_str; echo '</div>'; }
and replace
COPY CODEbp_get_member_name() /pre> with <pre> bp_core_get_username()
You just need to add the modified code with the new function in your functions.php file from your child theme.
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
You can add this code in your style.css file from your child theme:
COPY CODEh1.page-title { display:none; }
let me know if this helps.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorplease add this in your style.css file from your child theme:
COPY CODEul#groups-list { list-style-type:none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratoryou will need to add this in your style.css file from your child theme
COPY CODE#breadcrumbs-wrapp .inline-list li { font-size:XXpx; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
add this in your style.css file from your child theme:
COPY CODEbody.activity-permalink div.activity-comments { margin-left: XXpx; }
where XXpx is the new value.
Did I provided you a similar code for an earlier request? The modification may influence something else… or did you added some css code?
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
For groups page layout changing take a look at this:
https://archived.seventhqueen.com/forums/topic/re-groups
send me a link to the page where you want to change the logo (picture 2)
the fields type can be modified from (Users > Profile fields) end from there you can modify the field type
for changing the color you will have to add this code to your style.css file:
COPY CODE#header div.fixed nav ul a { color: #xxx; }
where #xxx is the new color you want to change to
the logout problem has been discussed, please upgrade PMPro to the latest available version
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorCOPY CODEbody.page-id-2056 #logo, body.page-id-2056 nav { display:none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratortake a look at this:
COPY CODE<?php /*************************************************** :: Title section ***************************************************/ if (sq_option('title_location', 'breadcrumb') == 'main') { $title_arr['show_title'] = false; } else { $title_arr['title'] = kleo_title(); } if(sq_option('breadcrumb_status', 1) == 0) { $title_arr['show_breadcrumb'] = false; } echo kleo_title_section($title_arr); ?>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorCOPY CODEbody.page-id-2056 footer, body.page-id-2056 #support, body.page-id-2056 #main { display:none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 10, 2014 at 11:04 in reply to: How to change the colour of profile notifications in drop down menu? #28215CatalinModeratorHello,
You will need to add this to your style.css file from your child theme:
COPY CODEul.show-dropdown .label { background: #XXX !important; }
where #XXX is the new color code you want.
Let me know if this helps,
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
You will need to add this code in your style.css file from your child theme:
COPY CODE#support { background: #XXX url(../path/to/your/background/your_background.file) !important; }
where #XXX is the color you want to use.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
The style for that bar is:
COPY CODEdiv#message.updated p { background-color: #8ff57a; border-color: #80cf70; color: #1a6a00; }
you will need to modify the below code with the new style and add it in your style.css file from your child theme.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
The CSS clases are:
COPY CODE.icon-chevron-right:before, .icon-chevron-left:before { font-size: xxpx; }
Let me know what you want to achieve.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
For your first issue, please add this in your style.css file from your child theme:
COPY CODE#buddypress #item-header-avatar { box-shadow: none !important; }
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorreplace the code I provided with this:
COPY CODEfunction kleo_comment_changes($arg) { $arg['label_submit'] = __( 'Post Comment', 'kleo_framework' ); $arg['comment_notes_before'] = ''; $arg['comment_notes_after'] = ''; $arg['comment_field'] = '<div class="row"><div class="twelve columns"><label for="comment">' . _x( 'Comment', 'noun', 'kleo_framework' )</label><textarea id="comment" name="comment" cols="45" rows="8" required aria-required="true"></textarea></div></div>'; return $arg; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModerator1. credentials not working anymore… please reset them to take another look
2. it was a cache issue, I tested first the code on my test server and it was working
3. you can use code like this in your functions.php file from your child theme:COPY CODEfunction open_new_tab() { ?> <script>jQuery(document).ready(function($){$('selector for the link you want to openn in new page').attr('target', '_blank');});</script> <?php } add_action( 'kleo_after_body','open_new_tab');
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Add this to your style.css file from your child theme:
COPY CODEli#members-personal { display:none; }
Let me know if this works,
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorCOPY CODEdiv.css-search.has-search-geo.has-search-term input.em-search-text, div.css-search.has-search-geo.has-search-term input.em-search-geo { width:auto !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorplease add this:
COPY CODEdiv.css-search.has-search-geo.has-search-term input.em-search-text, div.css-search.has-search-geo.has-search-term input.em-search-geo { width:auto !important; }
let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
please add this in your style.css from your child theme:
COPY CODEdiv.header-scrolled #logo_img { height:xxpx; }
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please add this code in your functions.php filde from your child theme:
COPY CODEfunction kleo_comment_changes($arg) { $arg['label_submit'] = __( 'Post Comment', 'kleo_framework' ); $arg['comment_notes_before'] = ''; $arg['comment_notes_after'] = ''; $arg['comment_field'] = '<div class="row"><div class="twelve columns"><label for="comment">' . _x( 'Comment', 'noun', 'kleo_framework' ) . ' ('.__("required", 'kleo_framework').')</label><textarea id="comment" name="comment" cols="45" rows="8" required aria-required="true"></textarea></div></div>'; return $arg; }
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please add this code in your style.css file from your child theme:
COPY CODE.em-events-search input[type=text] { display: inline !important; }
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
You can add this code in your style.css file from your child theme folder:
COPY CODEbody.registration section.main-title, body.registration #footer { display:none; }
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorCOPY CODEbody.page-id-2056 footer, body.page-id-2056 #support, body.page-id-2056 #main { display:none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratoradd this:
COPY CODEbody.groups #logo { display: none; }
using the code structure I already provided you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please add this code in your style.css file from your child theme folder:
COPY CODEdiv.bbp_widget_login input#user_pass { width: 100% !important; }
Let me know if this works.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please add this code in your style.css file from your child theme:
COPY CODEbutton.rtmedia-like { width:30px !important; }
Regarding the 500 Error, I am not able to tell from where and why you are getting it. One thins is for sure, it doesn’t come from the internal files of the theme because we tested on our servers and this doesn’t occur. It may come from a plugin. Take a look at this:
http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/
it may help.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalinModeratorHello,
Please add this code in your style.css file from your child theme:
COPY CODEbody.home section.text-center { padding:20px 0; }
let me know if this helps.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts