Forum Replies Created
-
Author
-
Radu
ModeratorThis is the selector to removing post titles, it works i’ve tested on your website
COPY CODE.single-post h1.page-title { display: none !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk
No problem
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Update theme to 4.1.5 and after most important is to update Visual Composer, K-elements and Revolution Slider from wp-admin -> appearance -> install plugins, press update for these plugins.
Try to set order from wp-admin -> theme options -> memberships ->

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
With WordPress default theme you encounter same issue ?
If you go to wp-content/themes/kleo/ and rename bbpress folder your issue disappears ?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorThanks you , good bless you to
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorTry to look at the pmpro shortcodes form front end not thru VC editor,
Check if you have all things updated like WP + KLEO + ALL PLUGINS (Plugins updates will be checked from wp-admin -> appearnace -> install plguins)
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Without modifying the theme files isn’t possible from theme options panel, maybe next week i can do that for you
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk
Let me know
Make sure to have all updated including WP+Plugins+ThemeCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 14, 2016 at 18:59 in reply to: Pages showing up in News focus element on home page, where only posts should show up #139679Radu
ModeratorHI,
IT seems that it’s caused by this plugin : woocommerce-conversion-tracking
Try to de-activate it and check again
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This is now the post looks like when you delete, it’s default bbpress behaviour you should press delete permanently

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorReplace the code with the code frmo here : http://pastebin.com/raw/NPb1f7hf
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 14, 2016 at 18:21 in reply to: How can I add a menu item to the bp profile menu that links to the members page #139672Radu
ModeratorHi,
I think these can solve your problems

so practically create custom menus and inside a href url put your desired variablesLet me know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorTry with thsese,
COPY CODE@media(min-width:991px){ #buddypress ul.item-list li .activity-inner .fluid-width-video-wrapper iframe {max-height:200px;max-width:400px} .fluid-width-video-wrapper {padding:10% !important;} }If it’s not ok play with the values until you match your wished values
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorDO you have all things updated ? Wp to latest version,Kleo and the rest of the plugins ?After theme update do you have updated rest of the plugins ? Check in wp-admin Appearance -> install plugins ->
Try also to delete pmpro and to re-install it, but before that make a database backup
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk then
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk,np
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Personally, I don’t know any push service to recommend you.
I don’t fully understand this :
May I know which plugin / framework that are you using for the live notifications?
If you are referring about the theme live notifications we are using jQueryCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorThis shortcode it’s part of a pmpro addon ?
Make sure to have that installed and active
http://www.paidmembershipspro.com/add-ons/plus-add-ons/pmpro-advanced-levels-shortcode/
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Add this function to wp-content/themes/kleo-child/functions.php
COPY CODE/*************************************************** :: Get social profiles ***************************************************/ if (!function_exists('kleo_get_social_profiles')): function kleo_get_social_profiles($args=false) { $output = ''; $icons = ''; $all_options = get_option("kleo_".KLEO_DOMAIN); $defaults = array( 'container' => 'ul', 'item_tag' => 'li', 'target' => '_blank' ); // Parse incomming $args into an array and merge it with $defaults $args = wp_parse_args( $args, $defaults ); $args = apply_filters('kleo_get_social_profiles_args', $args); //get social data from theme options if (!empty($all_options)) { foreach ($all_options as $k => $opt) { if (substr( $k, 0, 7 ) === 'social_' && !empty($opt) ) { $k = str_replace('social_','',$k); $title = str_replace( array('gplus', 'vimeo-squared', 'pinterest-circled', 'instagramm'), array('Google+', 'Vimeo','Pinterest', 'Instagram'), $k ); $icons .= '<' . $args['item_tag'] . '>'; $icons .= '<a rel="nofollow" target="'.$args['target'].'" href="'.$opt.'"><i class="icon-'.$k.'"></i><div class="ts-text">'.ucfirst($title).'</div></a>'; $icons .= '</' . $args['item_tag'] . '>'; } } } $icons = apply_filters('kleo_get_social_profiles', $icons); if ($icons != '') { $output .= '<' . $args['container'] . ' class="kleo-social-icons">'; $output .= $icons; $output .= '</' . $args['container'] . '>'; } return $output; } add_shortcode( 'kleo_social_icons', 'kleo_get_social_profiles' ); endif;Will add no follow for all social icons
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorYour site it ask me to login where i can see your forum ?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk this problem it’s Kleo theme related?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 13, 2016 at 19:09 in reply to: How can I add a menu item to the bp profile menu that links to the members page #139488Radu
ModeratorHi,
Simply creating a custom link https://drive.google.com/file/d/0Bxo5b6iHWRMweHZwUHBkN0wzaDQ/view
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorIt seems that your site it’s infected you should clean it.
You can try with one of those plugins :
https://wordpress.org/plugins/antivirus/
https://wordpress.org/plugins/wordfence/Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts