Forum Replies Created

Viewing 40 posts - 241 through 280 (of 2,655 total)
  • Author
  • in reply to: Import fails #7561
     SQadmin
    Keymaster

    That is strange. Maybe they are already imported? Give us a link to your site with access to take a look. Mark the reply as private

    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: Revolution Slider #7560
     SQadmin
    Keymaster

    That looks good. Maybe you have altered something in header.php because it should work with those settings

    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 Horizontal Form into Sidebar #7559
     SQadmin
    Keymaster

    You can only add the vertical(homepage) search form as widget since the horizontal one doesn’t look that good 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: Slider Trouble & A Bunch of Setup Questions #7558
     SQadmin
    Keymaster

    Hi, We will respond your questions today. There is no need to bump the topic. Like it says in site header, in weekends the response time is slower.

    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: More search options #7557
     SQadmin
    Keymaster

    Hi, From what I understand that implies some custom work since the search results need to integrate with your plugin. The file that handles the search forms is: wp-content/themes/sweetdate/custom_buddypress/kleo-bp-search.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: Home Page Video #7556
     SQadmin
    Keymaster

    Hi, You need to add this javascript code to footer.php just before the wp_footer line:

    COPY CODE
    
    jQuery(document).ready(function() {
    jQuery("a.play").each(function (e) {
    	var videoId = jQuery(this).attr('data-videoid');
    	//e.preventDefault();
    	jQuery(".videoLoad").hide();
    	var videotoload = jQuery(this).attr("href"),
    		viewportHeight = (jQuery(window).height()) - 533,
    		scrolltovideo = jQuery("#markerPoint-"+videoId).offset().top;
    	if (viewportHeight > 100) {
    		scrolltovideo = scrolltovideo - (viewportHeight / 2);
    	} else {
    		scrolltovideo = scrolltovideo - 55;
    	}
    
    	jQuery('.play').show();
    	jQuery(this).addClass('disabled');
    
    	jQuery("html, body").animate({
    		scrollTop: scrolltovideo
    	}, 500, function () {
    		jQuery("#"+videoId+" iframe").attr('src', videotoload);
    		jQuery("#"+videoId+" .videoLoad").fadeIn('slow');
    		jQuery("#"+videoId).slideDown(900);
    	});
    });
    });
    
    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: Custom Email Subject #7554
     SQadmin
    Keymaster

    Have you tried this plugin? http://wordpress.org/plugins/welcome-pack/
    Also I think this is the buddypress function that has a filter to change from functions.php

    COPY CODE
    
    function bp_get_email_subject( $args = array() ) {
    
    	$r = wp_parse_args( $args, array(
    		'before'  => '[',
    		'after'   => ']',
    		'default' => __( 'Community', 'buddypress' ),
    		'text'    => ''
    	) );
    
    	$subject = $r['before'] . wp_specialchars_decode( bp_get_option( 'blogname', $r['default'] ), ENT_QUOTES ) . $r['after'] . ' ' . $r['text'];
    
    	return apply_filters( 'bp_get_email_subject', $subject, $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 directory page not showing about us information #7528
     SQadmin
    Keymaster

    Hi, Try removing the space from ‘ kleo_my_member_data’

    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 pmpro restriction to own profile #7525
     SQadmin
    Keymaster

    Hi, to create a topic in Sweetdate go at the bottom of the page here:https://archived.seventhqueen.com/forums/forum/sweetdate-wordpress

    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: budddypress sidebar #7524
     SQadmin
    Keymaster

    Hi, That is the code responsible with buddypress sidebar. You can check if is a profile page with this function: bp_is_member()

    get_sidebar(‘buddypress’) looks for sidebar-buddypress.php file in the theme so you can create your own template

    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 directory page not showing about us information #7520
     SQadmin
    Keymaster

    Unfortunately you haven’t added the whole code probably. what did you added?

    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: What the shortcode Login? #7519
     SQadmin
    Keymaster

    Hi, All the content you will find by editing the Home page. Video button is generated by the video button shortcode. Edit it the page the way you need. There is the visual shortcodes button if you need to generate shortcodes

    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: URL Slugs #7499
     SQadmin
    Keymaster

    Those strings appear in the breadcrumb or in what section?

    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 pmpro restriction to own profile #7498
     SQadmin
    Keymaster

    You can make use of this code to restrict access to your profile

    COPY CODE
    
    /* Redirect user to levels page until he subscribes for a membership */
    
    add_action( 'template_redirect', 'my_membersip_restrict', 1 );
    
    function my_membersip_restrict() {
    	
        if ( bp_is_my_profile() && !pmpro_hasMembershipLevel() ) {
    	
    			wp_redirect( pmpro_url() );exit;
    	}
    }
    

    For custom work please try hiring a developer.

    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: Registration and subscription in the same time #7497
     SQadmin
    Keymaster

    Hi, The code bellow added to sweetdate-child/functions.php will help you. You just leave the registration process as it is and after the user registers he won’t he able to do anything until he subscribes for a membership.

    COPY CODE
    
    /* Redirect user to levels page until he subscribes for a membership */
    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() );
    		}
        }
    }
    
    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: i imported demo content and another bug popup #7496
     SQadmin
    Keymaster

    Hi,
    Please talk with your hosting company to give your account write permissions to wp-content/plugins

    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: [pmpro_levels] shortcode #7495
     SQadmin
    Keymaster

    Indeed it doesn’t show up. They probably restrict them in other pages. See their page on customizing the pages and adding templates: http://www.paidmembershipspro.com/documentation/advanced-techniques/templates/

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

    Hello,
    Please talk with your hosting company to give you write permissions to the following location: /home3/celrex/public_html/test//wp-content/plugins

    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: Buy membership before sign up #7489
     SQadmin
    Keymaster

    My answer above will change the link for the registration button to the levels page. The thing is you have to be registered to choose a membership.
    You can redirect users of their first login to the membership levels page with the codes bellow added to sweetdate-child/functions.php

    COPY CODE
    
    //Whenever a new user is created, this function will add a custom field with value 1.
    function function_new_user($user_id) { 
       add_user_meta( $user_id, '_new_user', '1' );
    }
    add_action( 'user_register', 'function_new_user');
    
    //The next function will check if it's the first login and redirect the user.
    function function_check_login_redirect($user_login, $user) {
       $logincontrol = get_user_meta($user->ID, '_new_user', 'TRUE');
       if ( $logincontrol ) {
          //set the user to old
          update_user_meta( $user->ID, '_new_user', '0' );
    
          //Do the redirects or whatever you need to do for the first login
          wp_redirect( pmpro_url("levels"), 302 ); exit;
       }
    }
    add_action('wp_login', 'function_check_login_redirect', 10, 2);
    
    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: modified home-search-form over revolution slider #7487
     SQadmin
    Keymaster

    From Sweetdate – Homepage, where you set the slider, enable the Transparent header and then add this css to Sweetdate – Styling options – Quick css:

    COPY CODE
    
    .revslider-head .just-after-header {
        z-index: 100;
    }
    

    You need to style it probably, make it appear lower on the page, etc.

    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: improvements of the messaging feature #7486
     SQadmin
    Keymaster

    Open sweetdate/header.php and search for
    If you don’t find it add it just before the

    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 Users and Groups #7485
     SQadmin
    Keymaster

    Hi, If you are talking about the groups, you can disallow users from creating groups under Settings – Buddypress – Settings. You can also try adding a Captcha plugin for registrations

    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: Register on Landing page but no search page on member site #7484
     SQadmin
    Keymaster

    I don’t know where do you have the code from but there is no render_registration_form
    You need to change it to: render_user_register
    Also that can be disabled from Sweetdate – Homepage

    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 install Sweet Date Landing Page #7483
     SQadmin
    Keymaster

    All sales are made trough Themeforest so as much as we want that it is not possible.

    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: Login with facebook does not redirect to profile page #7482
     SQadmin
    Keymaster

    Hi, If you want to redirect to their profile then you need to add the following line
    File is: wp-content/themes/sweetdate/framework/functions/facebook_login.php

    COPY CODE
    
    $redirect = bp_core_get_user_domain( $user_ID ).'profile/';
    

    after

    COPY CODE
    
    $logintype = 'login';
    

    You will find two occurrences.

    Then Search for:
    window.location.reload();
    replace with:
    window.location = user.url;

    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: Progression Bar on Other Pages #7481
     SQadmin
    Keymaster

    No, that doesn’t have to do with the 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: Add log in signup button to menu #7479
     SQadmin
    Keymaster

    Hi, You need to edit the code and add to each “li” tag this extra class: show-for-small
    So the class attribute will be like this for example: class=”menu-item show-for-small”

    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: Group send Invites #7462
     SQadmin
    Keymaster

    We re-tested and works on our environments. Try disabling some plugins you have or enable the default Buddypress theme to do the test

    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: improvements of the messaging feature #7460
     SQadmin
    Keymaster

    Make sure you have the latest v.2.2 theme installed. We will release v2.3 soon also.
    You should check for javascript errors in your browser console

    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 directory page not showing about us information #7455
     SQadmin
    Keymaster

    You probably haven’t copied the whole code. that functions should be add_action() and not dd_action()

    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 install Sweet Date Landing Page #7445
     SQadmin
    Keymaster

    Try installing a captcha plugin for registration

    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 install Sweet Date Landing Page #7444
     SQadmin
    Keymaster

    1 regular license can be used in only one site. Please respect our work

    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: Premium Membership level #7443
     SQadmin
    Keymaster

    You can already choose to restrict sending private messages for certain levels but what you want involves many changes. By default you can’t send messages as guests, You need to develop this functionality.

    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: Pricing table like the demo… #7442
     SQadmin
    Keymaster

    Hi, That is the levels page of the Paid memberships Pro plugin. Read the included documentation about it.
    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: Reorder how PMPro levels display #7441
     SQadmin
    Keymaster

    We thought of that when we released the integration. set the order from Sweetdate – Memberships

    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: [pmpro_levels] shortcode #7440
     SQadmin
    Keymaster

    Hi
    Sure the shortcode should work in other pages too but it displays the same thing

    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 members with no membership #7439
     SQadmin
    Keymaster

    that code would show just the members from those specific levels.
    Once they login they will appear on site

    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 Members Without Avatars #7438
     SQadmin
    Keymaster

    Thanks @IamJAX for sharing

    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 navigation colour #7415
     SQadmin
    Keymaster

    Right now you can’t change it from admin, we will add this soon. As quick fix you can add the following line in sweetadmin/styling options/quick css box:

    COPY CODE
    
    .buddypress .pagination span.current { background-color: #ffcc66; }
    

    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: Translation contribution #7405
     SQadmin
    Keymaster

    Hi,
    If you have translated all the strings from the Sweetdate theme you need to translate also Buddypress strings. Use Codestyling localization plugin for an easy translation process. After you translate the strings from Buddypress click the button to generate the .mo file

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

Log in with your credentials

Forgot your details?