Forum Replies Created

Viewing 40 posts - 1,521 through 1,560 (of 2,990 total)
  • Author
  • in reply to: Help #133886
     Radu
    Moderator

    Hi,

    Use this CSS to control font size and font family only for the menu

    COPY CODE
    
    .primary-menu .navbar-nav>li>a {
        font-size: 17px;
        font-family: monospace;
    }
    

    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: k-elements kleo shortcode error – division by zero #133880
     Radu
    Moderator

    Hi,

    Regarding that bug, just pay attention to the quotes from where you have copied that code, one quote are like that : ” and others like this ″ this because of wired encoding… so try to paste again the shortcode from here : http://pastebin.com/raw/gZqLWFD9 and you will see it;s ok

    The names of the icons without icon- are available only in that certain shortcode if you will use html code you should write with icon- prefix

    example :

    COPY CODE
    
    <i class="icon-umbrella"></i>
    

    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: Create new form #133877
     Radu
    Moderator

    hi,

    For the MailChimp problem provide admin credentials to check please.

    For renaming tabs you shoud add this code to your child theme functions.php

    COPY CODE
    
    define( 'BP_XPROFILE_SLUG', 'perfil' );
    define( 'BP_ACTIVITY_SLUG', 'actividad' );
    define( 'BP_FRIENDS_SLUG', 'contactos' );
    define( 'BP_GROUPS_SLUG', 'grupos' );
    define( 'BP_FORUMS_SLUG', 'foros' );
    define( 'BP_MESSAGES_SLUG', 'mensajes' );
    define( 'BP_NOTIFICATIONS_SLUG', 'notificaciones' );
    

    Maybe you will need to rename and other components, if not leave only tge first line

    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: Restrict my site #133848
     Radu
    Moderator

    Hi,

    Add this function to

    COPY CODE
    
    
    function disable_sidemenu_on_groups_component($data, $option) {
    
        if (bp_is_groups_component() AND !is_user_logged_in() ) {
    
            if ($option = 'header_sidemenu') {
                $data = false;
            }
            return $data;
        }
    
    }
    add_filter('sq_option','disable_sidemenu_on_groups_component',10, 2 );
    
    

    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 set up the knowledge base #133839
     Radu
    Moderator

    Hi,

    Add this CSS to wp-admin -> appearance -> theme options -> quick css

    COPY CODE
    
    .col-xs-12:nth-child(3n+1) {
        clear: left;
    }
    

    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: 0 COMMENTS at bottom of forums #133814
     Radu
    Moderator

    Hi,

    Use this css instead

    COPY CODE
    
    
    .forum #comments, .topic #comments {
        display: none !important;
    }
    

    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: Submit button on forums all the way to right #133728
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general options -> quick css

    COPY CODE
    
    
    .bbp-topic-form form .bbp-submit-wrapper {
        float: left !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: 0 COMMENTS at bottom of forums #133726
     Radu
    Moderator

    I’ve understood we will investigate this but until then use this temporary solution

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

    COPY CODE
    
    .page-id-30379 div#comments {
        display: none !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: Issue with Activity Post #133708
     Radu
    Moderator
    Hi, 1. This is the shortcode for the facebook login : [kleo_fb_button] 2. With a CSS code like this
    .register.buddypress #main > section.main-color {
        background: url('https://www.ricoh.com/r_dc/caplio/r7/img/sample_04.jpg');
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }
    
    3. You should install a third party plugin that allows you to login with twitter or Google / https://wordpress.org/plugins/search.php?q=social+login test one of those 4. This plugin it's tested and we recommend it https://wordpress.org/plugins/wp-recaptcha-bp/ 5.You can give ability to a user to create articles and to have it an own section for every user with articles with this plugin : https://wordpress.org/plugins/social-articles/ 6. Use this plugin : https://wordpress.org/plugins/buddypress-activity-privacy/ 7. Personally I haven't used this... I don't know what to recommend you . 8. ... search on google 9. If you will use one of our demos yes if not you can build your website without it but some theme features will be missing 10. This plugin : https://wordpress.org/plugins/wp-mail-smtp/ Cheers R.
    in reply to: Video background on the front page #133699
     Radu
    Moderator

    Hi,

    Sure, please replace this file : wp-content/themes/sweetdate/page-parts/general-register-modal.php with the attached file after you unzip it !

    Then add this CSS to your theme options -> styling options -> quick css

    COPY CODE
    
    .g-recaptcha { clear: both; width: 100%; margin: 10px 0; }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Other Google Fonts available in VC element? #133696
     Radu
    Moderator

    Hi,

    This is the selector with you can control the logo font size….

    COPY CODE
    
    .logo img {
        font-size: 12px !important;
    }
    

    Adapt it for your needs.

    Let me know if we can close this ticket

    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: Restrict my site #133682
     Radu
    Moderator

    Hi,

    Just add this function to wp-content/themes/buddyapp-child/functions.php

    COPY CODE
    
    function exception_group_component() {
    
        if (bp_is_groups_component()) {
            if (!is_admin()) {
                remove_action('template_redirect', 'kleo_restrict_site');
            }
        }
    
    }
    
    add_action('init','exception_group_component');
    
    

    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: Side borders #133543
     Radu
    Moderator

    Add those css’s

    COPY CODE
    
    .vc_column-inner.vc_custom_1471122245703 {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        margin-left: 0 !important;
    }
    
    .wpb_column.vc_column_container.vc_col-sm-3.vc_col-has-fill {
        padding-right: 15px;
    }
    

    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: Shop Archive ipad horizontal view problem #133539
     Radu
    Moderator

    Sorry, typo in the CSS…, try again

    COPY CODE
    
    
    @media(max-width:1200px) {
    .woocommerce ul.products li.product figure figcaption {
        bottom: 0;
    }
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Shop Archive ipad horizontal view problem #133519
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    @media(max-with:1200px) {
    .woocommerce ul.products li.product figure figcaption {
        bottom: 0;
    }
    }
    
    

    Let me know

    CSS will be added to wp-admin -> theme options -> general settings -> 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: Transparent mobile menu + menu icon #133496
     Radu
    Moderator

    Hi,

    Add also this css

    COPY CODE
    
    .navbar-transparent #main {
        margin: 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: Transparent mobile menu + menu icon #133407
     Radu
    Moderator

    Hi,

    That’s because the content area goes under the header, try with this css instead of that

    COPY CODE
    
    
    @media(max-width:1024px) {
    .navbar {
        background:rgba(42, 42, 42, 0.0) !important;
        position: absolute;
        max-height:100px !important;
    
    }
    div#main {
        margin-top: 100px;
    }
    
    }
    

    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: Video background on the front page #133406
     Radu
    Moderator

    Hi,

    Please add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .g-recaptcha {
        float: right;
        clear: both;
    }
    

    Will be aligned to right under terms and conditions

    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: CPT #133400
     Radu
    Moderator
    Hi, To can benefit for all theme features just replace the metaboxes.php form wp-content/themes/kleo/lib/ with the attached file after you unzip it. This will be implemented in the next theme update. Then you should add these functions in the wp-content/themes/kleo-child/functions.php
    
    // Add Theme Settings to CPT //
    // Replace superpost with your CPT slug //
    function my_cpt_sq_metabox_general_settings($post_types) {
    
        $post_types[] = 'superpost';
        $post_types[] = 'superpost2';
        return $post_types;
    }
    
    add_filter('sq_metabox_general_settings', 'my_cpt_sq_metabox_general_settings');
    
    // Add post layout settings to CPT
    // Replace superpost with your CPT slug
    function my_cpt_sq_metabox_post_layout($post_types) {
    
        $post_types[] = 'superpost';
        $post_types[] = 'superpost2';
        return $post_types;
    
    }
    add_filter('sq_metabox_post_layout', 'my_cpt_sq_metabox_post_layout');
    
    Replace superpost with your custom post type... also if you want to add to multiple cpt replace superpost2 with the your cpt slug. Cheers R.
    in reply to: How to hide footer in mobile view? #133236
     Radu
    Moderator
    Hi, You can hide footer on mobile using this css
    @media (max-width:680px) {
    
    div#footer {
        display: none !important;
    }
    }
    
    The css will be added to wp-admin -> theme options -> general settings -> quick css Cheers R.
     Radu
    Moderator

    Hi,

    the single quick solution that we have to provide it’s this :

    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() );
            }
        }
    }
    
    
    

    Using this, the member when it signup will be locked in the membership page and it should choose a package to can use the website

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

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

    If you want anything else adapted for your needs start a collaboration with a developer.

    Ceeers
    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 Quick View #133228
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings

    COPY CODE
    
    li.shop-drop .quick-view.hover-tip {
        display: none !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,

    Using this css

    COPY CODE
    
    @media (min-width: 1440px) {
    .container {
        max-width: 1440px !important;
    }
    
    }
    

    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Changing the BuddyPress header #133213
     Radu
    Moderator

    For me the link it works,

    I will attach a photo

    COPY CODE
    
    function add_custom_field()
     {
         bp_member_profile_data( 'field=Heading' );
     }
    
    add_action( 'bp_directory_members_item', 'add_custom_field');
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Changing the BuddyPress header #133193
     Radu
    Moderator

    Hi,

    You should have low-medium PHP/HTML skills to can do that

    Here it’s a typical example

    COPY CODE
    
    <?php
    
    bp_member_profile_data( 'field=name' );
    bp_member_profile_data( 'field=city' );
    bp_member_profile_data( 'field=email' );
    bp_member_profile_data( 'field=city' );
    
    ?>
    

    Similar :

    https://archived.seventhqueen.com/forums/topic/how-to-show-extended-profile-field-value-programatically
    https://archived.seventhqueen.com/forums/topic/members-carousel-discovery-page

    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: make next page icons darker #133045
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    nav.woocommerce-pagination ul.page-numbers li a {background: red !important;}
    
    nav.woocommerce-pagination ul.page-numbers li span.current {
        background-color: green !important;
    }
    

    But replace red and green with your desired colors

    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: Change breadcrumbs to a custom link site wide. #133010
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    .breadcrumb-extra .kleo_framework.breadcrumb span {display: none !important;}
    .breadcrumb-extra .kleo_framework.breadcrumb span:first-child {display:block !important;}
    .breadcrumb-extra .kleo_framework.breadcrumb span:first-child:before {content:"< - ";}
    

    Let me know if it's ok.

    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: CSS for Accordion Text #133006
     Radu
    Moderator

    Hi,

    With these declarations you can change font size and font weight

    COPY CODE
    
    .panel-heading a.accordion-toggle {
    font-size:10px;
    font-weight:bold;
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Different Mobile Logo #132885
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    
    @media screen and (max-width: 480px) {
    .logo img { display:none; }
    strong.logo a {
        background-image: url('http://www.solidboss.com/wp-content/uploads/2016/08/8.16.png');
        min-height: 99px;
        background-image:red !important;
        background-repear:no-repeat;
        }
     
    }
    

    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: Change breadcrumbs to a custom link site wide. #132879
     Radu
    Moderator

    Hi,

    Try with this css selector

    COPY CODE
    
    .kleo_framework.breadcrumb span.sep:before {
        content: "<< ";
        font-size: 13px;
    }
    

    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: Show current user’s name in main menu #132866
     Radu
    Moderator
    Not marked as solution
    in reply to: Colours on kleo grid posts. #132843
     Radu
    Moderator

    Hi,

    Add this css to Wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .masonry-listing .format-standard .post-title { border-left: 3px solid #8a52ad !important; }
    

    Replace #8a52ad with your desired color code

    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: Tab content overlaps with sidebar #132830
     Radu
    Moderator

    For removing … use this css

    COPY CODE
    
    #buddypress div.profile .dl-horizontal dt {
    
        text-overflow: initial !important;
        word-wrap: normal !important;
        white-space: 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
     Radu
    Moderator

    Hi,

    1. You have modified theme files in child and it seems that you have modified the full-width template to have a sidebar, check there.

    I cannot offer continuous support for kind of things, full width should remain full width…

    2. Using this.

    COPY CODE
    
    @media only screen and (max-width: 767px) {
    #header {
        background-image:url("http://bildafamilj.nu/wp-content/uploads/2016/05/www.bildafamilj.nu-dejting1000pxBsmalare.jpg");
        
    }
    
    }
    

    3. Using this css

    COPY CODE
    
    .form-footer {
        background: red !important;
    }
    

    4. Wp-admin -> theme options -> Miscellaneous -> Admin toolbar -> OFF

    5. Yes …. or not as you wish or need

    6. According to the question yes, if the application doesn’t require additional coding for this yes.

    7. I don’t know what exactly means, check the documentation : https://developer.paypal.com/docs/classic/lifecycle/goingLive/

    8.yes

    9.Personally, I haven’t used that gateway I don’t know what to recommend you , check their documentation, from what I see it’s a PayPal company : http://www.paidmembershipspro.com/gateway/braintree/

    10. Check the pmppro docs and pp docs…

    11. You can create a new page named thank you page to redirect users after they pay.

    12. I don;t know anything about that, but i don;t think it’s required if you have setup the pmpro…

    13. I don’t know, it’s different service named setup or configuring.

    Have a nice day, from now @Laura will take care of your ticket.

    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 Message Button Color #132742
     Radu
    Moderator

    Hi,

    use this css

    COPY CODE
    
    .block-member a {
        border-radius: 0 !important;
    }
    
    div#send-private-message a {
        background: red !important;
    }
    
    div#send-private-message {
        background-color: transparent;
    }
    
    .block-member a {
        background: yellow !important;
    }
    

    Replace yellow and red with your desired color, with this it looks better, in past the private message was two nuances of color now it;s ok

    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: CSS for Accordion Text #132716
     Radu
    Moderator

    Hi,

    Try those selectors

    COPY CODE
    
    .panel-heading {
        background-color: yellow !important;
        font-family:monospace;
    }
    .panel-heading a.accordion-toggle {
        color: red !important;
        font-family: monospace;
    }
    
    .panel .panel-collapse { background-color:green; color:#fff;font-family:monospace;}
    

    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: logout issue #132715
     Radu
    Moderator

    hi,

    Using this method : https://wordpress.org/support/topic/wp-logout-page-redirect-to-homepage

    You can have a logout redirect…

    just paste this code in wp-content/themes/buddyapp-child/functions.php

    COPY CODE
    
    add_action('wp_logout','go_home');
    function go_home(){
      wp_redirect( home_url() );
      exit();
    }
    

    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: Profile side bar #132714
     Radu
    Moderator

    Hi,

    Using the next function you can manipulate the titles of the components that appear in the bp user menu.

    COPY CODE
    
    
    function rename_bp_tabs() {
        global $bp;
        $bp->bp_nav['notifications']['name'] = 'RE-Notifications';
        $bp->bp_nav['messages']['name'] = 'RE-Messages';
        $bp->bp_nav['groups']['name'] = 'RE-GRoups';
    }
    add_action( 'bp_init', 'rename_bp_tabs');
    
    

    If you want to rename and another component just add after

    $bp->bp_nav[‘groups’][‘name’] = ‘RE-GRoups’;

    From example :
    $bp->bp_nav[‘profile’][‘name’] = ‘My profile’;

    the function will be added to 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. Ticket solution
    in reply to: media group #132668
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    div#item-header-content span.label.radius.pmpro_label { display:none !important; }
    
    

    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: media group #132667
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    div#item-header-content span.label.radius.pmpro_label { display:none !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
Viewing 40 posts - 1,521 through 1,560 (of 2,990 total)

Log in with your credentials

Forgot your details?