Forum Replies Created

Viewing 40 posts - 6,961 through 7,000 (of 20,101 total)
  • Author
  • in reply to: Activity feed problem #161629
     Radu
    Moderator
    Not marked as solution
    in reply to: Quick question about the activity stream buttons #161628
     Radu
    Moderator

    Hi,

    There you should override the buddypress tempalte frmo theme, just upload create entry.php file in child theme ( wp-content/themes/buddyapp-child/buddypress ) and paste this content in it https://pastebin.com/raw/HLxLjG8d

    And for the detelete butotn add this function in functions.php in child theme

    COPY CODE
    
    function bp_get_activity_delete_link_custom($link) {
    
        $url   = bp_get_activity_delete_url();
        $class = 'delete-activity';
    
        // Determine if we're on a single activity page, and customize accordingly.
        if ( bp_is_activity_component() && is_numeric( bp_current_action() ) ) {
            $class = 'delete-activity-single';
        }
    
        $link = '<a href="' . esc_url( $url ) . '" class="button item-button bp-secondary-action ' . $class . ' confirm" rel="nofollow">' . __( ' &nbsp; ', 'buddypress' ) . '</a>';
    
        /**
         * Filters the activity delete link.
         *
         * @since 1.1.0
         *
         * @param string $link Activity delete HTML link.
         */
        return  $link;
    }
    add_filter('bp_get_activity_delete_link','bp_get_activity_delete_link_custom');

    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: translate “change cover” strings #161626
     Radu
    Moderator

    Hi,

    Can you please provide FTP details in a private reply please to can take a closer look at 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: Image for next blog pop out #161614
     Radu
    Moderator

    Hi,

    Do you have noticed that also on our demo ?

    It’s something related about a certain CPT ?

    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: Unable to send public messages. #161612
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    There seems to be a bug when rtMedia plugin it’s ON, temporary you can use the next CSS fix.

    Using this CSS the update button will appear after you click on text area

    COPY CODE
    
    #whats-new-content.active #whats-new-options { display: block;}
    

    Using this CSS the update button will be shown by default.

    COPY CODE
    
    #whats-new-content.active #whats-new-options { display: block;}
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    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: Unable to send public messages. #161552
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    There seems to be a bug when rtMedia plugin it’s ON, temporary you can use the next CSS fix.

    Using this CSS the update button will appear after you click on text area

    COPY CODE
    
    #whats-new-content.active #whats-new-options { display: block;}
    

    Using this CSS the update button will be shown by default.

    COPY CODE
    
    #whats-new-content #whats-new-options { display: block;}
    

    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: User Profile won’t work #161540
     Radu
    Moderator

    Hi,

    Sorry for the delay,

    I’ve tried to reproduce the error using the latest version of BuddyPress and Kleo on my local install and I cannot reproduce it.
    Please try to de-activate child theme and check again maybe it’s caused by some modification in the child theme.
    Try with all plugins deactivated excluding Buddypress and check again.

    Additionally, if it’s the same try to re-upload the parent theme files over the existing ones (wp-content/themes/kleo/)

    As Laura mentioned there it’s a fatal error related to the contact-form-7-infusionsoft-add-on.

    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: Menu go behind the Title/BroadCrumb area #161495
     Radu
    Moderator

    Hi,

    The problem it’s caused by this plugin: https://wordpress.org/plugins/ultimate-responsive-image-slider/

    Somehow it adds this rule .navbar { overflow: hidden; } which causes that

    Add this to quick CSS area

    COPY CODE
    .navbar {
        overflow: initial !important;
    }

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    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: Mobile Site Not Responsive or proper theme #161488
     Radu
    Moderator

    Hi,

    Do you have somehow jetpack activated?

    Or any other mobile plugin?

    Most sure this is the reason, try to de-activate all plugins and check again, but I bet the jetpack it’s causing 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: Bugs listing and/or finding members #161487
     Radu
    Moderator
    Not marked as solution
    in reply to: Woocommerce Product Page Tabs #161486
     Radu
    Moderator

    Hi,

    404 error on that link ; http://seventhqueen.com/public-files/radu/SiteGround_Web_Hosting__2017-05-15_19-47-48.png

    Do you see the same on our demo ? https://seventhqueen.com/themes/kleo/shop/

    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: Portfolio pagination broken after latest updates #161483
     Radu
    Moderator

    Hi,

    It seems that the pagination works only when filters are active.

    As a workaround, until we fix this, do the next, please

    enable ajax for the shortcode and also the filters then add this CSS to quick CSS area to hide the filters for that page

    COPY CODE
    .page-id-123 .ajax-filter-wrap.row.clearfix {
        display: none;
    }

    Replace 123 from page-id-123 with that page id

    We will investigate further and we will fix this, we will let you know

    Portfolio code
    [kleo_portfolio columns="3" item_count="3" pagination="yes" ajax="yes" excerpt="no" el_class="dashboard-videos"]

    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: Messages #161480
     Radu
    Moderator

    Hi,

    For this matter please ask the paid memberships pro since the question ti’s more related to their product.
    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: private messages #161479
     Radu
    Moderator

    Hi,

    For this matter please ask the paid memberships pro since the question ti’s more related to their product.
    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 second page bugged. #161478
     Radu
    Moderator

    Hi,

    After login i see this

    So, I cannot take a look at that… If you de-activate the child theme you are able to paginate correctly?

    On our demo the pagination works correctly, in the next link i’ve choosen i’m man looking for a women and while paginate there are only womens, most sure something from your child theme can cause that or some plugin.

    https://seventhqueen.com/demo/sweetdatewp/members/?field_3=Man&field_6=Woman&field_2&field_2_to&field_17&bs=+&upage=1

    Click on pagination, it works as it should.

    Also, make sure to have all things update.

    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: Problem Ajax Search Thema #161477
     Radu
    Moderator
    Not marked as solution
    in reply to: KLEO POST MALFUNCTION #161474
     Radu
    Moderator
    Not marked as solution
    in reply to: How to Close site for construction? #161471
     Radu
    Moderator
    Not marked as solution
    in reply to: Modifying Page Title for Add Listing Form #161470
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Great!
    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: Right menu activity count #161468
     Radu
    Moderator

    Hi,

    I saw that I need FTP login to inspect this further

    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: Cannot activate Jetpack Premium #161467
     Radu
    Moderator
    Not marked as solution
    in reply to: BBpress Avatar and user name positon #161466
     Radu
    Moderator
    Not marked as solution
    in reply to: LOGIN & REGISTRATION #161464
     Radu
    Moderator
    Not marked as solution
    in reply to: Issues with Embeds on Activity Stream #161463
     Radu
    Moderator
    Not marked as solution
    in reply to: Facebook Login #161462
     Radu
    Moderator

    Hi,

    Just log in with facebook to your site and it works as it should !

    Make sure to not have the same email on that facebook account same as an already registered account.

    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 Grid Loading Animation #161458
     Radu
    Moderator

    Hi,

    Our theme stops the CSS animations, but there it’s an ajax loader and preloader so, in that time all your photos are pulled from the server.

    You can try to pull that photos using KLEO Post grid instead post grid, give a try.

    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 .activity-header !important tag issues #161456
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Replace comment button with font awesome icon #161449
     Radu
    Moderator
    Not marked as solution
    in reply to: turn on onlline status under members page #161447
     Radu
    Moderator
    Not marked as solution
    in reply to: Woocommerce 3.0 gallery #161446
     Radu
    Moderator

    Hi,

    We already work on this, it’s added to our buglist, we will let you know when officially integrate this and we will provide you files until the update.

    As temporary solution besides yours add this CSS

    COPY CODE
    
    .woocommerce div.product div.images ol img { width: 100% !important; height: 100%;}
    .woocommerce div.product div.images ol { top:auto; bottom:-150px; width:100% !important;height: 200px !important;}
    .woocommerce div.product div.images ol li { width:25%; display: inline; height: auto;margin-bottom:20px;}
    
    

    Maybe will not be fitted on your site cuz the images ratios differs from my to yours

    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: replace buddypress form #161442
     Radu
    Moderator
    Not marked as solution
    in reply to: Rounded Video shortcode #161441
     Radu
    Moderator
    Not marked as solution
    in reply to: Form 7 not displaying on mobile #161259
     Radu
    Moderator
    Not marked as solution
    in reply to: memberships vs. subscribers #161258
     Radu
    Moderator

    I don;t know exactly the reason, but maybe those are there before you have a membership to the site.
    Any type of account created by the user it’s default subscriber role, Also if you login with facebook will give you a subscriber role.

    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: Startup questions #161257
     Radu
    Moderator

    Hi,

    i,

    1. Kleo theme uses for membership and user restrictions, here are presented and explained all pmpro features: https://www.paidmembershipspro.com/features/

    2. The users should be imported in WP not in KLEO, so you can give a try using this plugin: https://wordpress.org/plugins/import-users-from-csv-with-meta/

    3. Kleo theme works correctly using WPML plugin or multilanguage websites.

    4. If you are referring to the sensei plugin, there is no limit for creating courses/teachers etc…

    5. same as 4

    6. If the sensei plugin supports that yes https://docs.woocommerce.com/document/sensei-and-membership/

    7. AAsk this the sensei support since this it’s related to sensei.

    8. Yes by adding the course link in the page that you create.

    9. From what I know yes, I saw kleo users that use it without problems.

    10. For an accurate answer related to the sensei, I recommend you to ask this on the support of sensei product, please.

    11. same as 10.

    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 think this it’s how woo commerce it behaves by default, please give a try using a twenty fifteen wp theme and let me know if it’s the same.

    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 - 6,961 through 7,000 (of 20,101 total)

Log in with your credentials

Forgot your details?