Forum Replies Created

Viewing 40 posts - 8,481 through 8,520 (of 8,607 total)
  • Author
  •  Abe
    Keymaster

    To 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.

     Abe
    Keymaster

    Great 🙂

    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.

    in reply to: All Sidebars have dissapeared on edit widgets screen #8304
     Abe
    Keymaster

    Hi, 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.

    in reply to: Translate to spanish with WPML and .mo files #8303
     Abe
    Keymaster

    Hi, 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.

    in reply to: Circle Image – Add URL instead of opening in lightbox #8302
     Abe
    Keymaster

    That 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.

    in reply to: Help Nothing work #8289
     Abe
    Keymaster

    Hi, 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 – Buddypress

    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.

    in reply to: Updating Revolution Slider? #8288
     Abe
    Keymaster

    Hi
    Already a topic on this https://archived.seventhqueen.com/forums/topic/revolution-slider-update

    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.

    in reply to: Circle Image – Add URL instead of opening in lightbox #8247
     Abe
    Keymaster

    Just 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.

    in reply to: Members not Displaying on List/Directory page #8244
     Abe
    Keymaster

    If 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.

    in reply to: Circle Image – Add URL instead of opening in lightbox #8243
     Abe
    Keymaster

    Hi, 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.

    in reply to: Where is the code for [top_members] #8242
     Abe
    Keymaster

    Hi, 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.

    in reply to: Carousel – Categories #8241
     Abe
    Keymaster

    Hi, 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-categories

    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.

    in reply to: Hide members real names #8240
     Abe
    Keymaster

    Here 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.

    in reply to: kleo_articles BROKEN #8239
     Abe
    Keymaster

    It 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.

    in reply to: POSTS LAYOUT #8238
     Abe
    Keymaster

    Hi,
    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 case

    COPY CODE
    
    function 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.

    in reply to: Age Range Search #8236
     Abe
    Keymaster

    Try 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.

    in reply to: v.2.3 … many problems #8234
     Abe
    Keymaster

    Hi,
    This code added to sweetdate-child/functions.php removes that link from the menu

    COPY CODE
    
    add_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.

    in reply to: text on members directory #8233
     Abe
    Keymaster

    Hi, 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.

    in reply to: w3c errors #8232
     Abe
    Keymaster

    Hi,
    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.

    in reply to: Users Online Page Problem #8231
     Abe
    Keymaster

    Hi, 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.

    in reply to: Ajax Profile Tabs #8230
     Abe
    Keymaster

    Hi, 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.

    in reply to: rounded tabs in the box where you search? #8229
     Abe
    Keymaster

    Hi,
    For squared avatars: Sweetdate – Miscellaneous – Use squared avatar images

    For 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-4586

    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.

    in reply to: known problem with wp 3.8? #8222
     Abe
    Keymaster

    I 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.

    in reply to: bbpress styling #8221
     Abe
    Keymaster

    Hello, 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.

    in reply to: Add Static Content in front of Background Slider #8216
     Abe
    Keymaster

    Hi, 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.

    in reply to: Redirect loop with main plugins activated #8202
     Abe
    Keymaster

    Hello, 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 look

    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.

    in reply to: Slider Trouble & A Bunch of Setup Questions #8196
     Abe
    Keymaster

    That 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.

    in reply to: known problem with wp 3.8? #8195
     Abe
    Keymaster

    Works 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.

    in reply to: Member search #8194
     Abe
    Keymaster

    Hi, That change is more than a few line of code 🙂
    We will try to do it next year in January

    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.

    in reply to: Photo Album in other parts of a template #8193
     Abe
    Keymaster

    Hi, 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.

    in reply to: Avatar thumbnails are actually resized full size images #8192
     Abe
    Keymaster

    Hi, 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.

    in reply to: LayerSlider instead of Revolution Slider #8191
     Abe
    Keymaster

    Hi, 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 CODE
    
    add_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.

    in reply to: Revolution Slider Update #8190
     Abe
    Keymaster

    Hi, 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.

    in reply to: Membership restrictions NOT working #8178
     Abe
    Keymaster

    Give us access to your site to take a look at your settings.
    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.

    in reply to: How to change matching system #8177
     Abe
    Keymaster

    For 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 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.

    in reply to: Members not Displaying on List/Directory page #8176
     Abe
    Keymaster

    Hi,
    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.

    in reply to: keeping scroll bar on the last position when refresh #8175
     Abe
    Keymaster

    Try 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.

    in reply to: Slider Trouble & A Bunch of Setup Questions #8174
     Abe
    Keymaster

    1. 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.

    in reply to: How to make these tabs appear on my site #8173
     Abe
    Keymaster

    Hello,
    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-image

    You 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.

    in reply to: 404 – /register/ was not found on this server. #8172
     Abe
    Keymaster

    You 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-tutorials

    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.

Viewing 40 posts - 8,481 through 8,520 (of 8,607 total)

Log in with your credentials

Forgot your details?