Forum Replies Created

Viewing 40 posts - 24,921 through 24,960 (of 25,000 total)
  • Author
  • in reply to: Error updating to Buddypress 2.1.1 #35287
     Laura
    Moderator

    Hello, try to do it manually, go to your ftp and in wp-content/plugins delete buddypress, then upload the updated buddypress folder that you can download from here https://buddypress.org/download/

    Hope it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Captcha box change location on the page #35269
     Laura
    Moderator

    Hello, try to add this to your sweetdate-child style.css

    COPY CODE
    
    .register-section {
    width: 200px;
    clear: right;
    margin-top: -140px;
    float: right;
    margin-right: 260px;
    }
    .right {
    float: right;
    margin-top: 80px;
    }
    

    Let me know if it works 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: New Users Registration Don\'t show in the Members page #35203
     Laura
    Moderator

    Hello, use this https://wordpress.org/plugins/redirect-after-login/ to redirect users based in their role, and to hide some pages for users that are not paid users just create roles on PMPRO plugin and check the role that can see the page in the page editor.

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Members connection options #35146
     Laura
    Moderator

    Hello, please go to wp-admin > settings > Buddypress and make sure friends and private messages are enabled 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: How to make User Groups? #35145
     Laura
    Moderator

    Hello, ‘user groups’ should be selected in wp-admin Settings > BP / ‘allow members to create groups’ selected in wp-admin Settings > BP > Settings
    There should be a button in groups directory so members can create it.

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Help Creating a Payed Men WebSite #35144
     Laura
    Moderator

    Hello 🙂
    try this http://www.paidmembershipspro.com/documentation/

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: How to show 2 status on center? #35143
     Laura
    Moderator

    Hello, can you give me your website link to check it out?

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Vertical Registration form on homepage #35140
     Laura
    Moderator

    Hello, go to Sweetdate theme > page-parts and download home-search-form.php ,now create a folder called page-parts inside sweetdate-child theme, then upload this file inside, then edit it and replace all with this:

    COPY CODE
    
    <?php 
    /* Hide the starting and ending columns if used as shortcode */
    global $bp_reg_form_show_cols, $bp_reg_form_show_carousel, $bp_reg_form_title, $bp_reg_form_details;
    if (!isset($bp_reg_form_show_cols)) { ?>
    <div class="twelve columns">
    	<div class="row">
    		<div class="five columns">
    <?php } ?>
    			
    			<div class="form-wrapper">
    				<div class="form-header">
    					<h4 class="white-text">
    						<?php 
    						/* if set via shortcode */
    						if (isset($bp_reg_form_title)) {
    							echo $bp_reg_form_title; 
    						} else {
    							_e("Create an Account", 'kleo_framework');
    						}
    						?>
    					</h4>
    					<p class="reg-form-details">
    						<?php 
    						/* if set via shortcode */
    						if (isset($bp_reg_form_details)) {
    							echo $bp_reg_form_details; 
    						} else {
    							_e("Registering for this site is easy, just fill in the fields below and we will get a new account set up for you in no time.",'kleo_framework');
    						}
    						?>
    					</p>
    				</div>
    				<!--Search form-->
    				<form id="register_form_front" action="<?php if (function_exists('bp_is_active')) bp_signup_page(); else echo get_bloginfo('url')."/wp-login.php?action=register"; ?>" method="post" class="custom form-search">
    
    					<div class="row">
    					  <div class="five mobile-four columns">
    						<label class="right inline"><?php _e("Username",'kleo_framework');?>:</label>
    					  </div>
    					  <div class="seven mobile-four columns">
    						<input name="signup_username" required="required" type="text" placeholder="<?php _e("Required",'kleo_framework');?>">
    					  </div>
    					</div><!--end row-->
    
    					<div class="row">
    					  <div class="five mobile-four columns">
    						<label class="right inline"><?php _e("Email Address",'kleo_framework');?>:</label>
    					  </div>
    					  <div class="seven mobile-four columns">
    						<input name="signup_email" type="text" required="required" placeholder="<?php _e("Required",'kleo_framework');?>">
    					  </div>
    					</div><!--end row-->
    
    
    					<div class="row">
    					  <div class="five mobile-one columns">
    						<label class="right inline"><?php _e("Password",'kleo_framework');?>:</label>
    					  </div>
    					  <div class="three mobile-one columns">
    						<input type="password" name="signup_password" required="required" placeholder="<?php _e("Required",'kleo_framework');?>">
    					  </div>
    					  <div class="one mobile-one columns text-center">
    						<label class="inline"></label>
    					  </div>
    					  <div class="three mobile-one columns">
    						<input type="password" name="signup_password_confirm" required="required" placeholder="<?php _e("Confirm",'kleo_framework');?>">
    					  </div>
    					</div><!--end row-->  
    
    					<?php do_action('kleo_register_form_extra'); ?>
    
    					<div class="row">
    					  <div class="seven offset-by-five columns"><button class="button radius front-form-button"><i class="icon-user"></i>  <?php _e("Sign Up",'kleo_framework');?></button>
    					  <?php do_action('fb_popup_register_button_front'); ?>
    					  </div>
    					</div>
    					<span class="notch"></span>
    				</form>
    				<!--end search form-->
    
    				<?php 
    				/* Show latest profiles carousel */
    				$show_carousel = false;
    				if (function_exists('bp_is_active')) {
    					if (isset($bp_reg_form_show_carousel)) {
    						if ($bp_reg_form_show_carousel == 1) {
    							$show_carousel = true;
    						}
    					} elseif(sq_option('home_search_members', 1) == 1) {
    						$show_carousel = true;
    					}
    				}
    
    				if ($show_carousel): ?>
    				<!--Form footer-->
    				<div class="form-footer">
    
    				  <?php do_action('kleo_bps_before_carousel');?>
    
    				  <?php echo do_shortcode('[kleo_members_carousel]');?>
    
    				</div><!--end form-footer-->
    
    
    				<?php else: ?>
    					<?php $main_color_rgb = hexToRGB(sq_option('button_bg_color_hover')); ?>
    					<div class="form-footer" style="border-left:none;border-right: none;padding:0;background: <?php echo sq_option('button_bg_color'); ?>; <?php echo 'border-bottom: 10px solid rgba('.$main_color_rgb['r'].', '.$main_color_rgb['g'].', '.$main_color_rgb['b'].', 0.3)'; ?>"></div>
    				<?php endif; ?>
    				
    			</div><!--end form-wrapper-->
    			
    <?php if (!isset($bp_reg_form_show_cols)) { ?>
    		</div>
              <div class="five columns">
                <?php do_action('kleo_bp_search_form', (sq_option('home_search_members', '1') ==1?true:false) ); ?>   
              </div>
          </div><!--end row-->
        </div><!--end twelve-->
    <?php } ?>   
    
    

    Also select search form in sweetdate menu 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Gender related question – Sweetdate #35132
     Laura
    Moderator

    Hello, lets see…if you want i can try to do it for you, i just need credentials to your admin panel 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: New Users Registration Don\'t show in the Members page #35086
     Laura
    Moderator

    Hello, they wont show up in members page until they log in for the first time.
    Hope it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

     Laura
    Moderator

    Hello, i would recommend compressing your menu a little, like put cosmos forum inside comunity, contact inside about us, cosmos cam inside cosmos chat so it only takes one line of menu, let me know if this helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Android, Apple, Iphone registration new user issue #34948
     Laura
    Moderator

    Hello, stay with wanguard if you want, test a new registration, if the questions appear, it works 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Android, Apple, Iphone registration new user issue #34940
     Laura
    Moderator

    Hello, wanguard should work, as long as it asks a random question it will be fine 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Contact Page GOOGLE MAP Icon #34916
     Laura
    Moderator

    Hello 🙂 Its fixed, i also changed your image so its transparent, looks better 🙂
    And i’m from cuba, but live in spain 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Android, Apple, Iphone registration new user issue #34915
     Laura
    Moderator

    Hello, so, as i said this is an usual issue on buddypress, so the alternative is using a captcha plugin in the sign up form and http://buddydev.com/plugins/bp-auto-activate-auto-login/

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34914
     Laura
    Moderator

    Hello, the problem is that users need to upload images same or higher than 580×580, so if its less it will look bad.

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Contact Page GOOGLE MAP Icon #34891
     Laura
    Moderator

    Hello 🙂 maybe i can check it out? if you can give me access to your FTP
    Let me know 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Android, Apple, Iphone registration new user issue #34889
     Laura
    Moderator

    Hello, have you tried:
    -Deactivating all your plugins but buddypress and testing it
    -Checking in your database if the activation key is in the user field.

    This is a common issue on buddypress, i would recommend to use a captcha plugin for the sign up and use http://buddydev.com/plugins/bp-auto-activate-auto-login/ to auto activate your users, with the captcha at sing up you can ensure they are not spammers
    Let me know 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Contact Page GOOGLE MAP Icon #34885
     Laura
    Moderator

    Hello, just dont change img id and see what happens. And the template directory should be :
    /wp-content/uploads/2014/10/gmate57px.jpg
    Let me know 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Help Creating a Payed Men WebSite #34860
     Laura
    Moderator

    Hello 🙂 Let me see if i can help you with this,
    First, you may need to have a form builder plugin, i would recommend https://wordpress.org/plugins/ninja-forms/

    1.Create a Level for Men in PMPRO Plugin menu, add the settings you want to it, price, expire time…All you need…
    2.Create a Level for Women in PMPRO Plugin menu.
    3.Create a Level for WomenPRO in PMPRO Plugin menu, add the settings you want to it, expire time…All you need…
    4.Create a form with any fields you want, and set an attachment field so women can send their documents to you.

    Next step is to make members page or any other page visible ONLY to Men level and WomenPRO. If any other person that registers but doesnt have any membership wont see those pages but will see a message to go to membership selection page.

    Then add a page for the form so women can send documents to you, and if you accept them, just change their membership to WomenPRO.

    Add the link to that form in memberships page and register page so they can see how to register with access.
    Also check out the options that offers Sweetdate > Subscriptions menu

    Let me know if this helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34858
     Laura
    Moderator

    Hello, so now next step, please send me the info of your admin panel so i can log in and check it out 🙂
    Sorry for so much steps, this issue is strange for me.

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34849
     Laura
    Moderator

    Hello, please let me know if its fixed like you want it 🙂
    If you want any special customization like bigger avatars and so, just let me know

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34835
     Laura
    Moderator

    Hello, can you give me access to your FTP so i can test some fixes?

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34832
     Laura
    Moderator

    Hello, do you have any quick css codes? Any change made recently to the CSS? Tried deactivating your plugins but buddypress to see if it fixes?
    Let me know 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Contact Page GOOGLE MAP Icon #34830
     Laura
    Moderator

    Hello, wisinyyandel7 please replace this image https://gmate.co/wp-content/themes/sweetdate/assets/images/icons/apple-touch-icon-57×57.png with your icon

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34824
     Laura
    Moderator

    Hello, the file is foundation-nonresponsive.min.css

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34822
     Laura
    Moderator

    Hello, well i actually dont know why is this happening to you, but well try this:
    Goto foundation-nonresponsive.min-css and find img{height: auto;} then delete that, do it in the main theme sweetdate. If it works, save that file because if you update sweetdate it may be replaced.

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Avatar dimensions for landscape and portrait #34815
     Laura
    Moderator

    Hello, please add this to /wp-content/themes/sweetdate-child/assets/styles if the folders doesnt exist just create them.
    Let me know if its working 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Avatar dimensions for landscape and portrait #34807
     Laura
    Moderator

    Hello, please give me a link to your website so i can check i out? 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Contact Page GOOGLE MAP Icon #34798
     Laura
    Moderator

    Hello, please give me the link to your website so i can check it out 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Login Panel – Privacy #34772
     Laura
    Moderator

    Hello 🙂 i’m sorry i’m not Abe, but maybe i can help you, please go to Sweetdate Menu > Miscellaneous and scroll down, you will see then 2 selet boxes where you can choose Terms and Conditions page and Privacy Policy page 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Force Package Selection #34771
     Laura
    Moderator

    Hello, thats the way PMPRO plugin is made, but its easy to customize so nobody can access certain places without a membership.
    Please go to Paid Memberships pro plugin menu, Add a level and call it “Free”, customize the options you want for it, like expire time etc… then add it to membership selection page.

    Now, on each page of your website go to edit and Select the Free level on the sidebar so that page is only visible for Free membership.

    Now for higher memberships just select the pages that are only visible for them , edit each one and select the level in the sidebar.

    Also you can customize the access to members page etc… in Sweetdate > Subscriptions.

    This way even if you log in and skip the page Memberships, if you try to access any other page that is only visible for free and higher, you will see a message that says you need to be “Free” to view this page. This will force people to select the membership.

    Also those pages that are only visible for higher levels will also display that message, for free and without membership members.

    Hope this helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Checking notifications DOUBLE work #34770
     Laura
    Moderator

    Hello, that is buddypress plugin, it is made like that and sadly we cant help you because we didnt made it, is not related to the theme so if you want any change to it please contact Buddypress Support or hire a programmer to do it for you :).

    NOTE: It is too much work so i would recommend to stay like it is 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: All Accounts locked out #34768
     Laura
    Moderator

    Hello, this theme doesnt have any account locking after x attempts feature so it may be some plugin you have installed, please go to your FTP wp-content/plugins and rename any plugin folder related to security. If you dont know just give me a list of the plugins you have and i can check it out 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Remove TOP Black Bar with my EMAIL and Facebook icon #34749
     Laura
    Moderator

    Hello, please go to Sweetdate menu > Contact & Social and disable Top Social Bar.
    Hope it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Contact Page GOOGLE MAP Icon #34748
     Laura
    Moderator

    Hello, please go to Sweetdate > General > Apple Iphone Change those icons to the ones you want, and the problem will be fixed 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Homepage: Edit Text then add Photos & Stop Looping #34746
     Laura
    Moderator

    Hello, the shortcode is a loop feature, there is no way to make it stop looping because is made to be like that, if you want to have certain testimonials there just add them individually.
    Hope it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Floating bar LOGO #34733
     Laura
    Moderator

    Hello, you can change the sticky menu logo in Sweetdate > General > Small Logo.
    TThe one that says “sticky”
    Hope it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Search Box Edits #34715
     Laura
    Moderator

    Hello, please add this to your style.css in Sweetdate-child theme:

    COPY CODE
    
    /* Search Box Borders Color */
    .form-header {
    border-left: 10px solid rgba(56, 49, 52, 0);
    border-top: 10px solid rgba(146, 66, 93, 0);
    border-right: 10px solid rgba(146, 66, 93, 0);
    }
    .form-search {
    border-left: 10px solid rgba(221, 39, 101, 0);
    border-right: 10px solid rgba(146, 66, 93, 0);
    }
    /* Form Background color */
    .form-search, .form-header, div.alert-box, div.pagination span.current {
    background: rgba(54, 54, 54, 0.51);
    }
    /* Border color of the buttons */
    .form-search.custom div.custom.dropdown a.selector, .form-search.custom div.custom.dropdown a.current, .form-search.custom select {
    border: solid 1px #363636;
    }
    /* Background color of the buttons */
    .form-search.custom div.custom.dropdown a.current, .form-search.custom input[type="text"], .form-search.custom input[type="password"], .form-search.custom select {
    background-color: #363636;
    }
    /* Search Button colors */
    .button:hover, .button:focus, .form-search .button, .form-search .button:hover, .form-search .button:focus, .wpcf7-submit:focus, .wpcf7-submit:hover, #rtmedia-add-media-button-post-update:hover, #rt_media_comment_submit:hover, .rtmedia-container input[type="submit"]:hover {
    color: #ffffff; /* Text color */
    background-color: #363636; /* Background Color */
    border: 1px solid #363636; /* Border Color */
    }
    /* Form Footer  */
    .form-footer {
    color: #FDF9F9; /* Text Color */
    padding: 20px 20px 10px;
    border-left: 10px solid #363636;
    border-bottom: 10px solid #363636;
    border-right: 10px solid #363636;
    background: #363636;
    width: 360px;
    }
    /* Photos Border */
    .carousel-profiles li {
    border: 3px solid #363636;
    }
    /* Arrows Color */
    a:not(.button), div#main a:not(.button), #header .form-footer a:not(.button) {
    color: #F7F4F4;
    }
    /* Text color, change #FFF to the color of the text you need */
    #header, #header .form-header .lead, #header label {
    color: #FFFFFF;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Change Profile Info Background #34712
     Laura
    Moderator

    Hello, please go to your wordpress admin panel > Sweetdate menu > Buddypress , scroll down to Profile Header then change Background Type to IMAGE then upload your image and save changes.

    Hope it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

Viewing 40 posts - 24,921 through 24,960 (of 25,000 total)

Log in with your credentials

Forgot your details?