Forum Replies Created
-
Author
-
sharmstr
ModeratorTry this css
COPY CODE.mfp-bg.kleo-mfp-zoom.mfp-ready { z-index: 100 !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorTry this in your child theme’s function.php file
COPY CODEadd_filter( 'register_url', 'custom_register_url' ); function custom_register_url( $register_url ) { $register_url = "http://www.yoursite.com/membership-account/membership-levels/"; return $register_url; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThe code still works for me with the latest geo update. Did you purge your server cache after the updae. You site is throwing a bunch of 404 errors.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorCOPY CODE.item-desc { width: 95%; } #groups-dir-list .item-desc p { overflow: hidden; word-wrap: break-word; } #groups-dir-list .item-title a { word-wrap: break-word; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorWhat part are you having problems with? All you need to do is add the code I’ve given you to the functions.php file in /kleo-child/. Do you have your child theme enabled?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorHere’s the codex on it: https://codex.wordpress.org/Child_Themes#Using_functions.php
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorTry this in your child theme’s functions.php file
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 17, 2015 at 17:14 in reply to: PMPro Checkout Page's terms of service box overlaps it space in Chrome #73416sharmstr
ModeratorGreat. Thank you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorTry this css
COPY CODEtt { font-family: Open Sans !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThere’s no way of doing that yet. You need to re-add your custom font files for now.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
Moderator[rtmedia_gallery global=true]
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorFor the avatar, that is a common issue with a few social login plugins out there because they override the get avatar function. See if this helps: https://archived.seventhqueen.com/forums/topic/user-profile-picture-in-main-menu-is-incorrect
I dont see a difference between the forum page you created and the default forum page. Please explain the issue.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorBecause you have media_author=1 http://docs.rtcamp.com/rtmedia/features/shortcodes/gallery.html
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThat is for multi-site setups: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorTurn off debug display in your wp_config.php file.
COPY CODEdefine( 'WP_DEBUG_DISPLAY', false );Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorI need to see a link for the one that’s not working.
for messages
COPY CODE#message-subject { word-wrap: break-word; max-width: 95%; } .message-content { word-wrap: break-word; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorI didnt say you should copy and paste the section. I said you should copy the page. You can edit the main theme directly, but you’ll have to re-edit it after every upgrade unless you copy the file to the child theme. Read the link I gave you. It explains that.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThe logo looks 176px high to me.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThey wont show up there. As the original poster indicated, you need to edit the kleo_entry_meta function.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThe background color is set in the row settings.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
Moderatorprobably not.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorIts in the file system. You should hire someone who knows wordpress to assist you or learn how to override themes and plugins using a child theme: https://codex.wordpress.org/Child_Themes
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
Moderator7th queen came up with it. You can try emailing them at dev@seventhqueen.com. I’ve also answered this twice already, so please search before posting. Thank you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
Moderator1 – Kleo already directs the user after FB registration to the edit profile screen. If you want to direct all logins there, you need to install Peters Login Redirect plugin.
1b – I believe they are using https://wordpress.org/plugins/bp-registration-options/
2 – That’s the Social Articles plugin. https://wordpress.org/plugins/social-articles/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorYou can copy /page-parts/general-header-section.php to your child theme. You’ll see both the social icon section and the code for the logo. Try replaceing kleo_get_social_profileswith the logo code. I’m sure you’ll have to add some custom css for it.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorCopy /kleo/page-parts/general-popups.php to your child theme and edit the create account link. Change it to this
COPY CODE<em><?php _e( "or", 'kleo_framework' );?></em> <a href="http://www.yoursite.com/membership-account/membership-levels/" class="new-account"><?php _e( "Create an account", "kleo_framework" ); ?></a>Keep in mind that you need to check for any changes to that page after every Kleo update to ensure you are running the latest code.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThis has been discussed several times. Please search before posting. Thank you.
https://archived.seventhqueen.com/forums/topic/changing-top-menue-background-color#post-62941
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorThe description and additional info are tied together. If you want to separate them, ask on the woo forums since you’ll have to edit their code to do it.
To move the description under the image, see this: http://sharmstr.com/woocommerce-tricks/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorTry this
COPY CODE.price del { display: none; } .single_variation { margin-bottom: 30px !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorIt depends on what you want to change exactly. Changing text with BP is done through translation. You dont have to translate to a different language, so dont get confused by that: https://codex.buddypress.org/translations/
Also this might be helpful: https://bp-tricks.com/featured/creating-a-custom-email-template-for-your-buddypress-emails/
If you need further assistance, ask on the BP forums since you’ll be changing their code.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorIt depends on where you want it.
If you want it on a page, you can use the Kleo Button shortcode found in VC.
If you want it in the menu, you can use this technique: https://archived.seventhqueen.com/forums/topic/i-want-to-put-button-in-main-menu-possible#post-69788
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
Moderatortry this css
COPY CODE#logo_img { max-height: 176px !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorPlease provide a link
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
Moderatoreach page has a body class with the page id
.page-id-7841
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorYou also have ul in the selector. Please use the exact code I’ve given you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorYou put height instead of line-height
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorBut where’s my code? You dont show a picture of it. Again, please make my life easier and give me a link I can see.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorAdjust the px size in my code to whatever you want. It works for me. If its not working for you, I’ll need to see a link.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorTry this instead
COPY CODE.nav-tabs li a { line-height: 1px !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionsharmstr
ModeratorTry this in quick css. Adjust as necessary.
COPY CODE.nav-tabs li { width: 200px !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts