Forum Replies Created
-
Author
-
SQadminKeymaster
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 solutionSQadminKeymasterThat 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 solutionSQadminKeymasterYou 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterHi, You need to add this javascript code to footer.php just before the wp_footer line:
COPY CODEjQuery(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 solutionSQadminKeymasterHave 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.phpCOPY CODEfunction 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 solutionDecember 1, 2013 at 01:50 in reply to: Members directory page not showing about us information #7528SQadminKeymasterHi, 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterHi, 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 solutionDecember 1, 2013 at 01:23 in reply to: Members directory page not showing about us information #7520SQadminKeymasterUnfortunately 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterThose 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 solutionSQadminKeymasterYou 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterHi,
Please talk with your hosting company to give your account write permissions to wp-content/pluginsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIndeed 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 solutionNovember 30, 2013 at 13:58 in reply to: after installing bbpress theme giviing warnings please help. #7490SQadminKeymasterHello,
Please talk with your hosting company to give you write permissions to the following location: /home3/celrex/public_html/test//wp-content/pluginsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterMy 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.phpCOPY 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 solutionSQadminKeymasterFrom 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 solutionSQadminKeymasterOpen sweetdate/header.php and search for
If you don’t find it add it just before theHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, 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 solutionNovember 30, 2013 at 13:07 in reply to: Register on Landing page but no search page on member site #7484SQadminKeymasterI 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 – HomepageHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterAll 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 solutionSQadminKeymasterHi, 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.phpCOPY 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 solutionSQadminKeymasterNo, 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 solutionSQadminKeymasterHi, 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 solutionSQadminKeymasterWe 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 solutionSQadminKeymasterMake 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 consoleHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 29, 2013 at 11:58 in reply to: Members directory page not showing about us information #7455SQadminKeymasterYou 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 solutionSQadminKeymasterTry 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 solutionSQadminKeymaster1 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 solutionSQadminKeymasterYou 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
AbeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, That is the levels page of the Paid memberships Pro plugin. Read the included documentation about it.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe 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 solutionSQadminKeymasterHi
Sure the shortcode should work in other pages too but it displays the same thingHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterthat code would show just the members from those specific levels.
Once they login they will appear on siteHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThanks @IamJAX for sharing
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterRight 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,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
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 fileHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts