Forum Replies Created
-
Author
-
Laura
ModeratorHello, please calm down, i am trying to help you, and we wont resolve things like this, we need to find the source of the issue, and fix it, am here to help you.
Could you enable debug so we can see error logs?
- Connect to your server by FTP
- Look in root directory of your WordPress install and open wp-config.php
- Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
COPY CODEdefine( 'WP_DEBUG', true );
- After this line add this:
COPY CODEdefine( 'WP_DEBUG_LOG', true );
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.
After you have disabled the plugins try to see if the error persists.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, of course, i am so sorry about that, tried to add the code but it didnt work, can you add it back? i will delete the duplicated image
To delete the code, edit the code i added at functions.php of child theme.
I addedCOPY CODEadd_action('kleo_before_main', 'sq7rdu_show_featured_before_content'); function sq7rdu_show_featured_before_content() { if (is_single()) { if (has_post_thumbnail()) { echo '<div class="fullwidth-image-before-content">'; echo the_post_thumbnail('full'); echo '</div>'; } } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
February 3, 2017 at 12:45 in reply to: How to change search results colors in top level menu? #151817Laura
ModeratorHello, sorry for the delay, please try by adding this to style.css of child theme 🙂
COPY CODE.kleo-ajax-part h4 { color: white !important; } .kleo_ajax_entry.format- span { color: white !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, to have register page full width just add this to style.css of child theme
COPY CODE.registration .kleo-page.boxed-style { max-width: 100% !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try by adding this to style.css of child theme
COPY CODEdiv#item-buttons a { width: 150px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, here is the code
COPY CODE< ?php /** * BuddyPress - Members Loop * * Querystring is set via AJAX in _inc/ajax.php - bp_legacy_theme_object_filter() * * @package BuddyPress * @subpackage bp-legacy */ ?> < ?php do_action( 'bp_before_members_loop' ); ?> < ?php if ( bp_ajax_querystring( 'members' ) == "") { $queryString = "type=alphabetical&action=alphabetical&page=1"; } else { $queryString = bp_ajax_querystring( 'members' ); } if ( bp_has_members( $queryString. '&per_page='.sq_option('bp_members_perpage', 24)) ) : ?> <div class="pagination"> <div class="pag-count"> < ?php bp_members_pagination_count(); ?> </div> <div class="pagination-links"> < ?php bp_members_pagination_links(); ?> </div> </div> < ?php do_action( 'bp_before_directory_members_list' ); ?> <ul id="members-list" class="item-list row kleo-isotope masonry"> < ?php while ( bp_members() ) : bp_the_member(); ?> <li class="kleo-masonry-item"> <div class="member-inner-list animated animate-when-almost-visible bottom-to-top"> <div class="item-avatar rounded"> <a>">< ?php bp_member_avatar(); ?></a> < ?php do_action('bp_member_online_status', bp_get_member_user_id()); ?> </div> <div class="item"> <div class="item-title"> <a>">< ?php bp_member_name(); ?></a> </div> <div class="item-meta"><span class="activity">< ?php bp_member_last_active(); ?></span></div> < ? /* LORNDAL RAUS <div class="item-meta"><span class="activity">< ?php bp_the_profile_field_name(); ?></span></div> */ ?> < ? /* LORNDAL RAUS <span class="update"> < ?php bp_member_latest_update(); ?><span class="update"> < ?php endif; */ ?> < ?php /* do_action( 'bp_directory_members_item' ); */ ?> <span class="item-meta"><span class="activity"> < ?php /*** * If you want to show specific profile fields here you can, * but it'll add an extra query for each member in the loop * (only one regardless of the number of fields you show): * * bp_member_profile_data( 'field=the field name' ); */ bp_member_profile_data( 'field=Current city');?>, < ?php bp_member_profile_data( 'field=Current country' ); ?></span></span><br /><br /> </span></div> <div class="action"> < ?php do_action( 'bp_directory_members_actions' ); ?> </div> <!--end member-inner-list--> </li> < ?php endwhile; ?> </ul> < ?php do_action( 'bp_after_directory_members_list' ); ?> < ?php bp_member_hidden_fields(); ?> <div class="pagination"> <div class="pag-count"> < ?php bp_members_pagination_count(); ?> </div> <div class="pagination-links"> < ?php bp_members_pagination_links(); ?> </div> </div> < ?php else: ?> <div class="info"> <p>< ?php _e( "Sorry, no members were found.", 'buddypress' ); ?></p> </div> < ?php endif; ?> < ?php do_action( 'bp_after_members_loop' ); ?>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, well, as i cant access your site, i will try to explain how to do this:
At your website, right click the icon you want to change, (using google chrome) and click Inspect Element
You should see something like < i class=”icon……..”>
Copy what its inside the class “copy this”
And go to style.css of child theme
Add thisCOPY CODEi.THE CLASS HERE:before { content: "\e817" !important; }
The content code is the icon, you can find icon codes here https://icomoon.io/app/#/select (they may not be the same)
For the fisheye icon use this
COPY CODEi.icon-panorama-fisheye:before { content: "\e902" !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css of child theme
COPY CODEul.nav.nav-pills.responsive-pills.pills-style-square.tabs-centered a { color: white; } .active a { color: #0c0844 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try
COPY CODE.tax-product_cat section.container-wrap.main-title.alternate-color.border-bottom { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, yes
to center it tryCOPY CODE.gd-fe-image img{ margin: 0 auto !important; }
or
COPY CODE.gd-fe-image { margin: 0 auto !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, for 1, use this
https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
and this at style.cssCOPY CODEli#activity-personal-li { display: none !important; }
2- KLEO LOGIN MODAL
COPY CODEdiv#kleo-login-modal { background: red; } .kleo-pop-title-wrap.main-color { background: red; color: white; }
3-
COPY CODE.profile legend { font-weight: bold !important; color: #1e73be !important; }
At the profile, it goes to my profile, not my account
Email or username login https://es.wordpress.org/plugins/login-with-username-or-email/
Notification diamond colorCOPY CODE.kleo-toggle-submenu:before { background-color: black !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, done.
Created a new folder at your child theme “page-parts” and added general-header-section.php , edited it to add your text, then added this to style.cssCOPY CODE.top-bar { float: right; color: white; font-weight: bold; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, at Pages you will see Home Register, that is the register landing page demo, for buddypress, you cant edit that page, as its created dynamically with php, so you need to edit the php file with the help of a developer
The file is kleo/buddypress/members/register.php
But edit it at the child theme ( copy the folder names and paste the file inside )For the menu, try moving it using
COPY CODEul#menu-main-menu { margin-left: -10% !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try by adding this to style.css of child theme
COPY CODE.ed_button { color: white !important; } textarea#whats-new { color: white !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, just add this to style.css of child theme 🙂
COPY CODEbutton.btn.btn-lg.btn-default.btn-block.login-button { background: #ce1834 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, if you want to hide the members activity page, you can disable activity at Settings > Buddypress, but if you only want to hide it at the member profile, then you do it using this css
COPY CODEli#activity-personal-li { display: none; }
Add it to style.css of child theme
For the login popup, what kind of changes do you want to do? 🙂
Date of birth text, add this to style.css of child theme
COPY CODE.profile legend { font-weight: bold; color: #1e73be; }
I see the bio part as an area of text so i guess you fixed that one?
Top bar background color cssCOPY CODE.header-color.social-header { background-color: black !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try by adding this to style.css of child theme
COPY CODE.gd-fe-image { width: 160px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, let me know if you like it, i added this to style.css of child theme
COPY CODE.kleo-main-header.header-normal { color: white !important; background: black !important; } .primary-menu a { color: white !important; } .header-color a { color: white !important; }
And this to home page css
COPY CODE.primary-menu a { color: white; } .kleo-main-header.header-normal { background: transparent !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 26, 2017 at 09:02 in reply to: Text size of body text not changing when adjusting theme options. #150857Laura
ModeratorHello, you could use this css, add it to style.css of child theme
COPY CODE.vc_column-inner p { font-size: 24px !important; }
But, at the text element, you can change the size also
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, sorry for the late reply, what do you think about this idea?
There is a plugin that forces users to complete their profile once they register, so, after they login, they would be redirected to their profile page to fill their fields.
The plugin is:
https://wordpress.org/plugins/bp-force-profile/To change the create an account link, follow these steps:
Go to wp-content/themes/sweetdate/page-parts and copy the file general-login-modal.php
Now go to wp-content/themes/sweetdate-child/ create a folder and name it page-parts and then paste general-login-modal.php there.Edit general-login-modal.php and find:
COPY CODE<a href="#"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a>
Replace with
COPY CODE<a href="URL TO YOUR MEMBERSHIPS LEVEL PAGE"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a>
And add the url
Again, i am very sorry for the late reply, hope this helps
Let me know 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, here, try this css code
COPY CODE.item-avatar.kleo-rounded { width: 150px; height: 150px; }
Add to style.css of child theme
If it does not work, tryCOPY CODE.item-avatar.kleo-rounded { width: 150px !important; height: 150px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, go to wp-contents/themes/sweetdate/page-parts and copy general-register-modal.php
Now go to wp-contents/themes/sweetdate-child , createa new foler, name it page-parts, paste the file general-register-modal.php inside, edit it.Replace
COPY CODE<form id="register_form" action="<?php if (function_exists('bp_is_active')) bp_signup_page(); else echo get_bloginfo('url')."/wp-login.php?action=register"; ?>"
With
COPY CODE<form id="register_form" action="YOUR LEVELS PAGE URL"
Save
Let me know if it works 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try using
COPY CODE.navbar-header .logo { float: none !important; margin: 0 auto; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello,sorry for the late reply, here is the css
COPY CODE.nav-tabs { border-bottom: none !important; } .member-inner-list { border: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, sorry for the delay, will check each issue and try to resolve it as soon as possible.
For the logo size, add this to style.css of child theme and edit it as you wish 🙂COPY CODEimg#logo_img { max-height: 300px !important; width: 400px; } .logo { top: 10px; }
For the sticky logo
COPY CODE.header-scrolled .logo { width: 198px !important; top: 0px !important; } .header-scrolled .logo img { height: 58px !important; }
Toggle profile header button
COPY CODEspan.toggle-header { top: 25% !important; }
About mycred, how do you want it to look like?
Hide products categories at single product page
COPY CODEspan.posted_in { display: none !important; }
Sadly i do not know a way to remove the product description of your old theme
Let me know if you need anything else 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, just add this to style.css of child theme
COPY CODE@media (max-width: 991px) { #header .navbar-nav li .caret:after { color: white !important; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, for the search bar use this
COPY CODEform#ajax_searchform input { color: black !important; }
And for the logo this
COPY CODE@media (max-width: 991px) { .header-centered .navbar-header .logo { display: block !important; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, its very easy, at the element where the image is, add a class ( you should see a class input at the element options ) lets say your class is “images”
and then add this to style.css of child themeCOPY CODE.images { padding:10px; }
If you have an element that has text and images you may use this instead
COPY CODE.images img { padding:10px; }
Hope it helps 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i’m sorry for the late reply, here is the code for category title
COPY CODE.category h1.page-title { display: none; }
Top bar
COPY CODE.top-bar { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello,i see, then there is no other way of doing that.Try
COPY CODEsmall.meta-category a:last-child { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts