Forum Replies Created

Viewing 40 posts - 3,721 through 3,760 (of 20,101 total)
  • Author
  • in reply to: Media grid opens image AND pretty photo #190694
     Radu
    Moderator

    Hi,

    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 redirecting to WordPress #190686
     Radu
    Moderator
    Not marked as solution
    in reply to: Search functionality #190685
     Radu
    Moderator

    Hi @getmebrian

    Thanks you for this suggestion.

    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 redirecting to WordPress #190608
     Radu
    Moderator
    Not marked as solution
    in reply to: Profile functions not working anymore #190590
     Radu
    Moderator
    Not marked as solution
    in reply to: Slider in responsive and mobile devices #190588
     Radu
    Moderator

    As a workaround you can add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .rev_slider_wrapper {
        display: block !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
    in reply to: Login redirecting to WordPress #190587
     Radu
    Moderator
    Not marked as solution
    in reply to: Other payment solution than Pmpro #190585
     Radu
    Moderator

    Hi,

    Ok , have a nice week
    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 show add to cart button on shop page #190584
     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: Video Header Portfolio page #190583
     Radu
    Moderator

    Hi,

    There it was some styling issues but on you looks very messed like some tag is not closed, did you have tried to de-activate all plugins and child theme ?!

    Also if its the same try to re-upload theme files over the existing one by overwrite them via FTP in wp-content/themes/kleo

    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: Slider in responsive and mobile devices #190582
     Radu
    Moderator

    Hi,

    I think there it’s a problem directly from revolution slider since i’ve added the slider shortcode in a new page empty and switched to a default wp theme and viewing as mobile the slider it’s hidden even i set off for the options “Hide slider on mobile”.

    I recommend you to ask directly them
    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: Animation work after mouse click #190576
     Radu
    Moderator

    Hi,

    Please replace this file : wp-content/themes/kleo/assets/css/app.css

    with this one : https://pastebin.com/raw/XPCXFfzU

    Let me know

    This will be included in next theme update

    Make sure to have development mode -> on from wp-admin -> theme options -> miscellaneous

    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: Translation of REGISTER page #190568
     Radu
    Moderator

    Press new language and add yours also check using default wp theme if encounter the same 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: horizontal search form on the members page #190566
     Radu
    Moderator

    Hi,

    There should be done a simple trick, go to wp-admin -> users -> profile search

    Just set for I am a filed placeholder looking for a and for looking for a placeholder i’m a

    That’s it

    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
    Not marked as solution
     Radu
    Moderator

    Hi,

    I, see tried to take a closer look but with the ftp account i have access nowhere i need in root installation

    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: Remove default buddypress login #190561
     Radu
    Moderator

    Hi,

    For the gd-login link from top menu , you will have to remove the menu item that links to gd-login from wp-admin -> appearance- > menus -> top menu -> remove login page, then look in top right of the page click on “Screen Options” and check KLEO then from KLEO section add login instead the old one.

    1. You can use the next snippet that will lock any new member if it’s logged and he has no membership to levels page

    COPY CODE
    
    add_action( 'template_redirect', 'my_membersip_restrict' );
     
    function my_membersip_restrict() {
        global $pmpro_pages, $post;
     
        if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) {
            if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) {
                wp_redirect( pmpro_url() );
            }
        }
    }
    
    

    The snippet will be pasted in wp-content/themes/kleo-child/functions.php

    NOTE : The Kleo Child Theme needs to be installed and activated.

    2. To can have a similar menu to that you will need to enable megamenu for child elements

    3. I saw those on your main menu, did you had solved that ?

    4. see 1

    You can link only a membership level using this kind of link http://rdu.local/kleo/membership-account/membership-checkout/?level=1 replace 1 from the end with the afferent level ID that you want to be used only for trainers.

    With all of those explained you should be able done your project without spending money.


    Reply 2:

    For the gap from there make sure that there is no padding or margin in the row or column where the slider it’s placed and in revolution slider settings check to be auto.

    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 redirecting to WordPress #190556
     Radu
    Moderator
    Not marked as solution
    in reply to: Login redirecting to WordPress #190554
     Radu
    Moderator
    Not marked as solution
    in reply to: how show add to cart button on shop page #190546
     Radu
    Moderator

    Hi,

    Just add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .woocommerce ul.products li.product figure figcaption {
        bottom: 0 !important;
        display: block;
    }
    

    Or this one

    COPY CODE
    
    .woocommerce ul.products li.product figure figcaption {
        bottom: 0 !important;
        display: block;
        position: initial !important;
    }
    

    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: FullPage WPBakery dont work with Kleo #190312
     Radu
    Moderator

    Hi,

    We still testing i think next week will update this

    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 redirecting to WordPress #190309
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Video Embeds #190305
     Radu
    Moderator

    Hi,

    Please replace this file : wp-content/themes/kleo/assets/js/app.js
    with content of this one : https://pastebin.com/raw/AGiCynxC

    And make sure to enable development mode -> on from wp-admin -> theme options -> miscellaneous.

    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
     Radu
    Moderator

    I see, the error looks like some files aren’t i recommend you to re-upload theme files via FTP over the existing ones by overwrite them.

    If the error persists, try to activate child theme, if wp admin is not accessible via FTP rename the kleo-child folder in this way you de-activate it.

    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: WPBakery Page Builder conflict with Essential Grid #190301
     Radu
    Moderator

    Salutare !

    Please 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 CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( '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,Essential Grid and K-elements.

    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 solution
    in reply to: Media grid opens image AND pretty photo #190300
     Radu
    Moderator

    Hi,

    Before to fix that i was able to reproduce the same on my local install but now after fix that happens no more.

    I’ve noticed that you are using google page speed server module can you please set ModPagespeed OFF until we debug this ? Most sure the modPagespeed do some cache by combining all resources.

    Let me know, if you have additional optimizations things like cloudflare / cache / mod pagespeed bypass them flush cache.

    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: change the birthday age group #190299
     Radu
    Moderator

    Hi,

    You can change the color and font family from there using this css

    COPY CODE
    
    #activate-page p {
    font-family:"Arial";
    font-size:20px;
    color:red;
    }
    

    You can remove the link from there by removing the %s from the translation or you can edit direct in the file.
    You can edit that just in php file directly by copying this file activate.php

    from : wp-content/themes/buddyapp/buddypress/members/activate.php
    to : /wp-content/themes/buddyapp-child/buddypress/members/activate.php

    Look for around line 50

    Note : Child theme needs to be installed and activated, in this way your changes will stay even you update the parent theme.

    Cheers

    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,
    Great, have a nice day
    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
    Not marked as solution
    in reply to: Login redirecting to WordPress #190290
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    Done, please search again for that string, it should be findable and translatable from now.

    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
    Not marked as solution
    in reply to: Menu not showing in Mobile format #190286
     Radu
    Moderator

    Hi,

    Just use this css will handle the color after you scroll a little

    COPY CODE
    
    #navigation-sticky.trans-nav.darken {
        background: red !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,
    Please re-upload theme files again since i cannot see that error using latest update.

    IF persists de-activate all plugins and child theme then 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 solution
    in reply to: Display issue of audio #190192
     Radu
    Moderator
    Not marked as solution
    in reply to: Media grid opens image AND pretty photo #190189
     Radu
    Moderator

    Hi,

    I see , please replace this file : wp-content/themes/kleo/assets/js/app.js

    with the content of this one : https://pastebin.com/raw/Ay4Nzrm4

    Then from wp-admin -> theme options -> miscellaneous -> development mode -> ON

    Then make sure to empty cache if you have some.

    Let me know if works as it should

    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 the birthday age group #190183
     Radu
    Moderator

    Hi,
    Theme strings and plugins strings can easily be changed by using Loco Translate plugin https://wordpress.org/plugins/loco-translate/

    A small introduction on how translations work

    Translatable strings can come from the theme or from the installed plugins. You need to translate the theme or the plugin depending on what section of the site your string is found.

    For example if your string is on your BuddyPress profile then most probably you will need to translate BuddyPress plugin. If you are on the Forums section of your site then bbPress plugin should be the one that needs to be translated. Another example is the rtMedia plugin that adds the Media links to BuddyPress and if you want to translate it then this plugin will contain the string.

    Follow these steps to get you started:

    • Install Loco Translate plugin
    • Go to the plugin dashboard: WP Admin – Tools – Manage translations
    • Find the theme or plugin in the list.
    • If the language isn’t already in the list then click Add new language, choose your language and if you are asked where you want to save the language files choose global language directory ( wp-content/languages/ ).
    • Press SYNC button to synchronise your translation with the provided .pot file
    • Search for the string you want to translate and add your translated string.
    • Press Save when you finished your translation.

    Note: You will have to set the language for your blog from WP-admin – Settings – General – Site Language – Choose your language

    Cheers

    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: Can search field search all content? #190182
     Radu
    Moderator
    Not marked as solution
    in reply to: Other payment solution than Pmpro #190181
     Radu
    Moderator

    Hi,

    Just i’ve created a new user and had assigned 3 months membership and i was able to see the directory as it should, maybe the issue comes from pmrpro if user pays and the membership not change or similar

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 3,721 through 3,760 (of 20,101 total)

Log in with your credentials

Forgot your details?