Forum Replies Created

Viewing 40 posts - 121 through 160 (of 2,655 total)
  • Author
  • in reply to: Reponsive > iPad Portrait – Top Menu #9361
     SQadmin
    Keymaster

    Hi @daniellemarie, thank you very much for trying to help. I have a different approach to it which might help.
    I think more simple is to modify from 940px to 767px in ../assets/styles/responsive.css the folowing lines: 205, 278, 372(or 369) and add one line of code, it will become line 281 like this example: http://d.pr/i/C00U

    COPY CODE
    
    .top-bar { background: transparent !important; }
    

    ps: I also changed on one of our demo: http://seventhqueen.com/demo/sweetdatewp/

    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: Issues making rtMedia unusable #9235
     SQadmin
    Keymaster

    Hi guys, yes seems to be some display issues with latest rtMedia plugin. I’ll work to resolve this, thank you for your waiting time.

    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: Menu on tablets with responsive design #9228
     SQadmin
    Keymaster

    Hi, this is how Foundation works but we can change this behavior to lower resolution – 767px. To achieve this required some changes to assets/css/responsive.css. Just let us know.

    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: Reponsive > iPad Portrait – Top Menu #9224
     SQadmin
    Keymaster

    Hi, this is by default how Foundation works so if you want to achieve this you need to modify some template files. I can help if you tell me how is best for you:
    – to move this behavior to lower resolution (767px or 480px);
    – to remove this behavior entirely (not recommended).

    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: Hello #9104
     SQadmin
    Keymaster

    Hi, can you resend the link? The video is mark as private.
    Yes, you can remove the above code.

    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: Safari and Member Carousel #9068
     SQadmin
    Keymaster

    Hi again, please add the following lines in admin – sweetdate/styling options/quick css box:

    COPY CODE
    
    .carousel-profiles li a { display: inline-block; }
    #main .caroufredsel_wrapper,
    #main .carousel-profiles .profile-thumbs { min-height: 118px; }
    

    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: Page reset to original template #8976
     SQadmin
    Keymaster

    Hi, I attached the entire code for “About us” page: http://d.pr/n/e2qG

    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: Safari and Member Carousel #8932
     SQadmin
    Keymaster

    Hi Dennis, yes seems to be some display issues in safari, we’ll back soon with a fix for this, thank you for your waiting time.

    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: remove footer widget area #8927
     SQadmin
    Keymaster

    Hi, you can remove widgets from admin – appearance/widgets (Footer widget 1, 2, 3, 4). To hide HR tag between this two areas simply comment line 97 in ../wp-content/themes/sweetdate/footer.php like this http://d.pr/i/i8kJ

    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: footer #8912
     SQadmin
    Keymaster

    Hi, you need to modify a template file to achieve that. Go to ../wp-content/themes/sweetdate/footer.php around lines 62-86 http://d.pr/i/QALH, basically you need to change the “three columns”class with four, two or whatever you like.

    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: Hello #8909
     SQadmin
    Keymaster

    Hi again, because it involves to changing some core files I’ll provide you a temporary fix only. We also like this plugin and we’ll made full compatible with our next update in January.

    1). Comment entire block of code (lines 63-70) in ../wp-content/plugins/buddypress-activity-privacy/includes/js/bp-activity-privacy.js http://d.pr/i/xGUQ

    2). Add the following lines in admin – sweetdate/styling options/quick css box:

    COPY CODE
    
    #activity-visibility { color: inherit; }
    select#activity-privacy { min-width: 80px; }
    select#activity-privacy:hover { cursor: pointer; }
    
    
    @media only screen and (max-width: 767px) {
    #whats-new-submit #activity-visibility { display: inline-block; float: left; }
    #whats-new-submit button.button,
    #whats-new-submit input[type="submit"].button,
    #whats-new-submit input[type="reset"].button { width: auto; float: right; }
    }
    

    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: Hello #8827
     SQadmin
    Keymaster

    Hi, I installed this plugin and indeed seems to be some display issue with the post button, I’ll look into this and I’ll come with a fix. Thank you for your waiting time.

    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: Social Media Icons #8704
     SQadmin
    Keymaster

    Hi, you need to edit ../wp-content/themes/sweetdate/framework/widgets/widget_about_us.php, between lines 54 and 66.

    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: Mobile version #8651
     SQadmin
    Keymaster

    Hi, can you explain in a little more detail the first question please? Thanks.
    To hide footer(widgets) from mobile version the easiest way is to add the following rule in quick css box:

    COPY CODE
    
    @media screen and (max-width: 480px) {
    	.widgets-container {
    		display: none;
    	}
    }
    

    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: Hide widget on mobile devices #8588
     SQadmin
    Keymaster

    Hi, the easiest way is to take this example by putting the following lines in admin – sweetdate/styling options/quick css box:

    COPY CODE
    
    @media screen and (max-width: 480px) {
    /* Your widget classes that you do not want displayed */
    .widget_kleo_recent_posts { display: none; }
    }
    

    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: Buddypress 1.9 and WordPress 3.8 #8559
     SQadmin
    Keymaster

    Hi guys, I came up with a fix for admin bar since wp3.8 has a different height for this. So, the easiest way is to add some css lines in quick css box:

    COPY CODE
    
    /* Admin bar fix for wp3.8 */
    @media screen and (max-width: 600px) {
    	#wpadminbar {
    		position: fixed;
    	}
    }
    

    After that you also need to add one line in ../wp-includes/admin-bar.php at line 779: http://d.pr/i/vxJP – code block here: http://d.pr/n/1ZsZ

    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: Buddypress 1.9 and WordPress 3.8 #8452
     SQadmin
    Keymaster

    Hi Nicholaus, whitespace on the top appears only when you have admin toolbar activated. I will look at this.

    For BuddyPress 1.9 my coleague Abe will come with an answer soon.

    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 the Create Account Button #8451
     SQadmin
    Keymaster

    Hi, the “alert” class come from Foundation framework by default http://foundation.zurb.com/docs/v/3.2.5/buttons.php, so, the yellow button doesn’t have a defined class but you can replace “alert” with a custom class(“yellow”) and refer to this in quick css box like this:

    COPY CODE
    
    .button.btn-yellow { background-color: #ff9933; border: 1px solid #fda44a; }
    .button.btn-yellow:hover,
    .button.btn-yellow:focus { background-color: #fda44a; border: 1px solid #fda44a; }
    

    Button example: http://d.pr/n/yq2G , http://d.pr/i/Sd6N

    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: About Us widget Icon #8436
     SQadmin
    Keymaster

    Hi, you can refer to this topic: https://archived.seventhqueen.com/forums/topic/about-us-widget-icon-heart

    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 change upload icon #8433
     SQadmin
    Keymaster

    Hi, I attached rt-template-functions.php file for comparison: http://d.pr/f/TZIU

    To hide filename under the picture simply add in quick css this:

    COPY CODE
    
    .rtmedia-list-media .rtmedia-item-title { display: none; }
    

    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: Groups going bad #8387
     SQadmin
    Keymaster

    Hi, rule above should work just fine. Try to add “!importnat” to that rule.

    Live edit of your page: http://d.pr/i/tC2A

    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: How to change upload icon #8385
     SQadmin
    Keymaster

    Hi, you need to edit file templates to achieve this:

    1). Add the following lines in admin sweetdate/styling options/quick css box http://d.pr/n/UTi9

    2). Replace line 1132 in ../wp-content/plugins/buddypress-media/app/main/controllers/template/rt-template-functions.php with this http://d.pr/n/wTkZ
    3). Replace line 1408 and 1411 in ../wp-content/plugins/buddypress-media/app/main/controllers/template/rt-template-functions.php with this http://d.pr/n/6VOh

    ps1: Don’t forget to make a backup of rt-template-functions.php first.
    ps2: I already made the changes on one of our demos: http://seventhqueen.com/demo/sweetdatewp/members/sweetadmin/media/

    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: Members can't register #8377
     SQadmin
    Keymaster

    I see you have done many changes to the site. make sure you don’t have a plug in that makes problems with registration. you create an account and see if it is activated

    You should make sure mails aren’t going to spam or the receiving server doesn’t reject your emails. Try checking server logs or maybe try a plugin that sends mail trough a smtp host.

    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: cropping is not working #8320
     SQadmin
    Keymaster

    Hi, cropping featutre should work just fine, maybe some plugins affect this, try to disabling one by one to see if one of these causes this issue.

    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: Strange text behind menu / Revolutions slider #8145
     SQadmin
    Keymaster

    Hi, you can disable this in admin – sweetdate/homepage/home image.

    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: Dropdown menu for Header Profile Button not showing #8098
     SQadmin
    Keymaster

    Hi, do you have a demo link to look around? Thanks.

    Regards,
    Robert

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

    Hi, try to add the following lines in quick css:

    COPY CODE
    
    .form-wrapper .reg-form-details,
    .form-wrapper label,
    .form-wrapper h4 { font-family: Tahoma, Geneva, sans-serif; color: #000000; }
    
    .form-wrapper .button.front-form-button { background: #ff0461; border: none; }
    .form-wrapper .button.front-form-button:hover { background: #ed0058; border: none; }
    
    .form-wrapper .button.facebook { margin-left: 10px; background: #3b5a9b; border: none; }
    .form-wrapper .button.facebook:hover { background-color: #496bb2; border: none; }
    

    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: Redirect After Login #7925
     SQadmin
    Keymaster

    Hi, You should look at @adam’s code: https://archived.seventhqueen.com/forums/topic/redirect-after-login-2#reply-7053
    and change from the root of the profile to the change avatar page by changing:
    return bp_core_get_user_domain($user->ID );
    with
    return bp_core_get_user_domain($user->ID ).’/profile/change-avatar/’;

    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 Woocommerce Shop Sidebars template #7924
     SQadmin
    Keymaster

    To make the sidebar on the left for all Woocommerce pages, add this PHP code to sweetdate-child/functions.php

    COPY CODE
    
    add_action('wp_head', 'my_woo_sidebar');
    function my_woo_sidebar() {
    	if (is_woocommerce()) {
    		add_action('kleo_before_content', 'woo_sidebar');
    		remove_action('kleo_after_content', 'kleo_sidebar');
    	}
    }
    function woo_sidebar() {
    	get_sidebar('woocommerce');
    }
    

    Regards,
    Abe

    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: 404 Error #7923
     SQadmin
    Keymaster

    Hello guys,
    This sometimes happen with WordPress. You need to go to Settings – Permalinks and re-save the options.

    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: reply to message #7922
     SQadmin
    Keymaster

    Hi, Media in the profile tab next to image will appear automatically from the images that users upload. If you are using default bpAlbum, users will add images from their profile – Album.
    If you are using rtMedia plugin, users will add images from their profile – Media.
    with Rtmedia, users can add media to groups also.

    Cheers

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

    Hi @frien337,
    I see YD Profile Visitor Tracker hasn’t been updated in a while and probably is something wrong in it.

    For adding BuddyPress Profile Progression in other pages, I don’t think is possible because it is taking the id of the displayed user to show the progression.

    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: Editing BuddyPress Group Avatars #7920
     SQadmin
    Keymaster

    Hello, We just checked and both of the options have the avatar creation page.. Maybe you have installed a plugin or made some changes..

    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: Background Slider not visible on mobile devices… #7849
     SQadmin
    Keymaster

    Great. I am glad you worked it out

    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: Editing the text inside the search form #7840
     SQadmin
    Keymaster

    Hi, text from the registration form can be changed by FTP in wp-content/themes/sweetdate/page-parts/home-register-form.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: Multilingual #7838
     SQadmin
    Keymaster

    Hello, That is possible only with a multilingual plugin like WPML

    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: After update I can't login using the LOG IN button #7837
     SQadmin
    Keymaster

    Do you have S2member plugin installed? Because it has a problem with AJAX logins. It is reported on their site as a known issue

    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: Update to Sweetdate… #7835
     SQadmin
    Keymaster

    Please download the theme from themeforest since that is the complete one. We gave that version for some fixes when people didn’t want to wait for the final one.

    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: Users online problem #7834
     SQadmin
    Keymaster

    @ceun We are just trying to help, not being aggressive. I really don’t know what upset you when we are doing our best to help everyone.
    Responses don’t come right away since there is a queue as you imagine.
    haven’t we responded all the times to your questions? It passed weeks and not responded?
    Please revise your behaviour.

    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: Users online problem #7831
     SQadmin
    Keymaster

    @ceun You still aren’t adding them right. I think I was pretty clear with the instructions and also gave an example but you haven’t followed it.

    Correct example:
    [kleo_status_icon type=”Une association” image=”http://reseau-benevolat.org/wp-content/uploads/2013/12/Associations.png” subtitle=”Associations”]

    where “Une association” from type=”Une association” should be the value of your sex profile field set in WP admin – Users – Profile fields. And it should be the exact value if you want to count the users withe those profile value.

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

Log in with your credentials

Forgot your details?