Forum Replies Created
-
Author
-
sharmstrModerator
Do it in css
COPY CODE.widget-item-listing img { height: auto !important; width: auto !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorDepends on what you’re after. Do you want it to pop up in a modal or display the actual form?
Adding the login modal is easy. You just need to trigger it via setting the kleo-show-login class name.
here’s an example using a button
COPY CODE[kleo_button title='Login' style='see-through' icon='star-empty' tooltip_position='left' tooltip_action='hover' size='lg' el_class='kleo-show-login']
I’m not sure if there is a shortcode to display the form on a page. If not, you can probably hack it by creating a sidebar (wp admin – appearance – sidebar), then add the buddypress login widget to it (wp admin – appearance – widgets) then use the VC Widgetised Sidebar shortcode to display it.
If you use a layout with a sidebar, you can just add the Buddypress login widget to the sidebar and it will show up on all of your pages.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorput this in your child theme.
COPY CODE.bbp-author-role { display: none; }
I can’t answer the myCred question. I dont use it.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI need to start charging for this…
this works on my site
COPY CODE#bbpress-forums .bbp-forum-info .bbp-forum-content, #bbpress-forums p.bbp-topic-meta { display: block; } #bbpress-forums li.bbp-forum-freshness .bbp-topic-meta, #bbpress-forums li.bbp-topic-freshness .bbp-topic-meta { display: block; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI see what’s going on. The users name is not being displayed. When it displays a H4 tag is wrapped around it which pushes it down a bit. Since the activity is on the same line, that gets pushed down too. My guess is that there is a setting in the iThemes Security plugin that you’re using that is blocking the display of the members username since it their login name. Just a guess though.
You can either figure out why the username isn’t displaying or add this to your child theme style.css
COPY CODE#buddypress #item-header-avatar { box-shaddow: 0 0 0 0; }
You can see the username on the demo: http://seventhqueen.com/themes/kleo/members/demo/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratormaybe
COPY CODE.bbp-author-avatar img { border-radius: 100%; }
try changing inline-block to block.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModerator1 – Add the following to your childs function.php file
COPY CODE/** * Add a default avatar to Settings > Discussion **/ //add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' ); define ( 'BP_AVATAR_DEFAULT', 'http://www.yoursite.com/path/to/your/avatar/imagename.jpg' ); define ( 'BP_AVATAR_DEFAULT_THUMB', 'http://www.yoursite.com/path/to/your/avatar/imagename_thumb.jpg' );
2 – You can turn off the admin bar in Theme Options – Header Options
3 – There’s already a menu item to change the avatar. Go to your profile, click Profile, click Change Profile Photo.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI think I understand. Try this in your functions.php file. Let me know if that’s what you needed.
COPY CODEfunction kleo_post_nav( $same_cat = false ) { // Don't print empty markup if there's nowhere to navigate. $next = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( $same_cat, '', false ); $previous = get_adjacent_post( $same_cat, '', true ); if ( ! $next && ! $previous ) { return; } ?> <nav class="pagination-sticky member-navigation" role="navigation"> <?php if ( is_attachment() ) : previous_post_link( '%link', __( '<span id="older-nav">Go to article</span>', 'kleo_framework' ) ); else : if ($next) { next_post_link( '%link', '<span id="older-nav"><span class="outter-title"><span class="entry-title">' . $next->post_title . '</span></span></span>', $same_cat ); } if ($previous) { previous_post_link( '%link', '<span id="newer-nav"><span class="outter-title"><span class="entry-title">' . $previous->post_title . '</span>', $same_cat ); } endif; ?> </nav><!-- .navigation --> <?php }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorIts not so much missing a space as in a space character. The time is set to block on wide displays and inline with small displays. Anyhow, pop some padding before it. Put this in your child style.css file or in quick css located in theme options.
COPY CODEarticle .article-meta .post-meta a.post-time:after { padding-left: 2px; }
Let me know if that works.
@abe – please fix in core. thanks.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorBecause apparently I dont know how to spell. Sorry about that.
COPY CODE.pagination-sticky { display:none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorFor anyone not brave enough to do the custom widget option, here’s the combined css that takes care of it all. You just need to remember to change the colors to suit your theme style.
COPY CODE/* Forum Widget Styles */ h4.widget-title { color:#777777; } .widget_display_replies, .widget_display_views, .widget_display_topics { padding: 6px 0 16px; list-style: none; color:#777777; } .widget_display_replies ul, .widget_display_views ul, .widget_display_topics ul { padding-right: 0; padding-left: 0; } .widget_display_replies li:before, .widget_display_views li:before, .widget_display_topics li:before { margin-left: 10px; margin-right: 2px; color: #C0C0C0; } .sidebar .widget_display_replies li , .sidebar .widget_display_views li , .sidebar .widget_display_topics li { padding: 6px 0; border-bottom: 1px solid #e5e5e5; list-style: none; } #footer .widget_display_replies li, #footer .widget_display_views li, #footer .widget_display_topics li { padding: 6px 0; border-bottom: 1px solid #e5e5e5; list-style: none; } .widget_display_replies li:first-child, .widget_display_views li:first-child, .widget_display_topics li:first-child { border-top: 1px solid #e5e5e5; } /* Recent entries */ .widget_display_replies ul, .widget_display_views ul, .widget_display_topics ul { padding-left: 0; } .widget_display_replies li:before, .widget_display_views li:before, .widget_display_topics li:before { content: "\e86c"; margin-right: 10px; margin-left: 2px; font-family: "fontello"; /*color: #dedede;*/ text-decoration: none; } .widget_display_replies .post-date, .widget_display_views .post-date, .widget_display_topics .post-date { display: block; font-size: 11px; color: #777; margin: 5px 0 0; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorAlso, if you dont want to do the custom widget option, you can look at this. Basically all I did was search for ‘widget_recent_entries’ css and copied into my child css and changed the name to widget_display_topics. The only thing that wont work is the colors since those are set dynamically through theme options. So you’ll have to hard code the colors you want. But at the very list it should help with your alignment issues.
COPY CODE.widget_display_topics { padding: 6px 0 16px; /*border-bottom-style: solid; border-bottom-width: 1px;*/ list-style: none; } .widget_display_topics ul { padding-right: 0; padding-left: 0; } .widget_display_topics li:before { margin-left: 10px; margin-right: 2px; } .sidebar .widget_display_topics li { padding: 6px 0; border-bottom-style: solid; border-bottom-width: 1px; list-style: none; } #footer .widget_display_topics li { padding: 6px 0; border-bottom-style: solid; border-bottom-width: 1px; list-style: none; } .widget_display_topics li:first-child { border-top-style: solid; border-top-width: 1px; } /* Recent entries */ .widget_display_topics ul { padding-left: 0; } .widget_display_topics li:before { content: "\e86c"; margin-right: 10px; margin-left: 2px; font-family: "fontello"; /*color: #dedede;*/ text-decoration: none; } .widget_display_topics .post-date { display: block; font-size: 11px; color: #777; margin: 5px 0 0; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI went a different route. All that really needs to happen is setting the class name of the widget to “widget_recent_entries” and it will pick up all the styling from the posts widget. So I just copied the widgets code and created a new custom widget.
Attached is forum-widget.txt. If you want to use it, put it in your child theme (change .txt to .php) and call it in your functions.php file.
COPY CODErequire_once( trailingslashit( get_stylesheet_directory() ) . 'whateverdirectoryyouwantinkleo-child/forum-widgets.php' );
Its only for (bbpress) Recent Topics, but you can do the same with the other ones. Just rename the classes and functions by putting custom_ in front of them. And changing
COPY CODE'classname' => 'custom_widget_display_topics'
to
COPY CODE'classname' => 'widget_recent_entries',
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstrModeratoradd !important to it
COPY CODEcolor:#fff !important;
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI am the queen. Look how many crowns I have. LOL. just kidding.
Do this instead. Change your function call in the loop to this.
COPY CODE<?php echo my_bbp_get_topic_tag_list(); ?>
Then in your functions.php file add this
COPY CODEfunction my_bbp_get_topic_tag_list( $topic_id = 0, $args = '' ) { // Bail if topic-tags are off if ( ! bbp_allow_topic_tags() ) return; // Parse arguments against default values $r = bbp_parse_args( $args, array( 'before' => '<span class="bbp-topic-tags" style="float:right;"><small class="meta-category">' . esc_html__( 'Tagged:', 'bbpress' ) . ' ', 'sep' => ', ', 'after' => '</small></span>' ), 'get_topic_tag_list' ); $topic_id = bbp_get_topic_id( $topic_id ); // Topic is spammed, so display pre-spam terms if ( bbp_is_topic_spam( $topic_id ) ) { // Get pre-spam terms $terms = get_post_meta( $topic_id, '_bbp_spam_topic_tags', true ); // If terms exist, explode them and compile the return value if ( !empty( $terms ) ) { $terms = implode( $r['sep'], $terms ); $retval = $r['before'] . $terms . $r['after']; // No terms so return emty string } else { $retval = ''; } // Topic is not spam so display a clickable term list } else { $retval = get_the_term_list( $topic_id, bbp_get_topic_tag_tax_id(), $r['before'], $r['sep'], $r['after'] ); } return $retval; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorThat’s really a question better suited for the buddypress forums. But you can hide the option on the front end with this
COPY CODEli#change-avatar-personal-li { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorYou need single quotes around each type
(‘adventures’, ‘hotels’, ‘vacation’)
Anyway we can filter that with something like
COPY CODEadd_filter('kleo_meta_boxes','kleo_my_custom_post_types'); function kleo_my_custom_post_types( $pages ) { $pages[] = 'custom_post_type_name'; return $pages; }
If not now can you cook up some magic and make it so in the future?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorYes, you need to change
COPY CODE‘pages’ => array( ‘custom_post_name’ ), // Post type
to your post type name.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI’ve thought a bit about this. The /group/2 part points to a specific x-profile group which is a slug to the second profile group you created in user profile fields. (it has nothing to do with the position of the group in the profile menu).
So, in your functions.php file, you might be able to do something like
COPY CODEif (bp_the_profile_group() == "2" && pmpro_getMembershipLevelForUser($user_id) == member_has_access) { show the info }
I dont use pmPro so I’m not sure what membership levels there but hopefully you get the point.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI got it. I totally forgot that I had made my ‘mark topics read’ plugin print out next to the favorite and subscribe links.
Anyhow, copy plugins/bbppress/templates/default/bbpress/loop-replies.php to /kleo-child/bbpress/loop-replies.php
Add the following after _e(‘posts’,’bbpress’) around like 25
COPY CODE<small><?php bbp_topic_tag_list(); ?></small>
Then copy /kleo/bbpress/content-single-topic.php to /kleo-child/bbpress-content-single-topic.php and comment out bbp_topic_tag_list function around line 24.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorPut this in your css
COPY CODE.pagnation-sticky { display:none; }
That will also remove it from the members profile. Let me know if that’s not what you want.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorspecify an extra class name (lets say you call it sidebarBtn) then use that class name in your child’s css
COPY CODE.sidebarBtn { width: 200px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this. It was a bit difficult because the bbpress widgets print out different divs. The below will make them look similar to the kleo recent post widget, but things like the date format and username are controlled by the widget itself, not through css
COPY CODE[id^=bbp].widget li { padding-bottom: 10px; min-height: 50px; } [id^=bbp].widget .bbp-author-name { //display: none; } [id^=bbp].widget .bbp-author-avatar { clear: both; display: inline-block; float: left; margin-bottom: 5px; margin-right: 10px; } [id^=bbp].widget .bbp-author-avatar:empty { display: none; } [id^=bbp].widget .bbp-author-avatar img { width: 40px; height: 40px; border-radius: 100%; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorWell, god knows I tried to find where the t was being set in the code. But check out these calls. On closer inspection, its a weird carachter then t=0
COPY CODEGET:/wp-admin/admin-ajax.php?action=kleo_bp_notifications_refresh¤t=0
what the heck is this? ¤
Could it have something to do with translations?
(look at me edit. ahahaha)
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorThat’s awesome and very clever. Regarding having users set colors and styles, I’m working on something similar today, but it will be injecting those setting into Visual Composer code since I wanted something more than a vanilla WP page. Basically I designed the page using VC then copied the VC code into my template page which runs the code via the do_shortcode call. You can change the code dynamically by injecting the user settings into the code
basic example showing the $user_set_color being injected into the shortcode.
COPY CODEdo_shortcode('[vc_row inner_container="yes" text_color="' . $user_set_color . '" section_type="main" bg_position="top" bg_position_horizontal="left" bg_repeat="no-repeat" bg_cover="true" bg_attachment="false" parallax_speed="0.1" padding_top="40" padding_bottom="40" min_height="0" border="bottom" css_animation="right-to-left"][vc_column width="1/1"][kleo_icon icon="android" icon_size="4x" tooltip_position="left" tooltip_action="hover" target="_self"][/vc_column][/vc_row])'
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorHmmm. I just played with the border settings for row and column and couldnt get it to display as I would expect. So try this instead. Go into the column setting for the column on the left and add a Extra class name called column-border-right.
Then add the following css to the page settings (gear icon top right of vc form)
COPY CODE.column-border-right { border-right: 1px solid; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI’m working blindly here, so forgive me if I’m way off base. I looked at your page source code and it looks like you’re using Child Pages Shortcodes, so I installed it. I created a Members page and put the child page shortcode into that. Then I created 3 member pages and set them to children of the Members page. In each of those children pages I set a featured image. All three of the child pages showed their featured image on the member listing page.
But, when I went into the individual child page, the featured image did NOT show up at the top of the page. I cant say for sure if they used to before, I’ll just say that I know how to fix it…. Copy /kleo/content-page.php to your child theme (you are using a child theme, right?). Near the bottom around line 103 you’ll see ‘the_content’. Above that line, add the following
COPY CODE<?php the_post_thumbnail(); ?>
So, to summarize.
1 – Not sure why your featured images are not showing up using the child pages shortcode. It worked for me. Maybe try resaving those pages. And make sure you’re running k-elements 2.1.1 (you can get it here: https://archived.seventhqueen.com/forums/topic/fatal-error-message#post-32651)
2 – Not sure if the featured image ever showed up on the top of pages like they do in posts using the Kleo theme, but adding the code I gave you will fix it.
Let me know if any of this works or not 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorWhat I did on my site was put a header above the carousel called “Featured Posts” and then one above the rest of them called “Recent Posts”.
copy kleo/featured-posts.php into your child theme and edit the carousel div code
COPY CODE$before_featured = '<h2>Featured Posts</h2><div class="kleo-carousel-container"> <div class="kleo-carousel-items kleo-carousel-post" data-min-items="3" data-max-items="3"> <ul class="kleo-carousel">'; $after_featured = '</ul></div>'; $after_featured .= '<div class="carousel-arrow"> <a href="#"><i class="icon-angle-left"></i></a> <a href="#"><i class="icon-angle-right"></i></a> </div> '; $after_featured .= '</div>'; $after_featured .= '<h2>Recent Posts</h2>';
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorChange the line
COPY CODE<div class="kleo-carousel-items kleo-carousel-post" data-min-items="1" data-max-items="6">
to this
COPY CODE<div class="kleo-carousel-items kleo-carousel-post" data-min-items="1" data-max-items="6" data-autoplay="true">
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorIts actually on 10px. That 49 is for the whole container. Anyhow, try this
COPY CODE.main-title { padding: 0 0 10px 0; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorcopy /kleo/page-parts/posts-related.php to your child theme. Then add the data-autoplay attribute to the kleo-carousel-post div
COPY CODE<div class="kleo-carousel-items kleo-carousel-post" data-min-items="1" data-max-items="6" data-autoplay="true">
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorKleo has styling for it. As far as I can tell, each section of that container has a background-color associated with it. That makes it a bit of a bear to change. You’ll also have to be careful of font colors.
COPY CODE.mfp-content #rtmedia-single-media-container .rtmedia-media { background-color: #333!important; } .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta { background-color: #333!important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorBecareful with that. Its used in a lot of places. You should look for a way to isolate it to only the sidebar. Like maybe
COPY CODE.sidebar .kleo-transform .animated { opacity: 1; }
or maybe even isolate it to the addthis div/section.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI dont see a difference in your screenshots, but
1 – You need to turn them on. Click on ‘screen options’ on the menu page. Its in the upper right.
2 – You can add the modal trigger anywhere you want by adding the ‘kleo-show-login’ class to any link or button or shortcode.
COPY CODE<a href="#">Login</a>
COPY CODE[kleo_button title='Login' style='see-through' icon='star-empty' tooltip_position='left' tooltip_action='hover' size='lg' el_class='kleo-show-login']
Both of these have been asked several times btw.
Where’s my mars bar? 😀
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorWouldn’t it be
COPY CODE.animated { opacity: 1; }
or perhaps
COPY CODE.kelo-transform .animated { opacity: 1; }
If not, give me a link and I’ll take a look.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 3, 2014 at 02:37 in reply to: How to style topbar with background color & font color? #33822sharmstrModeratorAdd this css. Dont change the colors until you look at it and see what css you need to change to get the color you want in the place you want.
COPY CODE.header-color { background-color: yellow !important; } .top-bar { background-color: green; } .header-color .top-menu li > a, .header-color #top-social li a { color: red; } .header-color .top-menu li > a:hover, .header-color #top-social li a:hover { color: blue; }
Let me know if that works for you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorYou’re sort of asking two things here.
1 – Remove the link.
2 – Block access to the backend.
If someone is familiar with wordpress, they can still get to the backend even if you’ve removed the link to it.
Those are both WP specific questions and there are plugins for both. With that said, here’s some code to get you started.
1 – To remove the link you use $wp_admin_bar->remove_menu() in your functions.php file. Example
COPY CODEfunction remove_admin_bar_links() { global $wp_admin_bar; $wp_admin_bar->remove_menu('wp-logo'); $wp_admin_bar->remove_menu('site-name'); $wp_admin_bar->remove_menu('new-content'); } add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );
2 – I personally use the adminimize plugin to control what is displayed based on user type. https://wordpress.org/plugins/adminimize/ Its granular which makes it a bit overwhelming and probably overkill for your requirement. Do a search for either a code snippet or a simple plugin.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorInstead of going into the row settings, go into the column setting (pencil above the 3 buttons you have). Then set an Extra class name. Lets say you called it center-this. Then in your child css put
COPY CODE.center-this { text-align: center; }
https://wordpress.org/plugins/bbpress-auto-suggest-topics-based-on-new-topic-title/
https://archived.seventhqueen.com/forums/topic/bbpress-live-searchHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorYou should be able to add the search from shortcode to a layer on the slide. It works for buttons so I think it should work for forms.
Build the search from using VC, then switch to classic mode and copy the form shortcode. Should be similar to this
COPY CODE[kleo_search_form form_style="transparent" type="both" context="post,page"]
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
October 31, 2014 at 23:15 in reply to: Adding the word MORE to the + navigation tab in buddypress #33725sharmstrModeratorCOPY CODEa.dropdown-toggle:after { content: "more"; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts