Forum Replies Created

Viewing 40 posts - 3,041 through 3,080 (of 20,101 total)
  • Author
  • in reply to: Menu icons in the sidebar #196038
     Radu
    Moderator
    Not marked as solution
    in reply to: Notification in the notification area #196032
     Radu
    Moderator

    No problem
    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
    in reply to: Button for member post #196031
     Radu
    Moderator

    Hi,
    Great!!
    Have a nice weekend
    Leave us a review on themeforest if you have time.
    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: Profile matching percent #196030
     Radu
    Moderator

    Hi,

    The matching circle can be hidden easily using this css.

    COPY CODE
    
    div.circular-item[title="Compatibility match"] {
        display: none !important;
    }
    

    Add this selector to wp-admin -> theme options -> styling options -> quick css

    PS: Salutari din Bucuresti!

    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: activity page #196029
     Radu
    Moderator

    Hi,

    Add this selector to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .elementor-1013 .elementor-element.elementor-element-f67f082 .elementor-posts-container .elementor-post__thumbnail {
        padding:initial !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: Front page do not load #196028
     Radu
    Moderator

    Hi,

    I need to see that debug.log file contains to can give you advices further…
    Also you can try to increase php max memory meanwhile you provide to me the debug.log file.

    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.

    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: Facebook Login Error #196027
     Radu
    Moderator

    Hi,

    IF on demo it works it means there it’s an isolated problem.

    Did you had tried to re-upload the parent theme files over the existing ones by overwriting them ?

    Update all plugins and also the theme!

    Try again with all plugins and child theme de-activated except buddypress plugin.

    The wp_debug throws some errors ?

    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.

    After you have disabled the plugins try to see if the error persists.

    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: footer #195927
     Radu
    Moderator

    Hi,

    Go via FTP to wp-content/themes/sweetdate-child/ and create a file named footer.php

    in that you will paste : https://pastebin.com/raw/Yzz9aWKC

    Then paste this code in child theme functions.php

    COPY CODE
    
    function register_sidebar_col5()
    {
        register_sidebar(array(
            'name' => 'Footer Widget 5',
            'id' => 'footer-5',
            'before_widget' => '<div id="%1$s" class="widgets clearfix %2$s">',
            'after_widget' => '</div>',
            'before_title' => '<h5>',
            'after_title' => '</h5>',
        ));
    
    }
    
    add_action('widgets_init', 'register_sidebar_col5');
    

    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: How can I enable Row Style Option in Row Setting #195925
     Radu
    Moderator

    Hi,

    The guide it’s very outdated it’s from 2013

    Can you show me an screenshot to can figure out what you need to achieve ?

    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: How to disable title in page.php #195922
     Radu
    Moderator

    Hi,

    You want to remove completely page title ? from all pages/posts/cpt ? or in certain page ?

    Did you had checked the page backend ? see the screenshot

    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: Button for member post #195918
     Radu
    Moderator

    Hi,

    Check in wp-admin -> pmpro -> advanced setttings -> Message for Logged-out Users:

    add it like this

    COPY CODE
    
    This content is for !!levels!! members only.<br />
    <a class="kleo-show-login" title="Login" href="http://rdu.local/kleo/wp-login.php">Login</a><a href="http://localhost/kleo/wp-login.php?action=register">Register</a>
    

    The idea it’s to have class kleo-show-login on the a element or li or any element.

    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: Notification in the notification area #195916
     Radu
    Moderator

    Hi,

    Try to use this plugin see if it’s an option like you need : https://wordpress.org/plugins/buddypress-notifications-manager/

    If not maybe there should be made custom, here’s a tutorial how you can build custom notifications : https://webdevstudios.com/2015/10/06/buddypress-adding-custom-notifications/

    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: Location of php file call some #195915
     Radu
    Moderator

    Hi,

    If you want to remove that from php

    Just copy this file wp-content/themes/sweetdate/page-parts/general-header.php to child theme wp-content/themes/sweetdate-child/page-parts/general-header.php

    And then you can handle the file as you need.

    Using child theme will make the changes that you made to be persistent even you update the parent theme.

    For the pattern background check in wp-admin -> theme options -> styling options->

    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: BuddyPress “Profile” Page #195913
     Radu
    Moderator
    Not marked as solution
    in reply to: profile menu isn't work #195912
     Radu
    Moderator

    Hi,

    Just copy this file wp-content/themes/sweetdate/page-parts/general-header.php to child theme wp-content/themes/sweetdate-child/page-parts/general-header.php

    Then do the next
    Check the screenshot

    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: Profile matching percent #195911
     Radu
    Moderator

    Hi,

    There you should specify a lower value for fields with multi-select options because if two profiles had more than one filed in common it will be counter once.

    I’ve added the fields similar to that profile to can reproduce the matching and at first view says 100% that’s because the interest value was 40 or 30 not remember exactly and if we have 2-3 fields in common will do 30*3 = 120 . and the value should be 5 or similar.

    Hope it makes sense
    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: activity page #195908
     Radu
    Moderator

    Hi,

    Just add them featured image

    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: BuddyPress “Profile” Page #195907
     Radu
    Moderator
    Not marked as solution
    in reply to: Edit Register Page Phrase at top #195906
     Radu
    Moderator
    Not marked as solution
    in reply to: Remove/Format description in the Advanced search #195905
     Radu
    Moderator

    Hi,

    You can turn off the search input from wp-admin -> theme options -> buddypress -> BuddyPress Members Search input

    You can easily add a button near search form that clears the criteria

    Let me know if it’s ok like that.

    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: Not possible to active Kleo theme #195904
     Radu
    Moderator
    Not marked as solution
    in reply to: Kleo Monetizer Bug #195903
     Radu
    Moderator

    Hi,

    Your ad code not displays nothing for me

    And it not makes any difference if i de-activate it, the white space remains, and if i replace the adsense code with this one it works even if i de-activate or not the buddypress.

    COPY CODE
    
    <img src="http://google.com/image.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: Forced Profile Photo upload #195902
     Radu
    Moderator

    Check if it haves any options to check/uncheck if doesn’t have just 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: Exclude users wordpress post from activity feed #195901
     Radu
    Moderator

    Hi,
    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: Paid Memberships Pro – Add Member Admin #195831
     Radu
    Moderator
    Hi, Not sure if the pmpro has addons for this kind of actions, i recommend you to ask the pmpro team if the plugin it's able to do that with one of their addons. Otherwise you can achieve that with help of a developer most sure. Cheers R.
    in reply to: buddypress groups directory hide a particular group #195830
     Radu
    Moderator

    Hi,

    Tried to see if you can do that easy but cannot find nothing helpful, also tried to see on google if it’s any soltuion for this but i cannot see, i recommend you to ask that on the buddypress forum if this is possible.

    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: BuddyPress “Profile” Page #195829
     Radu
    Moderator
    Not marked as solution
    in reply to: BuddyPress “Profile” Page #195821
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    Tested on mine i’ve installed sensei and maken some test and it works….
    Can you please provide wp+ftp login in a private reply to investigate deeper please?

    Can you try please to revert the koursy to cours post type slug to test if if works like that?

    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

    Hmm

    I will speak with the core dev about this, will get back to you tomorrow later or the day after tomorrow, if i don’t say nothing just add here a 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: profile menu isn't work #195817
     Radu
    Moderator

    I see…

    Just add this code to your functions.php

    COPY CODE
    
    
    /* Check if the rtmedia plugin it's activated then hook */
    if ( class_exists( 'RTMedia' ) ) {
        add_filter('header_profile_dropdown', 'my_profile_link', 1);
    }
    function my_profile_link($links) {
        $links[] = '<li><a href="' . bp_loggedin_user_domain().'media/" rel="nofollow">Media</a></li>';
        return $links;
    }
    
    

    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: activity page #195814
     Radu
    Moderator

    The path for the header it’s this one : wp-content/themes/sweetdate/page-parts/general-header.php and if you want to add chat code there i recommend you to copy the file in this path : wp-content/themes/sweetdate-child/page-parts/ and there you can edit the file safe, updateproof!

    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: activity page #195813
     Radu
    Moderator

    The css will be added to wp-admin -> theme options -> styling options -> Quick CSS

    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: Not possible to active Kleo theme #195812
     Radu
    Moderator
    Not marked as solution
    in reply to: Pmpro #195811
     Radu
    Moderator

    No problem
    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
    in reply to: Horizontal Form – BP PRofile Search #195810
     Radu
    Moderator

    Great if all good there!

    Have a nice week guys

    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: Forced Profile Photo upload #195809
     Radu
    Moderator

    Hi,

    Did you encounter the same issue even if you are running other theme ? like the default wp one! ?

    Did you had looken manually in the /wp-content/plugins and wp-content/mu-plugins for that plugin ? “bp-force-profile-photo” ? if there is not chcek the bp-config.php file and the functions.php file from child theme, rename those files to something like functions.php.backup and bp-custom.php.backup

    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/Format description in the Advanced search #195808
     Radu
    Moderator

    Hi,

    1. try to add an empty space there instead of any word.

    2. try this css

    COPY CODE
    
    
    .su-spoiler-content.su-clearfix .editfield {
         margin-top: initial !important;
         float: initial !important; 
         width: initial !important;
    }
    
    
    .su-spoiler-style-fancy > .su-spoiler-content label {display: inline-block;width: auto !important;}
    
    

    I saw that you had styled in a way in style.css the first rule from css will overwrite that selector.

    .su-spoiler-content.su-clearfix .editfield{}

    3. IT add’s this parameter to the URL ?bp_profile_search=clear and all criteria will be cleaned

    https://cristea.ch/members/?bp_profile_search=clear

    4. If you are referring to the default wp search use this plugin : https://wordpress.org/plugins/disable-search/

    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 Monetizer Bug #195799
     Radu
    Moderator

    Hi,

    That code not generates adds, but anyway if i use a regular banner code , and i deactivate the buddypress plugin it will works as normal.

    like

    COPY CODE
    
    <img src="http://google.com/image.png">
    

    Anyway i’ve tried on your site live but cannot see any 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: Kleo carousel display in mobile #195797
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 3,041 through 3,080 (of 20,101 total)

Log in with your credentials

Forgot your details?