Forum Replies Created
-
Author
-
Laura
ModeratorHello, sorry for the misunderstanding, you can add a button to the slider that links to a title or header with an id, for example
At visual composer, you will see an element called Heading title, if you add it you will see a field to add an ID, for example “scroll” ( without the “” )Now at revolution slider, you add a button with an icon and add the url like http://yourdomain.com/#scroll or if you use code,
COPY CODE<a href="http://yourdomain.com/#scroll"></a>
Basically, add the url with the id #scroll at the end. This will make the button scroll down to the element with that id
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 tabs, try this, add it to style.css of child theme#buddypress div.profile .dl-horizontal dt { width: 100% !important; text-align: left !important; } #buddypress div.profile .dl-horizontal dd { margin: 0 auto !important; }
Laura
ModeratorPlease update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.
If this is useless please follow these steps to enable wp debug:
- 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, if you mean the icon and color for stuff that are not included at a level, add this to style.css of child theme
COPY CODE.no-item:before { font: 13px 'FontAwesome'; content: "\f058"; color: #c20000; margin-right: 6px; }
And use this to add the stuff
COPY CODE<li class=no-item>Unlimited Live Chat </li> <li class=no-item>Premium Support </li>
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, add this to style.css of child theme
COPY CODE.logo img { max-height: 100% !important; max-width: inherit; width: 260px; margin-left: -13%; height: 72px; }
And change your logo size to width 260px and heght 72px of just change the code as you prefer
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 bp-custom.php found wp-content/bp-custom.php
COPY CODEdefine ( 'BP_MEMBERS_SLUG', 'users' );
Change users for your slug
Let me know if it worksHi 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.search-body p { color: red; }
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, hola :) For the tabs, try this, add it to style.css of child theme#buddypress div.profile .dl-horizontal dt { width: 100% !important; text-align: left !important; } #buddypress div.profile .dl-horizontal dd { margin: 0 auto !important; }
For the other question, please check https://buddydev.com/buddypress/exclude-users-from-members-directory-on-a-buddypress-based-social-network/June 21, 2016 at 20:44 in reply to: Mobile version of KLEO – how to change CSS and also some features #126260Laura
ModeratorNot marked as solutionLaura
ModeratorHello, for 1- is this
COPY CODEadd_action('bp_ajax_querystring','sq7_radu_exclude_users',20,2); function sq7_radu_exclude_users($qs=false,$object=false){ //list of users to exclude $excluded_user = bbp_get_current_user_id();//comma separated ids of users whom you want to exclude if($object!='members')//hide for members only return $qs; $args=wp_parse_args($qs); //check if we are searching for friends list etc?, do not exclude in this case if(!empty($args['user_id'])||!empty($args['search_terms'])) return $qs; if(!empty($args['exclude'])) $args['exclude']=$args['exclude'].','.$excluded_user; else $args['exclude']=$excluded_user; $qs=build_query($args); return $qs; }
At functions.php of your child theme
2- Try adding this to style.css of child themeCOPY CODE.description { margin-top: -25%; position: absolute; }
3- Copy the header.php of main theme and paste it at child theme, then edit it and find
COPY CODE<a>"><img />" width="294" height="108" alt="<?php bloginfo('name'); ?>"></a>
Replace it with
COPY CODE<img />" width="294" height="108" alt="<?php bloginfo('name'); ?>">
4- I suggest to use chrome developer tools to find the class and ids of the elements that you want to edit then create a style for them and paste it at style.css of child theme
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
ModeratorPlease update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.
If this is useless please follow these steps to enable wp debug:
- 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 🙂
June 16, 2016 at 23:23 in reply to: Mobile version of KLEO – how to change CSS and also some features #125837Laura
ModeratorNot marked as solutionLaura
ModeratorHello, for 1, go to Appearance > Menus and if you do not have the KLEO section at the sidebar, check at the top of the page to find "Screen Options" , open it and check KLEO Now at the KLEO section of he menu sidebar, add Live Notifications and My Account For Live Notifications, Choose the icon "Megaphone" and next to the icon selector choose "Just the icon" For My Account you do not need to change it 2- You can change thesize with this cssdiv#item-nav li a:before { font-size: 24px !important; }
Change 24 to any number to change the size 3- Which ones do you want to change?Laura
ModeratorHello, just add this to style.css of child theme, it should change it 🙂
COPY CODEa.tiny.button.radius.btn-logout { font-size: 14px; }
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 🙂
June 15, 2016 at 22:17 in reply to: Cache Pluging and Custom Post Types with Restrict Site and Post Publish on Activtity #125703Laura
ModeratorNot marked as solutionLaura
ModeratorHello, you can change that by adding this to style.css of child theme, then edit it as you wish :).buddypress #header-cover-image { background-color: black; } div#item-header div#item-meta { color: white !important; }
Laura
ModeratorHello, seems to be a css issue, just add this to style.css of child theme.activity-list span.avatar, #whats-new-avatar, #activity-stream div.avatar, #activity-stream div.activity-avatar { height: auto !important; width: auto !important; }
Laura
ModeratorHello, to move the search / register form to the right side of the screen, add this css to style.css of child theme.home .five.columns { float: right; }
Laura
ModeratorHello, here: You can change the info that displays under the name and the details field by adding this to your sweetdate-child/functions.php file://members page fields add_action('after_setup_theme','kleo_my_member_data'); function kleo_my_member_data() { global $kleo_config; //this is the details field, right now it take the "About me" field content $kleo_config['bp_members_details_field'] = 'About me'; //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there $kleo_config['bp_members_loop_meta'] = array( 'I am a', 'Marital status', 'City' ); }
Also if the fields don't appear add this line, reload the members page and you can remove the line after that(we have added a caching on those fields for better performance):delete_transient( 'kleo_bp_meta_fields' );
Just replace those profile field names in the code with our one custom ones. Let me know if it helps :)June 9, 2016 at 21:20 in reply to: Changing Colour of Main Menu but avoiding blacking it out on mobile devices #125092Laura
ModeratorHello, try adding this to style.css of child theme
COPY CODEul#menu-kleonavmenu a { color: black; } @media (max-width: 991px) { ul#menu-kleonavmenu a { 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, this is the css you need for the profile tabs#profile .generic-button a, .tabs.pill.custom dd:not(.active) a, #profile .callout, .regulartab dt, .regulartab dd { background: rgba(255,255,255,0.6); color: #ffffff; }
-
AuthorPosts