Forum Replies Created

Viewing 40 posts - 2,161 through 2,200 (of 2,655 total)
  • Author
  • in reply to: Sweetdate WP Feature Requests #1426
     SQadmin
    Keymaster

    Hi, You can already do that by adding this to sweetdate-child/functions.php:

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_actions');
    
    function kleo_my_actions() 
    {
        add_filter('kleo_modal_login_redirect','my_custom_redirect');
    }
    
    function my_custom_redirect() {
        return $_SERVER['REQUEST_URI'];
    }
    
    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: Membsership plans suggestions #1423
     SQadmin
    Keymaster

    Hi,
    Membership will allow you to create your own packages that will also include subscriptions. It will be possible to restrict different pages and acces to specific site areas but not different set of user profiles.

    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: post carousel #1422
     SQadmin
    Keymaster

    To show all posts: [kleo_posts_carousel post_formats="all" ]

    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: 'Log In / Sign Up' buttons #1421
     SQadmin
    Keymaster

    Hi,
    Enable registration to the site by going to Settings -> General in WordPress Admin

    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 add more tabs next to the Profile image #1418
     SQadmin
    Keymaster

    Hi,
    You need to activate the sweetdate-child. Is it active? If you can’t figure it out email us acces to website and ftp: themesupport@seventhqueen.com

    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 add more tabs next to the Profile image #1415
     SQadmin
    Keymaster

    Hi, It is fine now. You have renamed you “Base” group to “About” so you had to change the code to show that specific tab. I added the code in sweetdate-child at the bottom of the file.

    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: How to add more tabs next to the Profile image #1413
     SQadmin
    Keymaster

    Hi,
    Give us an email at themesupport@seventhqueen.com with temporary access to FTP to see what’s going on

    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 add more tabs next to the Profile image #1412
     SQadmin
    Keymaster

    Hi,
    You need to have the child theme activated. Not two themes active.
    I have posted for you the code above to rename the tab but I’ll copy/paste it again:

    COPY CODE
    
    <?php
    add_action('after_setup_theme','kleo_my_actions');
    
    function kleo_my_actions() 
    {
        global $bp_tabs;
        $bp_tabs['rtmedia'] = array(
            'type' => 'rt_media',
            'name' => __('My work', 'kleo_framework'),
            'class' => 'mySlider'
        );
        $bp_tabs['social'] = array(
            'type' => 'regular',
            'name' => __('Social', 'kleo_framework'),
            'class' => 'regulartab'
        );
        
    }
    ?>
    

    Delete whatever you have in sweetdate-child/functions.php and add the above code. You can then add the login redirect code

    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: BP-Album #1404
     SQadmin
    Keymaster

    Hmm. also replace the contents of this file bp_custom/class-bp-tabs.php in the parent theme with this one:
    https://archived.seventhqueen.com/files/class-bp-tabs.txt

    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: disable reg popup #1402
     SQadmin
    Keymaster

    Hi,
    You need to edit the header.php file at line 136:
    change the href=”#” to href=”/register” or what link you want and remove the data-reveal-id=”register_panel”

    PS: Changes needs to be done in the sweetdate-child. So copy the header.php there and edit

    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: BP-Album #1400
     SQadmin
    Keymaster

    Hi,
    So you want to use both of the plugins and just display bp-media.
    Make sure you are adding the code like this: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image

    because you need that add_action line, that function and the global $bp_tabs inside the function
    You need to have this inside the function:

    COPY CODE
    
    global $bp_tabs;
    $bp_tabs['bp-album'] = array(
    'type' => 'bp_album',
    'name' => __('Photos', 'kleo_framework'),
    'class' => 'mySlider'
    );
    $bp_tabs['rtmedia'] = array();
    
    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: post carousel #1399
     SQadmin
    Keymaster

    Hi,
    Post carousel is displayed using this shortcode:
    [kleo_posts_carousel limit="6" ]
    You can restrict post formats by adding it like this:
    [kleo_posts_carousel post_formats="image,gallery,video" limit="6" ]

    To have image gallery select the Gallery format for the desired post:
    http://d.pr/i/7P9r
    Then add Images to the slider:
    http://d.pr/i/7P9r

    For the video, select it as Video format and add the video link to “Video embed”

    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 View Nav Bar Question #1398
     SQadmin
    Keymaster

    Hi,
    The topbar script is minified and it is in foundation.min.js
    You can try there your found solutions and maybe let is know if you came with something.

    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: Public message not working #1397
     SQadmin
    Keymaster

    Hi,
    Unfortunately I don’t think there is an easy way on doing that. I will let you know if I find anything
    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: How to update Theme? #1390
     SQadmin
    Keymaster

    Yes you can.

    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 update Theme? #1388
     SQadmin
    Keymaster

    Hi,
    Check out the documentation:
    https://archived.seventhqueen.com/documentation/sweetdatewp/#!/theme_options
    If you have modified files from the parent theme then you can copy those particular files to sweetdate-child theme in the same exact folder structure.
    If you copy all the files there you should be fine.
    Always is advisable to make a backup of your files.

    We have included a starting child theme in the package downloaded from TF -> WordPress folder.

    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 update Theme? #1383
     SQadmin
    Keymaster

    Hi,
    To update the theme you can do it automatically by entering your username and API key in Sweetdate -> Miscellaneous and the update should appear in your Admin at Updates.
    Another way is to re-download the theme from TF and replace the theme files.

    If you haven’t made any changes to main theme files then you should be fine. Always use the sweetdate-child theme as your active theme.

    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: bp-chat beta 3 #1382
     SQadmin
    Keymaster

    For sure that is a plugin problem and the error comes from: wp-content\plugins\bp-chat\bp-chat\bp-chat-business-functions.php

    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: Homepage Background Image #1381
     SQadmin
    Keymaster

    Hi,
    You need to use the Front page template for the Home page in order for the image to appear. If you still can’t figure it out please send us an email at themesupport@seventhqueen.com with access details.

    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 View Nav Bar Question #1379
     SQadmin
    Keymaster

    Hi Tim,
    This is how Foundation works and we don’t understand why Zurb decided to make all parent links inactive on mobile.
    Even this isn’t really a bug we’ll look into this and we’ll resolve it in a way or another.

    The normal behavior:
    http://foundation.zurb.com/page-templates4/store.html

    Best regards,
    Robert

    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: Main menu and Love Heart #1375
     SQadmin
    Keymaster

    Hi,
    I have created a topic on replacing hearts from the website:
    https://archived.seventhqueen.com/forums/topic/removereplace-the-love-hearts-in-site

    Let us know if you need anything

    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: Add Buddypress Media To Member Header #1373
     SQadmin
    Keymaster

    Since v.1.5 it is added by default if you are using rtMedia plugin

    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: logo resize #1372
     SQadmin
    Keymaster

    Hi,
    For .ico file try: http://tools.dynamicdrive.com/favicon/
    The rest of favicons are .png and you can export them from any decent image editor.
    To resize the logo you can try with Adobe Photoshop or Gimp (free)
    The retina logo is the same as the nomal logo just that it needs to be double in size.

    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: logo resize #1371
     SQadmin
    Keymaster

    Moved to: https://archived.seventhqueen.com/forums/topic/logo-resize

    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: search #1370
     SQadmin
    Keymaster

    Hi,
    That is the way it works like now. If you define a Selectbox field named Interest with values: sports,cars, etc then in the form if you choose sports in the Interests field then it will return all users that have selected that in their profile

    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: limit groups shown per page #1369
     SQadmin
    Keymaster

    You have to edit a file template. Copy groups/groups-loop.php to the same location in sweetdate-child theme
    Edit it there and change line 16 like this:

    Notice the added per_page=6

    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 matching compatibility optional #1368
     SQadmin
    Keymaster

    Hi,
    That code snippet needs to be added in the file from wp-content/themes/sweetdate-child/functions.php
    You can edit that file by FTP to your server.
    You have to only add:
    remove_action(‘kleo_bp_before_profile_name’, ‘kleo_bp_compatibility_match’);
    in the existing kleo_remove_actions() function

    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: Mixed frontpage form problem #1367
     SQadmin
    Keymaster

    Great you have solved that out 😉
    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: Hide age on Members Directory #1366
     SQadmin
    Keymaster

    Hi,
    To hide the age you should have something like this in sweetdate-child/functions.php:

    COPY CODE
    
    add_action('after_setup_theme','kleo_remove_actions');
    /**
     * Override existing actions
     * Use these functions to replace/remove existing actions
     * @since Sweetdate 1.3
    */ 
    function kleo_remove_actions() 
    {
        add_filter('kleo_bp_meta_fields','my_remove_age');
        
       /* For example uncomment the line bellow to disable matching on member profile */
        //remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');      
    }
    
    function my_remove_age($output) {
        //remove the Age form array
        unset($output['age']);
        
        return $output;
    }
    
    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: hide default profile "about me" #1364
     SQadmin
    Keymaster

    Hi,
    The Base field being already defined by default you need to remove it. Here you just replaced it with the exact values. To remove it:
    $bp_tabs[‘base’] = array();

    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: BP-Album management #1363
     SQadmin
    Keymaster

    Hi,
    We disabled this by default,
    Please add this in your sweetdate-child/functions.php to enable the menu:

    COPY CODE
    
    add_action( 'admin_menu', 'bp_album_add_admin_menu' );
    

    It will appear in the WP main menu

    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: Public message not working #1362
     SQadmin
    Keymaster

    Hi,
    If it mentioned you(public message) then you should look under you profile, Mentions. See if it appears there

    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: Recent Posts Widget with Post Image #1361
     SQadmin
    Keymaster

    They should be the same since they have the same class and everything.
    There is an site-wide option to switch that in Sweetdate -> Styling -> Use squared avatar images

    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: Social buttons don't work on iphone or ipad #1356
     SQadmin
    Keymaster

    Hi Nicholaus, I will look into this and I’ll come back later with an answer.

    Regards,
    Robert

    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: Homepage Background Image 2 #1355
     SQadmin
    Keymaster

    Hi wisinyyandel7, at this moment, our theme has no slideshow option for background images but we plan to integrate Revolution Slider later on this month.

    Regards,
    Robert

    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: Testimonials #1346
     SQadmin
    Keymaster

    Hi,
    You should see the menu below Pages

    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: Mixed frontpage form problem #1345
     SQadmin
    Keymaster

    Hi.
    Yes that should be the reason why you see the search page. W3 cache has an option not to cache pages for logged in users and when you log out it probably serves the page from cache. You have to configure the plugin not to cache the front page

    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: Auto update #1344
     SQadmin
    Keymaster

    Hi,
    Child theme doesn’t get updated since there resides your custom code.

    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: logo resize #1340
     SQadmin
    Keymaster

    Hi,
    Logo react like any image on the site, it’s fill up all the column space. You can reset this by putting exact dimmensions of your logo in Sweetdate/Styling options/Quick css box:

    COPY CODE
    
    #logo img {  width: 80px; height: 50px; }
    

    ps: We still recommend the default size 294×108 like this example: http://d.pr/i/gDul

    Regards,
    Robert

    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 "My photos" Tab Color #1323
     SQadmin
    Keymaster

    Hi,
    You need to add this to Sweetdate -> Styling options -> Quick css

    COPY CODE
    
    .sliderEvent .label.alert { background-color: #F00056; }
    

    Cheers

    PS. Change the hex with your desired color

    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 - 2,161 through 2,200 (of 2,655 total)

Log in with your credentials

Forgot your details?