Forum Replies Created

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

    I understand what you mean but those tabs take the exact group you set in Users – Profile fields. what I said was to define a group to include the fields you want and set it to show as a tab using https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image

    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: forgot how to… #9499
     Abe
    Keymaster

    Hi, I don’t understand your question, sorrry 🙂 Please put a print-screen with the section since I haven’t seen a twitter link or so

    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 Facebook use a custom thumbnail image #9498
     Abe
    Keymaster

    Hello, You can use this plugin that takes the featured image set
    http://wordpress.org/plugins/facebook-featured-image-and-open-graph-meta-tags/

    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 can I change my website description? #9497
     Abe
    Keymaster

    Hello,
    What exactly do you mean by website desriptions? One Site description can be set from WP admin – Settings – General.
    All other settings related to the theme are done in WP admin – Sweetdate

    You have a included documentation inside the main package downloaded from Themeforest.

    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: Change Column Width in Member Header (Profile Page) #9496
     Abe
    Keymaster

    Hello, You just need to redefine this function in your sweetdate-child/functions.php and chage the column as you like

    COPY CODE
    
    	function kleo_bp_profile_tabs()
    	{
    		global $bp_tabs;
    
    		echo '<div class="seven columns">';
    		new BpMembersTabs($bp_tabs);
    		echo '</div>';
    	}
    
    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: Site is Blurry #9495
     Abe
    Keymaster

    Hi, provide a link to take a look. Any other plugin that might cause this?

    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: Welcome page – Change Background #9493
     Abe
    Keymaster

    If you want to add a picture like this: http://seventhqueen.com/demo/sweetdatewp-modern/
    add it from Sweetdate – Homepage – Image

    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: Privacy Settings – Issues #9491
     Abe
    Keymaster

    I don’t know how you are doing the tests. For example we logged in as user1, changed City visibility to Nobody. Logged in as user2, went to user1 profile -> City isn’t visible

    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 for moroccanish #9490
     Abe
    Keymaster

    Hi, see this topic on adding a new submenu to the profile menu in header: https://archived.seventhqueen.com/forums/topic/add-menu-item-to-the-profile-drop-down-menu

    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

    or to not show the version go to sweetdate-child/style.css and remove the version line

    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

    Hello, Child theme doesn’t get updated since it has your customizations and will show the initial version so that is fine.

    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: gravatar #9487
     Abe
    Keymaster

    Great aladdinl

    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: Sweetdate WP Showcase #9486
     Abe
    Keymaster

    Congrats. Looks 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: Name Field on Register Form #9485
     Abe
    Keymaster

    Hi, You can add this script in footer.php just before wp_footer line. This will hide the full name in the register page and because it is a require field it will take the value of username

    COPY CODE
    
    <script>
    var url = document.location.href;
    jQuery(document).ready(function() {
    //copy profile name to account name during registration
    if (url.indexOf("register/") >= 0) {
        jQuery('label[for=field_1],#field_1, #field-visibility-settings-toggle-1').css('display','none');
        jQuery('#signup_username').blur(function(){
            jQuery("#field_1").val(jQuery("#signup_username").val());
        });
    }
    });
    </script>
    
    
    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: Adding New Field to Sweetdate Parent #9484
     Abe
    Keymaster

    Image is added by CSS and this is the styling(you can use Inspect element in your Chrome browser to see it)

    COPY CODE
    
    .membership .pricing-table.popular:after {
        background: url("images/pop.png") no-repeat scroll center center rgba(0, 0, 0, 0);
        content: "";
        height: 78px;
        position: absolute;
        right: 0;
        top: 0;
        width: 78px;
    }
    

    To do those changes you or a developer you hire require some HTML/CSS/PHP knowledge.

    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: Remove members from profile url #9483
     Abe
    Keymaster

    in wp-config.php
    define ( ‘BP_ENABLE_ROOT_PROFILES’, true );

    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 menu to the black top bar #9482
     Abe
    Keymaster

    Hi, You need to register a new menu with this function added to sweetdate-child/functions.php

    COPY CODE
    
    function kleo_register_my_menus() {
    	register_nav_menus(
    		array(
    			'Top' => __( 'In the top bar', 'kleo_framework' ),
    		)
    	);
    }
    add_action( 'init', 'kleo_register_my_menus' );
    

    And then in header.php add this code somewhere inside top-links div.
    <?php wp_nav_menu( array( 'container' => false, 'menu_class' => 'left top_menu', 'theme_location' => 'Top', 'fallback_cb' => '', 'walker' => new sweetdate_walker_nav_menu)); ?>

    and this style to Sweetdate – Styling options – Quick css

    COPY CODE
    
    .top_menu {list-style: none;}
    .top_menu li {float:left;margin-right: 10px}
    .top_menu li:last-child {margin-right: 0;}
    
    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: What does this mean? #9470
     Abe
    Keymaster

    Hi, You should dismiss it. In Sweetdate v.2.3.1 we have updated those templates that are found in sweetdate/rtmedia

    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 install the theme updates once they are available? #9468
     Abe
    Keymaster

    I mean Themeforest(TF) username. API key is found under your Themeforest account – Settings – API Keys

    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: WPML flag switch security issue #9467
     Abe
    Keymaster

    Oh. I just saw that Paid memberships pro 1.7.6 is also available and fixed this 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: WPML flag switch security issue #9465
     Abe
    Keymaster

    Hi Patrick,
    You are right again. This time is a PMPRO bug 🙂
    but I managed to get around it. Re-download the above functions-pmpro.txt because I modified it.
    Also add a translated page of Memberships Levels with the same content as English one

    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: Background picture #9464
     Abe
    Keymaster

    That is included in the demo folder in revolution slider but here is the link again: http://seventhqueen.com/demo/sweetdatewp/wp-content/uploads/revslider/full_width_with_form/profile_users.jpg

    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: gravatar #9463
     Abe
    Keymaster

    It redirects me to the login 🙂
    I guess you have done some template changes? otherwise that shouldn’t happen. See our demo and test with user demo password demo
    http://seventhqueen.com/demo/sweetdatewp/

    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 Footer menu horizontally next to the copyright #9462
     Abe
    Keymaster

    Hi, See my answer here to see how you can redefine the function that generates the copyright text and echo anything else instead
    https://archived.seventhqueen.com/forums/topic/add-links-to-footer#reply-5387

    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: Translation Problems #9461
     Abe
    Keymaster

    See my answer in your similar question here: https://archived.seventhqueen.com/forums/topic/sweet-date-theme#reply-9460

    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: Translating the theme #9460
     Abe
    Keymaster

    Hi, before I submitted my answer I just did that so there is no way it doesn’t work.
    Steps:
    – go to Buddypress plugin from Codestyling localization
    – add EN_US language if it doesn’t exist
    – rescan files
    – search for the strings and translate them
    – click to generate the .mo file.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Sidebar Style and Page Style Conflict #9459
     Abe
    Keymaster

    Hello,
    Only for performance the best way is to put it in Style.css document in the Sweetdate-child folder
    The higher priority CSS has Sweetdate>Styling Options> Quick CSS meaning that if you put two stylings for the same element in 1 and 2 the one from 2 will apply.

    Recent posts in sidebar is a widget that is different from the normal site display.
    You can use a shortcode in sidebar in the Text widget to display 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: PMPro levels page bug? #9458
     Abe
    Keymaster

    Really strange 🙂
    Please give us a link to your site and a admin user if you can to take a look. Mark the reply as private

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Conflict with plugin simple Ads Manager #9457
     Abe
    Keymaster

    We just installed it and did some test but no errors.
    Look for javascript errors in browser console

    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: BP ALBUM translation problems #9455
     Abe
    Keymaster

    Hello,
    bpAlbum translation files reside in sweetdate/lib/bp-album/includes/languages
    You need to copy the bp-album folder to your computer and translate it with Poedit.

    If you are using a child theme put the .mo and .po in sweetdate-child/languages/
    The file name should follow this example: bp-album-en_US.mo or bp-album-fr_FR.mo

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

    Hi, this is another related topic: https://archived.seventhqueen.com/forums/topic/registration-and-subscription-in-the-same-time

    We will think of other solutions but right now something like that is not possible

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: SPAM #9452
     Abe
    Keymaster

    Hi,
    Really Simple CAPTCHA doesn’t integrate with buddypress. Use one that states that like http://wordpress.org/plugins/bp-security-check/

    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: Remove admin from search results #9439
     Abe
    Keymaster

    That fix I was talking about is related to some incorrect member count. To remove admin from search results: https://archived.seventhqueen.com/forums/topic/hide-admin

    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

    HI, in wp-content/themes/sweetdate/members/single/profile/profile-loop.php you need to remove ul class=”accordion” and div class=”accordion-content” tags and customize it further if it is required

    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

    Hi, Please give us a link to your site and a testing user

    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: Private Messages #9436
     Abe
    Keymaster

    Hi, I guess you can comment line 164 from wp-content/themes/sweetdate/functions-pmpro.php to allow restricted members to view messages

    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: PMPro vs WooCommerce #9435
     Abe
    Keymaster

    I think they have a paid plugin on woo site

    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 Specific About Me Profile Fields #9434
     Abe
    Keymaster

    Hi, make the change in the child theme and in custom_buddypress/bp-functions.php replace:
    require_once(get_template_directory(). ‘/custom_buddypress/class-bp-tabs.php’);
    with

    COPY CODE
    
    locate_template('custom_buddypress/class-bp-tabs.php', true);
    

    And I will include this fix in next theme update so you won’t have to worry about the change in bp-functions.php

    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
    Keymaster

    You configure your fields 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
    Keymaster

    1. How did you add this code? It should be in sweetdate-child/functions.php at the end of the file just before the ?> line

    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,081 through 8,120 (of 8,607 total)

Log in with your credentials

Forgot your details?