Forum Replies Created

Viewing 40 posts - 2,201 through 2,240 (of 2,655 total)
  • Author
  • in reply to: Mixed frontpage form problem #1322
     SQadmin
    Keymaster

    Hi,
    We tested but it works.
    Do you have any caching plugin? If you do, then you have to configure it and exclude from cache the front page

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to add more tabs next to the Profile image #1321
     SQadmin
    Keymaster

    You need to have the sweetdate-child theme activated. Also the user you are viewing needs to have some fields from the profile groups completed.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Sweetdate Updates Change log #1314
     SQadmin
    Keymaster

    UPDATE V1.5 = 13.08.2013

    + Two new shortcodes to restrict content for members or for guests
    + Added the option on the Front page to choose from Search form, Register Form or display Register form for guests and Search form for registered users
    + Added rtMedia tab on Profile page. This shows photos that members uploaded via rtMedia plugin
    + Changed the way the Tabs on the Profile page render. This new way allows you to add your own custom content
    + Added tabs on post/page theme settings
    + Added support for Buddypress Docs
    * WordPress 3.5 Media uploader now used for selecting files on page edit(gallery, audio post formats)
    * Fix Video Button shortocode when using non ascii characters
    * Fixed Ajax search excerpt display when an article had no content.
    * Removed strict standard notices
    * Fix for Safari 6 – Nested comments appear to be overlapping on blog single article page.
    * Fix javascript error on password recovery via login modal

    Files modified:
    assets/scripts/app.js
    assets/styles/app.css
    custom_buddypress/bp-functions.php
    custom_buddypress/class-bp-tabs.php
    custom_buddypress/kleo-bp-search.php
    custom_buddypress/_inc/css/default.css
    docs/*
    framework/classes/multiple_sidebars.php
    framework/classes/tgm-plugin-activation.php
    framework/constants.php
    framework/frontend.php
    framework/helpers.php
    framework/inc/pixelentity-themes-updater/class-pixelentity-themes-updater.php
    framework/shortcodes/shortcodes.php
    framework/shortcodes/tinymce/plugin.js
    framework/metaboxes/init.php
    framework/metaboxes/js/cmb.js
    framework/metaboxes/metabox_functions.php
    framework/metaboxes/style.css
    framework/options/defaults.php
    framework/theme_options.php
    functions.php
    languages/en_US.po
    members/single/member-header.php
    page-parts/buddypress-before-wrap.php
    page-parts/general-register-modal.php
    page-parts/home-register-form.php
    style.css

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Translation contribution #1313
     SQadmin
    Keymaster

    Hi,
    This is the link to the updated file:
    https://archived.seventhqueen.com/files/en_US.po

    Thanks

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Top Nav Menu Links #1312
     SQadmin
    Keymaster

    Hi,
    This is the way the menu works because we are using Foundation framework. This is because when it is in responsive mode that link won’t be available as a link and just to view child pages.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to add more tabs next to the Profile image #1311
     SQadmin
    Keymaster

    To change the order of the tabs we can remove the default added tabs by reinitializing the array with $bt_tabs = array(); and the adding our own tabs:

    COPY CODE
    
    
    add_action('after_setup_theme','kleo_my_actions');
    
    function kleo_my_actions() 
    {
        global $bp_tabs;
        $bp_tabs = array();
    
        $bp_tabs['base'] = array(
            'type' => 'regular',
            'name' => apply_filters('kleo_extra_tab2',__('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 photos', 'kleo_framework'),
                'class' => 'mySlider'
            );
        }
        /* Bp-Album tab - only if plugin installed */
        elseif (function_exists('bpa_init') AND sq_option('bp_album', 1) == 1)
        {
            $bp_tabs['bp-album'] = array(
                'type' => 'bp_album',
                'name' => __('My photos', 'kleo_framework'),
                'class' => 'mySlider'
            );
        }
        
        $bp_tabs['looking-for'] = array(
            'type' => 'cite',
            'name' => apply_filters('kleo_extra_tab1', __('Looking for', 'kleo_framework')),
            'group' => apply_filters('kleo_extra_tab1', 'Looking for'),
            'class' => 'citetab'
        );
    
    }
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Monday Released #1310
     SQadmin
    Keymaster

    Hi,
    Yes indeed if you have the rtMedia activated then uploaded images will appear in a tab automatically.
    To add more tabs or modify one, take a look at this topic I just created:
    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
    in reply to: green bar "testing" #1308
     SQadmin
    Keymaster

    Hi,
    I dont’ know what that could be. Can you give us a link? themesupport@seventhqueen.com
    Have you tried disabling any extra plugins?

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

    Remove whatever you have in sweetdate-child/functions.php and add that code.
    Details on the errors that appear always helps

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: PHP error using Pages by User Role #1306
     SQadmin
    Keymaster

    Send us a link on our email to take a look: themesupport@seventhqueen.com
    Any other plugins installed that could cause this?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Carousel not showing up… #1305
     SQadmin
    Keymaster

    Hi,
    By default it shows only video, gallery or image post formats.
    If you want to show all post formats:
    [kleo_posts_carousel post_formats="all"]

    Other attributes are available for this shortcode:
    https://archived.seventhqueen.com/documentation/sweetdatewp/#!/shortcodes

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to add a slider on home page header #1304
     SQadmin
    Keymaster

    Hi,
    I am glad it worked. Yes indeed it will be a pretty big update 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Recent Posts Widget with Post Image #1303
     SQadmin
    Keymaster

    Hi,
    In order to keep the main theme files intact you should add another widget that shows the post image instead of author.
    Add this code to your sweetdate-child/functions.php
    http://pastebin.com/C8CEuXvz

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Theme update- car-sharing style #1297
     SQadmin
    Keymaster

    Hi Mimi25,
    To make sure you don’t lose any previous settings you need to have sweetdate-child as the active theme.

    Regards,
    Robert

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Search Box Color Change #1296
     SQadmin
    Keymaster

    Hi Joel,
    Homepage search box share the same colors with primary buttons. You can change these colors in Sweetdate/Styling options/Buttons section.

    Regards,
    Robert

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Homepage Background Image #1295
     SQadmin
    Keymaster

    Hi Joel,
    To set a full background image you need to choose “Cover” option from dropdown. Also your layout need to be in wide mode – Sweetdate/Layout settings/Site layout.

    Regards,
    Robert

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: PHP error using Pages by User Role #1282
     SQadmin
    Keymaster

    Hi,
    Maybe the plugin itself is displaying some notices and you see the Warning: Cannot modify header information
    Try disabling debug mode in your wordpress install by editing wp-config.php file from the root of your wordpress install and make sure your WP_DEBUG constant is defined like this(around line 80):
    define(‘WP_DEBUG’, false);

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: bp checkins #1281
     SQadmin
    Keymaster

    Hi,
    We have to install the plugin to see what can be modified. We will let you know

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: hide date and time #1280
     SQadmin
    Keymaster

    Hi,
    You can inspect html elements with Firebug for Firefox and add the the display:none style
    1,2,4. span.time-since {display:none}
    3. #groups-list p.date {display:none}
    5. #member-list span.activity {display:none}

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to add a slider on home page header #1279
     SQadmin
    Keymaster

    Hi, We will support revolution slider but in the 2.0 update at the end of the month. Where are you putting your code?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: logo resize #1277
     SQadmin
    Keymaster

    Hi, have a demo link to see where is the problem? Please send us to themesupport@seventhqueen.com

    Regards,
    Robert

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Buddydrive integration #1276
     SQadmin
    Keymaster

    Yes we are releasing today(12.08.2013) and update where we are including extra styling for the docs pages.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Translation problems #1275
     SQadmin
    Keymaster

    Hi,
    You should keep the en_US .mo and .po under sweetdate/languages and then just add your translated ones. The name of your files should be like fr_FR.mo not sweetdate-fr_FR.mo and you should add them to the main theme in the languages folder.
    You can also use this plugin http://wordpress.org/plugins/codestyling-localization/ for easier translations.

    Also make sure you have done every step from this page: http://codex.wordpress.org/Installing_WordPress_in_Your_Language

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Search By Selected Fields #1270
     SQadmin
    Keymaster

    Hi
    I am glad you worked it out. The Facebook login works, you just need to create an Application and then enter the APP ID in Sweetdate -> Miscellaneous

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Main menu and Love Heart #1263
     SQadmin
    Keymaster

    Hi,
    The update with membership will come later this month. Next week update will include some new features and bug fixes.
    Thank you very much,
    Gabriel

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Buddypress Upgrade #1262
     SQadmin
    Keymaster

    Great 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: remove hearts on profile #1261
     SQadmin
    Keymaster

    Hi,
    Yes that relates to the matching system and it is an image.
    Cheers

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

    I can see now that the details doesn’t show and we already fixed it. We are releasing Monday an update that will also fix this.

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

    Hello and thanks,
    You can change the info that displays under the name and the details field by adding this to your sweetdate-child/functions.php file:

    COPY CODE
    
    //members page fields 
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'About me';
        //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'I am a',
            'Marital status',
            'City'
        );
          
    }
    

    Also if the fields don’t appear add this line, reload the members page and you can remove the line after that(we have added a caching on those fields for better performance):

    COPY CODE
    
    delete_transient( 'kleo_bp_meta_fields' );
    

    Just replace those profile field names in the code with our one custom ones.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Search By Selected Fields #1258
     SQadmin
    Keymaster

    Hello,
    Thank you for pointing that out. We are releasing Monday an update and we will include also this fix

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Registration Problems #1256
     SQadmin
    Keymaster

    I am glad it works now.
    Yes the default role should be Subscriber

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Building search queries for non-dating sites #1255
     SQadmin
    Keymaster

    Hello,
    The form styling doesn’t allow to set multiple values in the select.
    We can guide you on allowing multiple select but the form won’t be so stylish.
    Let me know if you want that .

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Want to know the colour code ? #1254
     SQadmin
    Keymaster

    By default when you install the theme the colours are already set.
    If you need to import the other demo styles please check this topic:
    https://archived.seventhqueen.com/forums/topic/export-other-sweet-date-colour
    Be careful because when you import the styles you’ll lose all your settings.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Main menu and Love Heart #1253
     SQadmin
    Keymaster

    Hi Jeremie,
    I really tried to give you as much info to accomplish what you need and I don’t think by that you can say I don’t care but anyway let’s take the initial questions again and see where you have problems:

    1. How can I make the main menu look a bit bigger than they are right now?
    To do that you don’t need to edit any file, you just need to go to your WordPress admin and then click the “Sweetdate” menu, then go to “Styling options” then at the bottom of the page you have “Quick css” section where you need to paste the code:

    COPY CODE
    
    .top-bar ul > li a:not(.button) {font-size:14px;}
    

    3. When a user login, he or she should be redirect to their profile, how can I achieved that?
    This one you said it works.

    We will release an update Monday that will include some changes to the way the profile tabs are rendered and it will allow to reorder the tabs or add another with just some small lines of code.
    Let me answer the questions bellow Monday when the new update will be available. Hope that is ok with you. Thanks

    2. The site has a love heart allover, how can I remove that since I’m using the theme as project management platform.
    4. When users are on their profile area, they need to see the about me tab immediately instead of clicking to see it. How can I achieved that?
    5. Last but not the least, I’ve been having trouble with the profile tabs, only the about me shows next to the photos even when I’ve added all the info. How can I shop up the other tabs?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Registration Problems #1244
     SQadmin
    Keymaster

    Hi and thank you very much.
    You need to enable registration on you website from Settings -> General and all buttons will appear.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: logo resize #1239
     SQadmin
    Keymaster

    Hi,
    You can set your canvas to 294×108 even if the logo is smaller like this http://d.pr/i/2xiN, you need to edit this in a graphic editor app or you can send us at themesupport@seventhqueen.com and we will resize for you.

    Regards,
    Robert

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Want to know the colour code ? #1237
     SQadmin
    Keymaster

    Hi, there are more elements, you refer to a specific item?
    For pink color is #ff0461;
    For blue color is #0296c0.

    Regards,
    Robert

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: edit country list #1233
     SQadmin
    Keymaster

    Hi,
    Yes you can edit from Admin -> Users -> Profile fields
    Or phpmyadmin table wp_bp_xprofile_fields

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

    Hi,
    Maybe because of an error caused by other plugin the page doesn’t load completely. Try disabling all other plugins and see what happens

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Building search queries for non-dating sites #1229
     SQadmin
    Keymaster

    Hi,
    You need to set the matching fields with “I am a” and “Looking for” fields in order the search to work correctly.
    This is required because If I select Looking for “Student” I want the search to return users that have selected “Student” in the “I am a” field, not in the “Looking for” field.

    The search should work fine. If you can’t figure it out give us am email with your website and some access to it at themesupport@seventhqueen.com

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 2,201 through 2,240 (of 2,655 total)

Log in with your credentials

Forgot your details?