Forum Replies Created

Viewing 40 posts - 5,281 through 5,320 (of 20,101 total)
  • Author
  • in reply to: Kleo grid with custom query #174840
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    I see that I was able to reproduce the issue on my end, I will add this into bug list and we will let you know when it’s fixed.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Spike in Ajax calls #174838
     Radu
    Moderator

    Hi,

    At this moment, just logged to your site and I’ve left for 7-10 minutes the homepage open waiting to see if there it’s made any call… no call those seem to be disabled

    According to your log, seems the kleo notifications to be called to frequent, just add AJAX refresh interval* 120000 interval there (2 minutes) and most important, if you have any cache,minification could flare service pat attention there, cuz maybe you do changes by some resources are cached and not reflect your changes immediately.

    At this moment logged in as a user I cannot see the network activity any ajax call.

    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 solution
    in reply to: Header background image per category, body class outputs #174836
     Radu
    Moderator

    Great

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Register for facebook #174835
     Radu
    Moderator

    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 solution
    in reply to: I forgot my password, going to WP-Login. #174834
     Radu
    Moderator

    Hi,

    Using WordPress filter lostpassword_url

    Explained in detail here how that works : https://code.tutsplus.com/articles/the-beginners-guide-to-wordpress-actions-and-filters–wp-27373

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    I see, ok the

    You can limit the article media img height using the next CSS snippet

    COPY CODE
    
    article .article-media img {
        max-height: 100px;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    I see, ok the

    You can limit the article media img height using the next CSS snippet

    COPY CODE
    
    article .article-media img {
        max-height: 100px;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WordPress regular login form #174831
     Radu
    Moderator

    Hi,

    There isn’t loaded…so please replace the file content /wp-content/themes/buddyapp/assets/js/functions.js with this one https://pastebin.com/raw/3JRX9xse

    I’ve noticed you have a cache plugin please purge all caches and de-activated it for a moment…

    And an important thing activate development mode -> ON from wp-admin -> theme options

    This will load css/js files not minified.

    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 solution
    in reply to: Testimonials display #174829
     Radu
    Moderator

    Ok then

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Registration page problems #174828
     Radu
    Moderator
    Not marked as solution
    in reply to: Custom logo not showing in Firefox #174827
     Radu
    Moderator

    Hi,

    The content property works only for pseudo elements :before and :after so that’s in chrome works and in firefox not.

    https://www.w3schools.com/cssref/pr_gen_content.asp

    Use the php way, it’s more efficient way

    COPY CODE
    
    function custom_logo_on_certain_pages( $url ) {
    
        $pagessamelogo = array(15,16,17,18,19,393);
    
        if(is_page($pagessamelogo)) {
    
            $url = 'https://thechefsconnection.com/wp-content/uploads/2017/06/site-logo-new.png';
    
            return $url;
        }
    }
    add_filter('kleo_logo', 'custom_logo_on_certain_pages');
    

    Replace 15,16,17,18,19,393 with your pages ID’s that you have a certain logo

    And also the logo link with your desired one: https://thechefsconnection.com/wp-content/uploads/2017/06/site-logo-new.png

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Members Directory #174826
     Radu
    Moderator
    Not marked as solution
    in reply to: Row Layout – stack order in smartphone view #174825
     Radu
    Moderator

    Hi,

    Add also this css beside that

    @media(max-width:640px){
    .custom-cols-order .vc_row {display: grid !important;}
    .float-left-flip {order: 2 !important;}
    .float-right-flip {order: 1 !important;}
    }

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Did you have solved ?

    The text it’s white

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: SweetDate 3.0 #174820
     Radu
    Moderator

    @Benson

    If you have overwritten the template files in child theme and after update, the site is broken you will have to re-do the swetedate templates, or you can revert to 2.9.11 look for in main files/wordpress/version 2.9/

    If you haven’t overwritten the templates in child theme but looks wired, just re-save theme options, it should look ok

    @Roader for the moment we don’t need more ideas but thank you, the analytics code should be all code literally including the script tags, not analytics ID as you have added there.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How can I use custom grid layout on achieve pages? #174817
     Radu
    Moderator
    Not marked as solution
    in reply to: Shopping cart and notifications dont drowpdown since update #174814
     Radu
    Moderator

    Hi,

    I cannot see the cart, the menu isn’t displayed for guest users.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Loco translate words #174812
     Radu
    Moderator

    Great,

    We don’t longer use bp-album it’s an old plugin, now we are using rtMedia

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Extra Line in members dashboard #174811
     Radu
    Moderator

    Hi,
    Let me know if you have solved or not your issue

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Member search bar #174810
     Radu
    Moderator

    Hi,

    There is no reliable way to do that… That means to add the search form in the title section and it’s not ok for mobile and table.

    That can be achieved in this way, hidden with CSS the member’s title word, and then to edit the template and to add the same h1 before the search form, let me know if it’s ok like this…

    Moving the search form next to title isn’t really a good solution

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Group search #174809
     Radu
    Moderator

    Just add this shortcode to that page

    COPY CODE
    
    [kleo_search_form context="groups"]
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Please Help #174807
     Radu
    Moderator

    Hi,

    Yes now I was able to see that, actually there it’s a JS error that comes from a BuddyPress file

    We will speak with the core theme developer tomorrow and I will let you know, I will add the bug to the bug list.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Fix Facebook login Android #174741
     Radu
    Moderator
    Not marked as solution
    in reply to: Moving Share This to top of page #174738
     Radu
    Moderator

    hi,

    Just go to wp-content/themes/kleo-child/ and create a file named single.php int hat you will paste this content : https://pastebin.com/raw/t6JdyGPn

    That’s all the “Share This” will be before the post content

    The code needs to be pasted in wp-content/themes/kleo-child/single.php

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Title is not shown if the web browser window is narrow #174737
     Radu
    Moderator

    You’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 solution
    in reply to: Login Redirect Not Working #174736
     Radu
    Moderator

    Hi,

    The snippet that you are using looks good. I’m using the next code in kleo child theme and iti works as it should.

    COPY CODE
    
    function sq7_rdu_redirect( $redirect_to, $request, $user ) {
        $redirect_to = bp_core_get_user_domain($user->ID) . 'profile/';
        return $redirect_to;
    }
    add_filter('login_redirect', 'sq7_rdu_redirect', 11, 3);
    

    And also this

    COPY CODE
    
    function sq7_rdu_redirect( $redirect_to, $request, $user ) {
        $redirect_to = '/my-route-after-redirect/';
        return $redirect_to;
    }
    add_filter('login_redirect', 'sq7_rdu_redirect', 11, 3);
    

    try to change the 11 value to a higher or lower one… try also to remove all other your snippets and leave only this to test

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Header background image per category, body class outputs #174735
     Radu
    Moderator

    Use this instead

    COPY CODE
    
    // Add category slugs as classes in posts
    add_action('wp', 'kleo_post_categiries_body_class_init', 999);
    
    function kleo_post_categiries_body_class_init(){
        if(is_singular()){
            add_filter('body_class', 'kleo_post_categories_body_class');
            function kleo_post_categories_body_class($classes){
                $postcategories = get_the_category();
    
                foreach($postcategories as $postcat) {
                    $pcat = 'catslug-'.$postcat->slug;
                    $classes[] = $pcat;
                }
    
    
                return $classes;
            }
        }
    }
    
    

    will Generate catslug-categoryslug

    replace category slug with the category slug…

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Change Language Switch #174733
     Radu
    Moderator

    Hi,

    Just I’ve checked out, and those snippets i think they are too old cuz even using default wp theme, not the solution not works…

    Why you don;t create a simple menu with 3 items that link to your certain language or a simple HTML that points directly to your language

    Example

    COPY CODE
    
    <ul class="my-lang-selector">
    	<li class="lang1"><a href="/en/">English</a></li>
    	<li class="lang2"><a href="/es/">Spanish</a></li>
    	<li class="lang3"><a href="/de/">German</a></li>
    
    </ul>
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WordPress regular login form #174731
     Radu
    Moderator

    Video : https://drive.google.com/file/d/0Bxo5b6iHWRMwZC1adE1BZ3Jjc00/view

    Make sure the issue to not be caused by something else. de-activate all plugins except buddypress… and also the child theme to test, empty all caches.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WordPress regular login form #174730
     Radu
    Moderator

    Hi,

    My change cannot cause like you show me… I don’t encounter that.

    My change to functions file will trigger only when you click on the lost pass that comes from the response, or maybe I don’t know the steps to reproduce like on your screenshot.

    Anyway, my change doesn’t handle the backend.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Delete message #174729
     Radu
    Moderator

    Hi,

    The code from your child theme functions.php seems to not interfere with that, but if you have any other files in the child theme (bp templates) it could cause that.

    Try to leave only parent theme activated and if you have any cache plugin delete the cache…

    Check again, if it’s the same, re-upload the theme files over the existing one by overwriting them.

    RE-download the theme files from ThemeForest

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Primary Navigation Search bar #174728
     Radu
    Moderator

    Very odd, tried multiple times and it works for me…

    Make sure the code to be there and If you have any cache plugin delete the cache or modified resources.

    If still not works provide ftp + wp admin credentials to take a closer look in a private reply.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Testimonials display #174727
     Radu
    Moderator

    Hi,

    I cannot see any testimonials on your homepage, did you have to delete it?

    Tried to figure out what you want to achieve and I cannot, it’s possible to add a screenshot that points out exactly where are you referring to?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: I forgot my password, going to WP-Login. #174725
     Radu
    Moderator

    Hi,

    With a similar function

    COPY CODE
    
    add_filter( 'lostpassword_url',  'wdm_lostpassword_url', 10, 0 );
    function wdm_lostpassword_url() {
        return site_url('/redefinir?action=lostpassword');
    }
    

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: mycred plugin issues #174724
     Radu
    Moderator

    Hi,

    Thank you for providing the working solution!!

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: group update filter doesnt work #174722
     Radu
    Moderator

    Hi

    Depenbds by the devs of BuddyPress, report the issue if you want.

    https://buddypress.trac.wordpress.org/

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WordPress update error #174721
     Radu
    Moderator
    Not marked as solution
    in reply to: Register for facebook #174720
     Radu
    Moderator

    Hi,

    Personally, don’t know a solution or a plugin, try to search for a plugin that handles the forgot pass behavior.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Kleo #174719
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 5,281 through 5,320 (of 20,101 total)

Log in with your credentials

Forgot your details?