Forum Replies Created

Viewing 40 posts - 5,801 through 5,840 (of 8,607 total)
  • Author
  •  Abe
    Keymaster

    can;t you see this line in your code that needs to be changed??
    return home_url().’/register’;

    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 redirect user after login to members page? #17786
     Abe
    Keymaster

    then just change the code:

    COPY CODE
    
    /* Filter the redirect url for login*/
    add_filter("login_redirect","kleo_redirect_to_profile",100,3);
    function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){
    /*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/
        if(!is_super_admin($user->ID))
            return 'http://mysite.com/members';
        else
            return $redirect_to_calculated; /*if site admin*/
    }
    

    replace http://mysite.com/members with your own
    This needs basic PHP/WORDPRESS 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: Hi. how can i change color and size sidebar ..?? #17785
     Abe
    Keymaster

    PS: @robblundell in Sweetdate – Styling options you have the sidebar section where you can style it

    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: Hi. how can i change color and size sidebar ..?? #17783
     Abe
    Keymaster

    @robblundell this topic is for KLEO, please create a different topic in the right theme 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: attachments option not appearing #17782
     Abe
    Keymaster

    Sorry for the late reply.
    Try addressing the rtMedia guys for that. We are using https://wordpress.org/plugins/gd-bbpress-attachments/ plugin in our support forum

    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, You can put a background in Sweetdate – Styling options – in the main section set your background

    This CSS from this reply here will center the logo: https://archived.seventhqueen.com/forums/topic/centered-logo-no-menu-no-loginregister-buttons/#post-15353

    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: Turn off Responsible/Mobile Feature #17775
     Abe
    Keymaster

    This css should make a fix width for the site:

    COPY CODE
    
    .kleo-navbar-fixed .kleo-main-header, .kleo-navbar-fixed .page-boxed .kleo-main-header, .container, .kleo-page {
        width: 970px;
    }
    body, html {
        overflow: inherit;
    }
    

    Also you can remove this line from header.php

    COPY CODE
    
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    

    And you can also remove all media queries from assets/css/app.css from the end of the file
    Also assets/css/bootstrap.min.css has media queries and you can try replacing the contents with one from https://github.com/bassjobsen/non-responsive-tb3/blob/master/bootstrap.min.css

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

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

    in reply to: Turn off Responsible/Mobile Feature #17774
     Abe
    Keymaster

    I am doing some tests and come with a solution.

    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 mark topic in bbpress ? #17763
     Abe
    Keymaster

    Hi, See this topic: https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status

    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: Futured image #17762
     Abe
    Keymaster

    try setting WP_DEBUG to false in wp-config.php since a notice is generated from bbpres 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: Useful Plugins #17761
     Abe
    Keymaster

    Making this topic sticky. Thanks guy_fraser

    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: Showcase KLEO #17760
     Abe
    Keymaster

    maybe

    .alignleft.size-full {
    padding-bottom: 10px;
    }g

    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: Nav menu roles plugin #17759
     Abe
    Keymaster

    Hi, Yes you are right @dpk888 it is because of the mega menu option since this is the way worpdpress handles the menu customization in admin. We made it compatible with https://wordpress.org/plugins/menu-items-visibility-control/

    If you want that plugin and disable the mega menu you can comment this line 172 in wp-content\themes\kleo\lib\theme-functions.php
    //require_once(KLEO_LIB_DIR . ‘/menu-custom.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: Membership settings #17756
     Abe
    Keymaster

    I see what you mean now. You haven’t detailed the problem so I couldn’t understand. See this topic to customize those fields from the memberships table: 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: Confused by the 404 template #17755
     Abe
    Keymaster

    That will be nice and will write it down for a future update. WordPress by default gets the 404.php template from the theme

    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: Problems With WooCommerce #17754
     Abe
    Keymaster

    Hi, Are you sure Woocommerce plugin is active? Please check again since if the plugin is active it should appear under Theme options – Woocommerce. Try to see if the wp-content/plugins/woocommerce folder is correct and there are no other sub-folders involved, something like wp-content/plugins/woocommerce/woocommerce

    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

    Those are the action priority as the script executes them in that order. More: http://codex.wordpress.org/Function_Reference/add_action

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

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

    in reply to: Kleo bigger menu and adding log in #17752
     Abe
    Keymaster

    I see last update for tinyMce is on 2014-4-29 and should be compatible with WP 3.9. This has nothing to do with the theme used since it just modified WordPress behavior.

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

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

    in reply to: Kleo bigger menu and adding log in #17751
     Abe
    Keymaster

    Hi, sorry for the late reply.

    To increase font size on the menu please see my CSS from this reply: https://archived.seventhqueen.com/forums/topic/kleo-setting-header-height-defining-navigation-font-size/#post-14899

    2. Add login or other related Buddypress links to the menu by going to WP admin – Appearance – Menus and you should have a Buddypress accordion item to the left. If you don’t see that enable it from Screen options – Buddypress

    We will test plugin that but it can’t come from the theme and it should be a plugin 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: Header Styling Issues #17750
     Abe
    Keymaster

    Please update your Visual Composer plugin by redownloading the theme and getting the latest plugin version from that package. more details here: https://archived.seventhqueen.com/forums/topic/steps-to-update-kleo-theme/#post-12165

    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: No Kleo Drop down on visual editor #17749
     Abe
    Keymaster

    Hi, it should appear if you have the latest installed as you stated. Try clearing your cache from the browser

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

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

    in reply to: Members Groups not working #17748
     Abe
    Keymaster

    Hi, As you see in the notice from that page you have to set a pretty Permalink structure. Go to Settings – Permalinks and set a pretty permalink like Post name

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

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

    in reply to: Making BuddyPress Community More Exciting! #17746
     Abe
    Keymaster

    right now you can only have auto-generated numbers for members statistics.
    [kleo_bp_member_stats field="Field name" value="Field value" online=true|false]
    [kleo_total_members]
    This you can put instead of the static numbers

    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: CSS glitch: contact form and icon #17744
     Abe
    Keymaster

    we tested it and should be fixed in upcoming version

    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, see if works with our fix by replacing this file wp-content\themes\sweetdate\custom_buddypress\kleo-bp-search.php with the one from attached 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.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Group avatar crop tool broken? #17736
     Abe
    Keymaster

    Hi, We managed to fix this. There was a CSS issue and now should be fine. Until next update please update wp-content\themes\kleo\buddypress\css\buddypress.css file content with the one attached.

    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.

    Attachments:
    You must be logged in to view attached files.
    in reply to: problem with facebook registraion #17728
     Abe
    Keymaster

    The file is modified, please re download the content

    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: problem with facebook registraion #17725
     Abe
    Keymaster

    Hi @thomasrielly87
    please try with the new file now

    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: problem with facebook registraion #17721
     Abe
    Keymaster

    Have you tried with the new file? Try deleting your cache since it should 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: Best seo plugin #17719
     Abe
    Keymaster

    @ututorco check your email since we get Delivery failure reports to the emails sent. I guess your email is full

    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 replace this theme file content with the content from the file attached:
    – wp-content\themes\kleo\kleo-framework\lib\function-facebook-login.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.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Problem with Facebook login integration #17714
     Abe
    Keymaster

    Please see the fix here: https://archived.seventhqueen.com/forums/topic/problem-with-facebook-registraion

    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 reg #17713
     Abe
    Keymaster

    Please see the fix here: https://archived.seventhqueen.com/forums/topic/problem-with-facebook-registraion

    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: problem with facebook registraion #17712
     Abe
    Keymaster

    Hi, That was the solution for KLEO theme, sorry. I have updated my reply with the correct path and 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: Gravatar error Error 0001. #17675
     Abe
    Keymaster

    Hi, It could be a plugin you use or just the queries for the gravatar images on your page

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

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

    in reply to: View questions about Sweetdate theme installations #17673
     Abe
    Keymaster

    Hello, glad you figured 1 out.
    for 2. please read this topic: 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.

     Abe
    Keymaster

    It could be a problem with your database collation if those strings are not saving right since WordPress should support all types or chars. Try settings all database tables to utf8_general_ci

    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 to translate paidmembership pro headers #17670
     Abe
    Keymaster

    That is the level name as you added in WP admin – Memberships. It should be enough just to change its name by editing it.

    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 re-position Home Search form? #17665
     Abe
    Keymaster

    Hi, it is to the left right now. Anyway you can edit the template from wp-content\themes\sweetdate\page-parts\home-search-form.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.

     Abe
    Keymaster

    The top menu can be disabled from individual pages so go ahead and edit those pages and enable the top menu if it is disabled from Theme general settings – Display settings – Top bar status

    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 - 5,801 through 5,840 (of 8,607 total)

Log in with your credentials

Forgot your details?