Forum Replies Created
-
Author
-
December 16, 2013 at 09:49 in reply to: Color of the register/search form background on the Home Page. #8314
Abe
KeymasterTo change the color, add the color attribute to the css, like this example
COPY CODE.form-search .button {color: black;}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.December 15, 2013 at 23:42 in reply to: Warning: Failed opening (sweetdate/framework/inc/bp-album/includes/bpa.core.php) #8305Abe
KeymasterGreat 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, try disabling any plugins you are using since we haven’t encountered this before.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, you probably need to talk with your hosting to increase max post size in php. Give them the error
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterThat is just an image, and images can’t link to something unless you put them in an “a” tag
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, please see the video tutorial for initial install and configuration https://archived.seventhqueen.com/video-tutorials
Loading times should be as a normal wordpress + buddypress site
To upload the slider as in our demo see the documentation on importing the slider. After the import just set the slider in homepage from Sweetdate – BuddypressCheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi
Already a topic on this https://archived.seventhqueen.com/forums/topic/revolution-slider-updateHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterJust remove the data-rel=”prettyPhoto[gallery1]” attribute from the anchor tag
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterIf the wrong number is in the “All members tab” is also a buddypress issue
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, To what shortcode are you referring to?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, the code is in wp-content/themes/sweetdate/custom_buddypress/bp-functions.php
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, There is no shortcode for displaying categories, unfortunately
This can be a place to start if you want to build your own shortcode for that: http://wordpress.org/support/topic/building-a-shortcode-to-display-categoriesHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHere is a topic that shows how to hide the name in the profile page: https://archived.seventhqueen.com/forums/topic/hide-fields-in-profile-accordion
For the Tab next to the profile image you need to apply the same conditionals as above in this file: wp-content/themes/sweetdate/custom_buddypress/class-bp-tabs.php where you find bp_get_the_profile_field_name()
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterIt is centered because you added a centered section. Remove the center attribute from the kleo_section shortcode
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi,
For custom work you should hire a programmer from microlancer for example.
Your shortcode should be something like this(added to functions.php), you need to change it if is the caseCOPY CODEfunction kleo_my_posts( $atts, $content = null ) { extract(shortcode_atts(array( 'cat' => 'all', 'limit' => 9, 'post_types' => 'post', 'post_formats' => 'image,gallery,video' ), $atts)); $output = '<div class="row">'; $args = array(); if ((int)$cat != 0) { $args['cat'] = $cat; } if ((int)$limit != 0) { $args['posts_per_page'] = $limit; } $args['post_type'] = explode(',', $post_types); $formats = explode(',',$post_formats); if (is_array($formats) && !in_array('all', $formats)) { foreach($formats as $format) { $terms_query[] = 'post-format-'.$format; } $args['tax_query'] = array( array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => $terms_query ) ); } $latestPosts = new WP_Query(apply_filters('kleo_posts_carousel_args',$args)); while ($latestPosts->have_posts()) : $latestPosts->the_post(); switch (get_post_format()) { case 'video': $video = get_cfield('embed'); if (!empty($video)) { $output .= '<div class="four columns">'; $output .= wp_oembed_get($video); $output .= '<h4>'.get_the_title().'</h4>'; $output .= '<p>'. word_trim(get_the_excerpt(), 15, '...').'</p>'; $output .= '<p><a href="'. get_permalink() .'" class="small button radius secondary"><i class="icon-angle-right"></i> '.__("READ MORE", 'kleo_framework').'</a></p>'; $output .= '</div>'; } break; case 'gallery': $slides = get_cfield('slider'); if (!empty($slides)) { $output .= '<div class="four columns">'; $output .= '<div class="blog-slider">'; foreach($slides as $slide) { if (get_attachment_id_from_url($slide)) { $thumb_array = image_downsize( get_attachment_id_from_url($slide), 'blog_carousel' ); $thumb_path = $thumb_array[0]; } else { $thumb_path = $slide; } $output .= '<div data-thumb="'.$slide.'">'; $output .= '<img src="'.$thumb_path.'" alt="">'; $output .= '</div>'; } $output .= '</div><!--end blog-slider-->'; $output .= '<h4>'.get_the_title().'</h4>'; $output .= '<p>'. word_trim(get_the_excerpt(), 15, '...').'</p>'; $output .= '<p><a href="'. get_permalink() .'" class="small button radius secondary"><i class="icon-angle-right"></i> '.__("READ MORE", 'kleo_framework').'</a></p>'; $output .= '</div>'; } break; case 'image': if (get_post_thumbnail_id()) { $output .= '<div class="four columns">'; $output .= '<div class=""><a class="imagelink" href="'. get_permalink().'">'; $output .= get_the_post_thumbnail(null,'blog_carousel'); $output .= '</a></div>'; $output .= '<h4>'.get_the_title().'</h4>'; $output .= '<p>'. word_trim(get_the_excerpt(), 15, '...').'</p>'; $output .= '<p><a href="'. get_permalink() .'" class="small button radius secondary"><i class="icon-angle-right"></i> '.__("READ MORE", 'kleo_framework').'</a></p>'; $output .= '</div>'; } break; default: $output .= '<div class="four columns">'; if (get_post_thumbnail_id()) { $output .= '<div class=""><a class="imagelink" href="'. get_permalink().'">'; $output .= get_the_post_thumbnail(null,'blog_carousel'); $output .= '</a></div>'; } $output .= '<h4>'.get_the_title().'</h4>'; $output .= '<p>'. word_trim(get_the_excerpt(), 15, '...').'</p>'; $output .= '<p><a href="'. get_permalink() .'" class="small button radius secondary"><i class="icon-angle-right"></i> '.__("READ MORE", 'kleo_framework').'</a></p>'; $output .= '</div>'; break; } endwhile; wp_reset_postdata(); $output .= '</div>'; return $output; } add_shortcode('kleo_my_posts', 'kleo_my_posts');
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterTry replacing this file contents wp-content/themes/sweetdate/custom_buddypress/kleo-bp-search.php with https://archived.seventhqueen.com/files/kleo-bp-search.txt
See if the search works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi,
This code added to sweetdate-child/functions.php removes that link from the menuCOPY CODEadd_filter('header_profile_dropdown','remove_activity_submenu'); function remove_activity_submenu($menu) { unset($menu['activity']); return $menu; }
You should just have removed the activity component if you don;t need it. Settings – BUddypress
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, Give us a link to the search you are doing. What I meant was that if no members are found in the search then the text won’t appear
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi,
You should have replaced the content of the given file paths with the content from the links.. there is no child theme involved.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, Give us again the credentials here please by marking the reply as private if the problem is still there
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, the code should work after the update. Maybe it got deleted from where you added it.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi,
For squared avatars: Sweetdate – Miscellaneous – Use squared avatar imagesFor the online count you added a code that sums the same number to all members. See my code here:
https://archived.seventhqueen.com/forums/topic/manual-number-of-members-change#reply-4586Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterI am glad to hear it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHello, Sweetdate uses this path for styling bbpress: wp-content/themes/sweetdate/bbpress/css/bbpress.css
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, Adding this in the normal content editor doesn’t work? Show us a link to your page
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHello, I am sure it is something related to the install. Have you installed it in another location and them moved the install?
Give us a link and some credentials to take a quick lookHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterThat is because the form is under the slider. Add this CSS
COPY CODE.revslider-head .just-after-header { margin-top: 150px; z-index: 1; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterWorks great. Indeed the admin is really nice 😀
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, That change is more than a few line of code 🙂
We will try to do it next year in JanuaryHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, This is the php code to elp you achieve that
COPY CODE$output = ''; bp_album_query_pictures('per_page=100'); if ( bp_album_has_pictures() ) : $output = '<div id="gallery-carousel">'; while ( bp_album_has_pictures() ) : bp_album_the_picture(); $output .= '<span class="circle">'; $output .= '<a href="'.bp_album_get_picture_original_url().'" class="imagelink" data-rel="prettyPhoto[gallery2]">'; $output .= '<span class="overlay"></span>'; $output .= '<span class="read"><i class="icon-'. apply_filters('kleo_img_rounded_icon','heart').'"></i></span>'; $output .= '<img src="'.bp_album_get_picture_original_url().'" alt="">'; $output .= '</a>'; $output .= '</span>'; endwhile; $output .= '</div><!--end #gallery-carousel-->'; $output .= '<div class="clearfix"></div> <div class="four columns centered btn-carousel hide-for-small"> <small><a href="#" id="stanga-prev">'. __("PREVIOUS", 'kleo_framework').'</a> <a href="#" id="dreapta-next">'. __("NEXT", 'kleo_framework').'</a></small> </div>'; endif; echo $output;
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.December 13, 2013 at 14:10 in reply to: Avatar thumbnails are actually resized full size images #8192Abe
KeymasterHi, I have changed the image in Latest members carousel. All other locations use the thumb image. Here is the updated sweetdate/custom_buddypress/bp-functions.php code: https://archived.seventhqueen.com/files/bp-functions.txt
That page load is probably related to other scripts from external sites like vimeo, google
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, You need to add it with a piece of code as a shortcode probably. Add it sweetdate-child/functions.php and disable Revslider from Sweetdate – Homepage
COPY CODEadd_action('kleo_after_header', 'kleo_home_layerslider'); function kleo_home_layerslider() { echo do_shortcode('[layer_slider_shortcode_here]'); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi, We included a newer version of Revslider. go to Revolution Slider menu in Wp admin and click Update plugin. The .zip file is located in sweetdate/lib/revslider.zip
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterGive us access to your site to take a look at your settings.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterFor the matching score to work you need to change the name of your new fields in the code above: https://archived.seventhqueen.com/forums/topic/match-numbers#reply-2254
Changing those fields should work
$kleo_config[‘matching_fields’][‘sex’] = ‘I am a’;
$kleo_config[‘matching_fields’][‘looking_for’] = ‘Looking for a’;or disable sex matching with:
$kleo_config[‘matching_fields’][‘sex_match’] = 0;
and set the normal fieldsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHi,
Indeed that is the solution to appear as a Buddypress member.
Even after they log in they aren’t counted?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterTry with this css code to hide the sticky menu:
COPY CODE.bp-user .contain-to-grid.sticky.fixed { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
Keymaster1. Great
2. Your final codes should look like:COPY CODE<div class="twelve columns"> <div class="row"> <div class="five columns"> --BIG AWEBER CODE HERE-- </div> </div><!--end row--> </div><!--end twelve-->
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterHello,
This topic shows how to define what tabs appear there https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-imageYou need to set the name of your group that you want to show in the ‘group’ => ‘Name of my group as in Users – Profile fields’,
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.Abe
KeymasterYou should have a Register page which is linked to Buddypress in Sweetdate – Settings – Pages
Also set and save Permalinks in Settings – Permalinks
It is related to your configuration. See the video for initial setup https://archived.seventhqueen.com/video-tutorialsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer. -
AuthorPosts