Forum Replies Created

Viewing 40 posts - 8,561 through 8,600 (of 8,607 total)
  • Author
  • in reply to: Create Articles on landing page #8016
     Abe
    Keymaster

    Hello,
    Articles in Recent posts are the Posts you add from Admin area in WordPress. By default it shows only image,gallery and video post formats. To change that and show all formats you have to edit your Home page, find in the page content [kleo_posts_carousel] and replace it with [kleo_posts_carousel post_formats=all]

    For recommendations you should find a plugin.

    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 form fields! #8006
     Abe
    Keymaster

    Great. Thanks for the appreciations.

    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: Different home page for register and unregister users #8005
     Abe
    Keymaster

    Hi, I guess this has to to with the links in the menu. See this plugin to add conditionals in menu items: http://wordpress.org/plugins/menu-items-visibility-control/

    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: Users online problem #8004
     Abe
    Keymaster

    Thanks @willianlima83 for appreciating us 😉

    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: text on members directory #8003
     Abe
    Keymaster

    Hi,
    That happens when you don’t have any members in the result.
    If you want to change the logic you should change it in the file: wp-content/themes/sweetdate/members/index.php

    Regards,
    Abe

    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 Mentioning #8002
     Abe
    Keymaster

    Hi, Google-ing got this: http://premium.wpmudev.org/blog/daily-tip-how-to-remove-mentions-from-buddypress/

    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: about me tab disappeared #8001
     Abe
    Keymaster

    hi, Follow this tutorial if you want to choose what tabs to show: 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: About me tab #8000
     Abe
    Keymaster

    Hi, Make sure you use the latest theme version and follow this topic to choose which tabs appear https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image
    The first array will be the first one and the selected 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: Group send Invites #7998
     Abe
    Keymaster

    You should do a test install on the same server and see it is different,

    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 Feature Requests #7997
     Abe
    Keymaster

    Hi,
    1.You need to see what code is responsible for that and add it in sweetdate/members/members-loop.php
    2. Also that should be modified in the plugin. Ask them to help or try hiring a developer from microlancer

    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: Hide fields in Profile Accordion #7996
     Abe
    Keymaster

    Hi, you can change in wp-content/themes/sweetdate/members/single/profile/profile-loop.php

    COPY CODE
    
    <dt><?php bp_the_profile_field_name(); ?></dt>
    <dd><?php bp_the_profile_field_value(); ?></dd>
    

    with

    COPY CODE
    
    <?php if (bp_get_the_profile_field_name() != "Name") {?>
    <dt><?php bp_the_profile_field_name(); ?></dt>
    <dd><?php bp_the_profile_field_value(); ?></dd>
    <?php } ?>
    

    You can adapt the code to match your needs
    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: Expand Profile Accordian #7984
     Abe
    Keymaster

    Hi, Please replace file wp-content/themes/sweetdate/assets/scripts/app.js with this one https://archived.seventhqueen.com/files/app.js and it 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

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

    in reply to: Mobile Issue: White Space on the Right #7982
     Abe
    Keymaster

    That was because of the Buddypress Wall plugin. My solution is given above.
    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: turning off linking words in users profile text #7981
     Abe
    Keymaster

    Hi, Those links will appear by default. You probably have a text that is too long or something. Theme isn’t doing anything to stop them by default

    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: Get Old BuddyPress Buttons in Member Directory #7980
     Abe
    Keymaster

    Hi, with this code added to sweetdate-child/functions.php you will render the missing buttons for public and private message. They will require some styling

    COPY CODE
    
    add_action( 'bp_directory_members_item_last', 'bp_send_public_message_button', 12 );
    add_action( 'bp_directory_members_item_last', 'bp_send_private_message_button', 12 );
    
    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: individul page background image #7979
     Abe
    Keymaster

    Hi,
    Each page will have its own class in body tab. For example a page will have this class: page-id-658
    You can use that to add custom CSS and change the bg.

    .page-id-658 { background: url("/wp-content/themes/sweetdate/assets/images/patterns/p1_pattern.gif"); }
    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: w3c errors #7978
     Abe
    Keymaster

    Hello,
    Hi please replace these files content in the theme to fix the errors:

    wp-content/themes/sweetdate/custom_buddypress/kleo-bp-search.php with https://archived.seventhqueen.com/files/kleo-bp-search.txt

    wp-content/themes/sweetdate/framework/functions/facebook_login.php with https://archived.seventhqueen.com/files/facebook_login.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: Login popup keeps popping #7975
     Abe
    Keymaster

    I think that can come from an error in your templates. You should provide a link to your site to see it in 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: Users Online Page Problem #7974
     Abe
    Keymaster

    Hello,
    We haven’t added something to interfere with that.. maybe you installed a plugin or something

    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: How to set I am / looking for as a default when searching #7973
     Abe
    Keymaster

    We can’t promise anything. You can always hire a developer from microlancer for example to extend default functionalities.

    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: Locations #7972
     Abe
    Keymaster

    Hi, We have added the option for City auto completion base on Country. You will need to extend this functionality if you want also for States.
    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: Features making #7971
     Abe
    Keymaster

    Hi,
    1. Then have just one field named Sex and people would search for that

    2. Since v.2.3 you can have auto-complete for City field based on the selected Country. You need to extend that to use also regions. Enable auto-completion from Sweetdate – Buddypres

    3. Use a plugin like “Configure SMTP” to send trough your SMTP server.

    4. You need to develop your own functionality. The page for activating your account is wp-content/themes/sweetdate/registration/activate.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.

    in reply to: Duplicate pictures #7968
     Abe
    Keymaster

    Hi, There isn’t a really easy way of doing that. It will probably need a mechanism of picture recognition.

    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: City not showing #7967
     Abe
    Keymaster

    Great. Also see this topic on changing those fields if you need: https://archived.seventhqueen.com/forums/topic/member-directory-page-about-me-text-does-not-display

    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: Round page up #7966
     Abe
    Keymaster

    Hi,
    If you want to disable that, just delete from footer.php the line 124 that is a paragraph with “btnGoUp” id

    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: Horizontal scroll bar issue #7956
     Abe
    Keymaster

    Hi,
    Whole site looks messy. You might have changed something in the templates. Try re-installing the latest theme v.2.3

    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 registration flow #7955
     Abe
    Keymaster

    Hello,
    The thing is that you cannot checkout for a level before you have an account .. so going to checkout page and only after that to the register page is not possible.

    You can send users to the register page and after their first login redirect them to the levels page with this code added to sweetdate-child/functions.php

    COPY CODE
    
    function function_new_user($user_id) {
       add_user_meta( $user_id, '_new_user', '1' );
    }
    add_action( 'user_register', 'function_new_user');
    
    //The next function will check if it's the first login and redirect the user.
    
    function function_check_login_redirect($user_login, $user) {
       $logincontrol = get_user_meta($user->ID, '_new_user', 'TRUE');
       if ( $logincontrol ) {
          //set the user to old
          update_user_meta( $user->ID, '_new_user', '0' );
    
          //Do the redirects or whatever you need to do for the first login
          wp_redirect( pmpro_url(), 302 ); exit;
       }
    }
    add_action('wp_login', 'function_check_login_redirect', 10, 2);
    

    or

    PMPRO by default allows registration from the checkout page but you won’t use the Buddypress register page. To enable the default behaviour you need to replace the content of this file wp-content/themes/sweetdate/paid-memberships-pro/pages/checkout.php with 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: Hide Profile tab #7950
     Abe
    Keymaster

    Great 🙂

    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: Article Content, Page Content #7949
     Abe
    Keymaster

    Hello,
    Please provide links to the specific sections of your site so we can see what is the problem.

    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: log in button bottom of page #7948
     Abe
    Keymaster

    Hi, That should not be there. This is also v2.3 http://seventhqueen.com/demo/sweetdatewp/

    Maybe you added something trough the child 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.

     Abe
    Keymaster

    Hello, It may seem a bit slow because of some Javascript code that runs when you scroll the page.
    Try this:
    – Disable sticky menu from WP admin – Sweetdate – Layout settings – Sticky Menu – OFF
    – Change this files content with the new one provided by us:
    wp-content/themes/sweetdate/assets/scripts/app.js with https://archived.seventhqueen.com/files/app.js
    wp-content/themes/sweetdate/custom_buddypress/bp-functions.php with https://archived.seventhqueen.com/files/bp-functions.txt

    The thing with taking all other sites off I don’t think it is related to the theme and we haven’t heard this before. A WordPress site normally needs more than a shared hosting if you have many visitors.

    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: version 2.3 problems #7946
     Abe
    Keymaster

    @adam, we have checked all things reported by you but all looked good in the demo which is also updated to v.2.3. could be something with your changes but some of the things are really odd and we haven’t even changed styling in groups steps for example.

    7. If you have moved the buttonz to the top-bar then you just need to replace the old login buttons code with the new one from the header.php.
    In the new header.php search for

    COPY CODE
    
    <!--Login buttons-->
    

    to find the new code

    Let me know if you need anything else

    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: version 2.3 problems #7945
     Abe
    Keymaster

    That should not be from the update.. we haven’t modified anything that could allow that behaviour.

    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: version 2.3 problems #7944
     Abe
    Keymaster

    Hi @adam.
    See the changed files here: https://archived.seventhqueen.com/forums/topic/sweetdate-updates-change-log

    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: version 2.3 problems #7903
     Abe
    Keymaster

    Hi Adam
    We will analyze this issue and also put a file change log. I 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

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

    in reply to: Closed down sweetdate theme website #7877
     Abe
    Keymaster

    Sorry to hear that. I am sure it was not for nothing and you learned some things 😉
    Thanks for the help and kind words.

    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: update error #7865
     Abe
    Keymaster

    You are doing something wrong .. I see sweetdate-old there in some paths.
    Enable the default WP theme. You can upload the new updated Sweetdate and activate it after

    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: Conditional field #7864
     Abe
    Keymaster

    Hi, I think that can be done using this 3rd party plugin: BuddyPress user account type PRO

    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 Page is Blank #7862
     Abe
    Keymaster

    @JessicaHardy All buttons work fine. I don’t see any problem

    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: Google Web Font Loading Over HTTP Issue #7861
     Abe
    Keymaster

    Thempunch responded:
    Hi Seventh,

    This is something we’re working on fixing in the next update. Until then, send us an FTP login and we’ll update the necessary file to fix this for you.

    -Jason

    You want to give them the FTP details or ask them to give instructions to fix it yourself?

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

Log in with your credentials

Forgot your details?