Forum Replies Created

Viewing 40 posts - 8,121 through 8,160 (of 8,607 total)
  • Author
  • in reply to: Members showing with no membership level #9424
     Abe
    Keymaster

    YEs

    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 #9423
     Abe
    Keymaster

    Try doing the change in the main theme file to see if it has any effect. If it is not, then you are not doing the right change

    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 #9407
     Abe
    Keymaster

    They should be hidden if you set them so. where are you seeing them, in what 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: membership-levels #9406
     Abe
    Keymaster

    Hi, to change from blue to green add this css to Sweetdate – Styling options – QUicks css:

    COPY CODE
    
    .membership .bullet-item:before { color:green;}
    
    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: Some issues #9405
     Abe
    Keymaster

    Hi and thank you very much.

    1. Please add this code to sweetdate-child/functions.php to customize those tabs so they appear fine in multilingual

    COPY CODE
    
    //customize profile tabs
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs()
    {
        global $bp_tabs;
        $bp_tabs = array();
        $bp_tabs['looking-for'] = array(
                'type' => 'cite',
                'name' =>  __('Looking for', 'kleo_framework'),
                'group' => 'Looking for',
                'class' => 'citetab'
        );
     
        $bp_tabs['base'] = array(
                'type' => 'regular',
                'name' => __('About me', 'kleo_framework'),
                'group' => 'Base',
                'class' => 'regulartab'
        );
     
        /* rtMedia tab - only if plugin installed */
        if (class_exists('RTMedia'))
        {
            $bp_tabs['rtmedia'] = array(
                    'type' => 'rt_media',
                    'name' => __('My work', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
     
        /* Bp-Album tab - only if plugin installed */
        elseif (function_exists('bpa_init')) {
            $bp_tabs['bp-album'] = array(
                    'type' => 'bp_album',
                    'name' => __('My photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
    }
    

    2. Also add this code to the same location and customize it with proper link if its the case

    COPY CODE
    
    //My custom header submenu item
    add_filter('header_profile_dropdown','remove_activity_submenu');
    function remove_activity_submenu($menu) {
    	$menu['event'] = '<li><a href="' . bp_loggedin_user_domain().'events/">'. __("Events", "buddypress").'</a></li>';;
    	return $menu;
    }
    

    3. You’ll see them how they were added in header.php around line 163. try to replicate them

    4. In function php is the function that generates the meta section. Find get_author_posts_url and replace with bp_core_get_user_domain

    Those would be nice but for b,c I think there are some plugins that can be adapted

    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: Some issues with latest update #9402
     Abe
    Keymaster

    What do you mean it is not working? My fix above was for that

    Unfortunately we are involved in our next project and can’t do custom work.

    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: Some issues with latest update #9401
     Abe
    Keymaster

    Hi Frank, Submit a topic from the bottom of this page: https://archived.seventhqueen.com/forums/forum/sweetdate-wordpress

    Unfortunately we are involved in our next project and can’t do custom work. Please submit your questions on the forum and we will happily answer them.

    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: membership – changing description content of level #9400
     Abe
    Keymaster

    Hi, Like I said above add you description from Memerships – Membership Levels – edit a level – Description or maybe this topic: https://archived.seventhqueen.com/forums/topic/extra-membership-restrictions-how-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: Style – Multi Select Box #9393
     Abe
    Keymaster

    Hi, That is rendered depending on the browser you are using and multi-select field unfortunately doesn’t support the custom styling applied by Zurb Foundation Framework

    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: Hello #9390
     Abe
    Keymaster

    Hi, Please go at the bottom of this page to post a new topic: https://archived.seventhqueen.com/forums/forum/sweetdate-wordpress

    Right now we can’t do custom work since we are involved in our next project but we will happily answer all your questions here on the forum.

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

    Hi, That should not happen. Please disable any plugins that might interfere one by one and see 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

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

    in reply to: Adding New Field to Sweetdate Parent #9340
     Abe
    Keymaster

    Hi, See the function that generates that settings screen: pmpro_data_set from wp-content/themes/sweetdate/framework/theme_options.php

    then the template file is located under sweetdate/paid-memberships-pro/pages/levels.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: Short Code to dsplay only women or men on a page #9337
     Abe
    Keymaster

    You need to create some page templates and adapt the code from wp-content/themes/sweetdate/page-templates/buddypress-online.php

    Resources:
    http://codex.wordpress.org/Page_Templates
    http://codex.buddypress.org/developer/loops-reference/the-members-loop/#code-examples

    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

    Please see this post: 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: Style Recent Posts Widget #9333
     Abe
    Keymaster

    Hi, We haven’t added anything related to customizing the excerpt depending on the type of archive you are viewing.

    You could customize the template files content-xx.php and add some conditionals for the_excerpt()

    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: Issues making rtMedia unusable #9332
     Abe
    Keymaster

    We will let you know when we have some update about rtmedia.


    @egabillat
    what do you mean the slider isn’t working?

    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 contribution #9331
     Abe
    Keymaster

    Maybe you can share it with us when its complete. Thanks

    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: FACEBOOK REGISTRATION ISSUE #9317
     Abe
    Keymaster

    We just did tests on Chrome with Facebook registration and worked well. Please make the tests on our demo sites maybe you have something miss-configured.

    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 #9316
     Abe
    Keymaster

    Hi, Here is the fix until next update where the restrictions will work on each language of your site:
    Replace this file contents wp-content/themes/sweetdate/functions-pmpro.php with this one https://archived.seventhqueen.com/files/functions-pmpro.txt

    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 #9314
     Abe
    Keymaster

    Hi, You can change all colors, backgrounds from WP admin – Sweetdate – Styling options. See the Header section to change header background

    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: Multiple Tabs/ Posts Carousel #9313
     Abe
    Keymaster

    That was the functionality before the fix. See the demo where we haven’t applied the fix: 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: Transparent Images? #9312
     Abe
    Keymaster

    Hi, You need to save them without a background from Photoshop

    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 and Top level domains #9311
     Abe
    Keymaster

    Hi, Probably font-awesome css file is not loading. Check your resources from the web page to and see if their are loading correct

    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: Some issues with latest update #9310
     Abe
    Keymaster

    if you have your site under /dev-site add it like this:

    COPY CODE
    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^([a-z]+)/wp-includes/(.*)$ /dev-site/wp-includes/$2 [R=301,L]
    </IfModule>
    
    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: Some issues with latest update #9309
     Abe
    Keymaster

    This is a problem from WPML and Buddypress Multilingual. Until they will release a fix add this at the beginning of your .htaccess file

    COPY CODE
    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^([a-z]+)/wp-includes/(.*)$ /wp-includes/$2 [R=301,L]
    </IfModule>
    
    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 #9307
     Abe
    Keymaster

    Hi, In wp-content/themes/sweetdate/custom_buddypress/class-bp-tabs.php you should find those occurrences and change the “Name” field with the one you want to hide

    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: buddypress follow question #9305
     Abe
    Keymaster

    Hi, In wordpress there is a simpler solution when it comes to changing labels,strings,etc
    You create a translation file for English where you “translate” desired strings. You can do it quickly with Codestyling Localization plugin.

    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: Notification/Message Number Color Change #9303
     Abe
    Keymaster

    Great.

    Also please don’t forget to rate our theme, if you haven’t already 🙂

    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: search Select Matching Fields not working #9293
     Abe
    Keymaster

    Give us a link to your site and demo acount

    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: Some issues with latest update #9292
     Abe
    Keymaster

    And I also uploaded an avatar image successfully.

    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: Some issues with latest update #9291
     Abe
    Keymaster

    Just like I said, please check your plugins: Hide My WP disabled and all works.
    or do not set a custom url for AJAX requests in its settings

    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

    oh.. my bad. I edited the code above because it was echo-ing the register url instead of passing it to the function.
    If it is still the white page please set WP_DEBUG to TRUE in wp-config.php and let me know to take a 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: WPML flag switch security issue #9287
     Abe
    Keymaster

    Hi,
    Yes, we are working on it and the fix is almost finished. It will be ready tomorrow I hope.
    I will give the fix here until next 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: Some issues with latest update #9282
     Abe
    Keymaster

    Oh and also make sure to have Buddypress Multilingual plugin active

    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: Some issues with latest update #9281
     Abe
    Keymaster

    Hi, We just tested both points and behaved as it should. Maybe you have added a plugin or some changes meanwhile?
    Put a link to your site and a demo account

    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: register form #9279
     Abe
    Keymaster

    Hi, I saw it with Gravity forms: http://www.gravityforms.com/add-ons/user-registration/

    or you need to edit and customize sweetdate/registration/register.php. You’ll need a developer with PHP/Wordpress skils

    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 contribution #9276
     Abe
    Keymaster

    @PeterAndersson I was referring to German translation that is found here:
    https://archived.seventhqueen.com/files/languages.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: Sweetdate WP Showcase #9274
     Abe
    Keymaster

    Hi, Looks good. Congrats
    The events stream on homepage looks strange fullpage. try adding it to a section

    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: Multiple Tabs/ Posts Carousel #9272
     Abe
    Keymaster

    Hello, Indeed that is an issue with the carousel when put in tabs.
    We already fixed it and you can fix it until the next update by replacing this file content wp-content/themes/sweetdate/assets/scripts/app.js with https://archived.seventhqueen.com/files/app.js

    Thanks for noticing

    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: Short Code to dsplay only women or men on a page #9270
     Abe
    Keymaster

    Nice one. Thanks for sharing

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

Log in with your credentials

Forgot your details?