Forum Replies Created

Viewing 40 posts - 961 through 1,000 (of 4,912 total)
  • Author
  • in reply to: The kleo_top_members shortcode is not working properly #207654
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: About WPBakery Page Builder #207560
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: The kleo_top_members shortcode is not working properly #207555
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: About WPBakery Page Builder #207554
     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: many problems with buddypress #207538
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Member start / Join date. #207537
     Kieran_SQ
    Moderator

    Hi,

    For others to use that code you will need to share it again using a code tag (from the reply box) before and after the code. As is stands the formatting has been stripped and would cause a potentially fatal error for another user.

    With regards to placement, do you mean align the text right or change the location your calling it in? To align the text you’ll need to echo some HTML for the text so you can have a custom class or ID to target. To change where you’re calling this you’ll need to change bp_member_header_actions to any other BuddyPress hook as desired.

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: many problems with buddypress #207530
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Can’t edit pages with Visual Composer anymore #207528
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Can’t edit pages with Visual Composer anymore #207527
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Theme update not possible #207521
     Kieran_SQ
    Moderator

    Hi,

    Unfortunately there is an ongoing issue with the Envato (ThemeForest) API. We’re looking into it, however, we do not have access to their systems and cannot affect changes for them.

    In the meantime you can go to ThemeForest and download the ‘Installable WordPress File’ for SweetDate to manually update it via WP Admin > Appearance > Themes > Add New or via SFTP/FTP and uploaded into /wp-content/themes/sweetdate/.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Member start / Join date. #207519
     Kieran_SQ
    Moderator

    Hi,

    This is not a feature of the theme and is not something standard in BuddyPress. You can however build something yourself using the WordPress user meta user_registered

    See here for an example https://wordpress.stackexchange.com/questions/77876/display-user-registration-date/77878

    And here for the WordPress codex

    https://codex.wordpress.org/Function_Reference/get_userdata

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Changing the Order of the Icons in Profiles and Group #207511
     Kieran_SQ
    Moderator

    Hi,

    The easiest way to change the order of profile and group tabs is to use a plugin. You may wish to try this free plugin to achieve that https://www.buddyboss.com/purchase/buddypress-reorder-tabs/.

    If you’re comfortable coding PHP then you can rework this code (make sure to account for all tabs from custom plugins etc)

    COPY CODE
    /**
     * Reorder BuddyPress profile tabs/navigation.
     */
    function buddydev_reorder_buddypress_profile_tabs() {
        $nav = buddypress()->members->nav;
     
        // it's a map of nav items for user profile.
        // mapping component slug to their position.
        $nav_items = array(
            'settings' => 10, // first.
            'activity' => 20,
            'friends'  => 30,
            'groups'   => 40,
            'blogs'    => 50,
            'messages' => 60,
            'profile'  => 70,
        );
     
        foreach ( $nav_items as $nav_item => $position ) {
            $nav->edit_nav( array( 'position' => $position ), $nav_item );
        }
    }
    add_action( 'bp_setup_nav', 'buddydev_reorder_buddypress_profile_tabs', 999 );

    Reference https://buddydev.com/reordering-buddypress-user-profile-tabs/

    With regards to colors you can follow the tutorial (step 1) you linked to but assign a color value at the same time, for example:

    COPY CODE
    #buddypress div#item-nav ul #groups-personal-li a:before {
        content: "e995";
        color: red;
    }

    This will change the color of the groups icon on the profile page to red. I have attached a screenshot of the particular element you need to select in the browser console (F12) to generate the CSS you need.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    Attachments:
    You must be logged in to view attached files.
     Kieran_SQ
    Moderator

    Hi,

    The code you shared without the tags has lost it’s formatting so I cannot use it as an example, to share code here in the future please use a code tag (from the reply area) before and after the code.

    If the code from our support article is not working for you then you may wish to try this from the BuddyDev team https://buddydev.com/exclude-users-from-members-directory-on-a-buddypress-based-social-network/.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Show custom profile fields in member directory #207506
     Kieran_SQ
    Moderator

    Hi,

    We have a support article about how to achieve this which can be found here https://archived.seventhqueen.com/sweetdate/article/add-profile-information-member-name-members-directory

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: buddypress table style #207505
     Kieran_SQ
    Moderator

    Hi,

    You can do this with CSS as described above. I have generated a basic set of classes and styles that you can copy, paste and adjust to use as you need.

    COPY CODE
    #buddypress table.profile-fields tr td.label {
        background-color: red !important;
        color: white;
        border-radius: 10px;
    }
    #buddypress table.profile-fields tr td.data {
        background-color: purple;
        color: white;
        border-radius: 10px;
    }
    #buddypress table.profile-fields tr td.data a {
        background-color: purple;
        color: white;
        font-weight:bold;
        border-radius: 10px;
    }
    #buddypress table.profile-fields {
        border: 0 !important;
        border-spacing: 5px;
    }
    #buddypress table.profile-fields tr td {
        padding: 15px !important;
    }

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Stylish Login Popup #207500
     Kieran_SQ
    Moderator

    Hi Rob,

    Thanks for contacting us about this custom development. We can’t offer custom development via the forums as it’s outside the scope of the support we provide.

    Coding this properly would take some time but I think it is a great idea and could be a great addition to the theme so I am going to move this ticket to the Feature Requests section for the community to vote on.

    All the best,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Switching between profile options #207499
     Kieran_SQ
    Moderator

    Hi,

    This is a special feature for SweetDate that we do not have any plans to add to KLEO or BuddyAp.

    If you needed this functionality in the head of your profiles like this then you would need to custom code this yourself or hire a developer to achieve this for you. If you’re interested in speaking to one of our developers about this you can email dev@seventhqueen.com with as much information about your customization as possible

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: buddypress table style #207498
     Kieran_SQ
    Moderator

    Hi,

    You can override any CSS used within the theme by pasting in your custom CSS into your BuddyApp Child theme’s style.css file in WP Admin > Appearance > Editor > BuddyApp Child > Style.css

    To target the labels for the profile fields use the below CSS

    #buddypress table.profile-fields tr td.label {}

    And to target the content of the fields use the below CSS

    #buddypress table.profile-fields tr td.data {}

    In each case feel free to define any colors, fonts, font weights, borders etc as desired. Save the customized CSS and clear your website cache / browser cache to see the changes.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Sensei Subscription Key #207494
     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: About WPBakery Page Builder #207491
     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: The kleo_top_members shortcode is not working properly #207463
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Shortcodes not working #207462
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: forum system #207456
     Kieran_SQ
    Moderator

    Hi,

    I logged into your site and found that you have not activated bbPress under WP Admin > Plugins > bbPress. I have activated this for you and you’ll now see the Forums, Topics and Replies menu items in the WordPress admin sidebar (see screenshot).

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Shortcodes not working #207454
     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator
    Not marked as solution
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Magazine page – querry #207438
     Kieran_SQ
    Moderator

    Hi,

    In your shortcodes you’ve not referenced a post type / built a full query. Go to WP Admin > Pages and edit the page with the shortcode, make sure you’re using the WP Bakery editor. Hover over the element you wish to configure and click the pencil icon to configure it. When the edit modal has opened click on the ‘Build Query’ button and select your desired post type, any specific categories and the amount of posts etc you wish to show. Save your settings and clear your cache whilst viewing the page on the front-end. If you have posts in that post type to show it should now appear.

    I have attached images of how to do this with the News Ticker element but the process is the same for all three elements.

    Let me know how you get on and if you need me to login and check for you. If you do make sure to update this ticket, in a private reply, with admin credentials (English US or UK).

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    Attachments:
    You must be logged in to view attached files.
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: changes with CSS hero #207434
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Menu #207433
     Kieran_SQ
    Moderator

    Hi,

    The plugin redirect is for all members, as per my earlier message, this is regardless of whether or not this is a first time login or second (etc).

    If you need to redirect only newly registered users on their first login then you will need to extend the code I referenced within my second reply.

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Facebook integration #207424
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: The kleo_top_members shortcode is not working properly #207417
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Magazine page – querry #207414
     Kieran_SQ
    Moderator

    Hi Martin,

    In your examples I can see curly quotes which would break the functionality of the shortcode. They should appear like this.

    COPY CODE
    [kleo_news_ticker posts_query="size:10|order_by:date"]
    [kleo_news_focus name="ALL NEWS" posts_query="size:4|order_by:date"]
    [kleo_news_focus name="LIFESTYLE" posts_query="size:4|order_by:date"]

    Note in the above example the straight quotes.

    If after you have copied and pasted the above examples (from the webpage not the email preview) you still have the same issue then please double check the following

    1. You have WP Bakery and K Elements installed and activated. If you do not then please install and activate them via WP Admin > Appearance > Install Plugins. Clear your website and browser cache and check the page again.

    2. Ensure you have not disabled either of these two features in WP Admin > Theme Options > Modules and Speed. Make sure News Ticker and News Focus are enabled.

    Let me know the outcome,

    All the best,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

Viewing 40 posts - 961 through 1,000 (of 4,912 total)

Log in with your credentials

Forgot your details?