Forum Replies Created

Viewing 40 posts - 6,441 through 6,480 (of 8,607 total)
  • Author
  • in reply to: PLEASE HELP. PHP CHANGE WHITE SCREEN #15036
     Abe
    Keymaster

    Hi, Please connect to your server by FTP and remove the code added in the child theme. That should fix 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: customize search form~ #15035
     Abe
    Keymaster

    Hi, Sorry for the late reply. This topic somehow skipped the tasks list.

    You can change all Profile fields from WP Admin – Users – Profile fields
    You can set the search for based on the added fields from WP admin – Sweetdate – 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: Question of a Facebook Button of register #15034
     Abe
    Keymaster

    Hi, Sorry for the late reply. Somehow this topic skipped our tasks list and found it right now.
    You can add these functions in your sweetdate-child/functions.php and change the text accordingly. It will override the default define one:

    COPY CODE
    
    function fb_register_button()
    {
    ?>
        <a href="#" class="facebook_connect radius small button facebook"><i class="icon-facebook-sign"></i>  <?php _e("Register using Facebook", 'kleo_framework');?></a>
    <?php
    }
    
    function fb_button()
    {
    ?>
        <a href="#" class="facebook_connect radius button facebook"><i class="icon-facebook-sign"></i>  <?php _e("LOG IN WITH Facebook", 'kleo_framework');?></a>
    <?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: Group Admin page display help? #14989
     Abe
    Keymaster

    Hi, We will do some tests and come back with a solution.

    Thank you

    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: Why are my avatars blurry in Groups Masonry? #14987
     Abe
    Keymaster

    Hi, It could be related to a setting of yours related to the avatar size. Take a look in wp-content/plugins/bp-custom.php and see if you have something defined that changes the size of the thumbnail or if the file exists

    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: styling missing from group members (buddypress) #14986
     Abe
    Keymaster

    hi, Yes we have this noted and will release it in next theme update. Sorry for that

    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 should read the instructions since that code does not make anything to the profile section. Only this CSS is to alter the profile look and make it rounded:
    #item-header-avatar .avatar {
    border-radius: 100%;
    }

    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 extra field in memberships table? #14946
     Abe
    Keymaster

    Taking the below code as example for the Shop restriction, “/^\/shop\/?$/” is the actual REGEX restriction restricting the /shop page.
    array(‘name’ => ‘shop’) tells the system to match the restriction with the settings you choose from Theme options – Memberships

    You will see that in the code, in the first part, the newly added Shop option to appear in Theme options – Memberships
    //NEW RESTRICTION SHOP page with name: shop

    COPY CODE
    
    //Restrict Shop page
    add_filter('kleo_pmpro_match_rules', 'kleo_my_custom_restrict2');
     
    function kleo_my_custom_restrict2($restrictions) {
        //regular expression for shop page
        $restrictions["/^\/shop\/?$/"] = array('name' => 'shop');
        return $restrictions;
    }
    
    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: Redirect after sign-up #14945
     Abe
    Keymaster

    That isn’t integrated in the theme. You should stick up with plugins for extra functionality.

    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: Activation Key page #14942
     Abe
    Keymaster

    This is not an activation problem so please open new topic if you can’t find a similar one.
    Please see this topic to enable registration in the checkout page: https://archived.seventhqueen.com/forums/topic/register-at-checkout-no-longer-available

    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 Level Expiration Date #14941
     Abe
    Keymaster

    Hi, If you charge by month then all the levels should be set to recurring, initial payment and recurring payment must be the same. After one month for example in level 1 the user should be charged again and so on.

    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 login error #14939
     Abe
    Keymaster

    That error comes from Facebook and you probably haven’t entered your site domain name where you are using the application. It must not have www. in front

    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: Single Featured Post Carousel Bug #14934
     Abe
    Keymaster

    hi, Please try with the 1.4 version since we have done some changes to the Carousel initialization to wait for the images to load.

    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: Updating theme #14932
     Abe
    Keymaster

    Thanks vcarlton, Your info is correct. You can also use the child theme to make custom template changes if you want, that way when updating you are no longer required to make the changes

    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: Issue importing slider demo content #14931
     Abe
    Keymaster

    Hi, That slider .zip file must be uploaded from Wp Admin – Revolution slider – Import slider

    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 menu item to buddypress subnav #14930
     Abe
    Keymaster

    Oh sorry about the confusion 🙂 Please try the Buddypress forums, I am sure there are similar topics

    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, We were planning to do this and we already created a sticky topic right now where you can quickly look for reported bugs that will be fixed in next theme version: https://archived.seventhqueen.com/forums/topic/sweetdate-bug-fixes-in-upcoming-updates

    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: A Splash or Landing page Only! #14925
     Abe
    Keymaster

    You can hide the breadcrumb Home with the css if you do not want to go into coding:

    COPY CODE
    
    .trail-begin {display: none;}
    

    Editing header.php you will find the logo and the link which is generated by the php function: get_home_url(). You can change that to match your needs

    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: Bug in visibility link in chrome browser #14923
     Abe
    Keymaster

    Hi, Do you have a site where we can see that? Please put a link to that page with the sidebar

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

    Hi efransen, you must put your exact field name, case sensitive, as defined 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.

    in reply to: shortcode Video button don't work in post #14921
     Abe
    Keymaster

    Please attach a screenshot and the code you added so we can help you

    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 menu item to buddypress subnav #14920
     Abe
    Keymaster

    Hi I see you have a similar topic and you said it worked:

    https://archived.seventhqueen.com/forums/topic/adding-menu-link-to-ap-admin-bar

    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: Activation – Not Working #14919
     Abe
    Keymaster

    Hi Afrostein, You are referring to the Sweetdate theme probably. Make sure you have mapped the Activate page under Settings – Buddypress – Pages.

    Also if you are using the memberships plugin make sure you haven’t applied any restrictions from edit 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: WordPress 3.8.2 #14916
     Abe
    Keymaster

    Haven’t encountered any problems in our tests so you can upgrade 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: Members info #14914
     Abe
    Keymaster

    Hi, Nice color combination 😉
    You need to see this topic and follow the instructions to show whatever fields you need in the profile page: 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: STEPS TO UPDATE KLEO THEME AND PLUGINS #14909
     Abe
    Keymaster

    Hi pvamaster, Please update the theme and see if the images show then.
    Just as an info, I see you have multi-site installed using Kleo theme and you require license for each site that is using the theme. 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: STEPS TO UPDATE KLEO THEME AND PLUGINS #14908
     Abe
    Keymaster

    Hi ccrawford13, Plugin update 4.0.5 is found in the Theme update v.1.4 that you can re-download from Themeforest. You will find the plugin in Plugins folder – js_composer.zip. You need to remove old plugin and upload the new one. You can do it by FTP by going to wp-content/plugins or from WordPress Admin – Plugins, remove the plugin and upload the new .zip 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: Custom page templates #14906
     Abe
    Keymaster

    Hi, All templates you copy from the main theme must stay in the exact folder structure in the child theme. So if you copy index.php then you copy it to the root of the child theme also.

    To create page templates, which in Kleo theme are stored in page-templates folder, you just copy to the child theme one existing page template like full-width.php and give it a different name. To appear in the dropdown for the Page template you must edit it and also change the Template name to a different one:

    COPY CODE
    
    /**
     * Template Name: Full-width New Name
     *
     * Description: Template withour sidebar
     *
     * @package WordPress
     * @subpackage Kleo
     * @author SeventhQueen <themesupport@seventhqueen.com>
     * @since Kleo 1.0
     */
    

    You can go with the page templates if you want, but using shortcodes could be useful in the future to change some things from that page quickly in another one.
    As for the system resources I don’t think it is such a big impact of performance but probably not using a shortcode and basically writing the code by hand in the template could be faster..

    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: Free membership #14904
     Abe
    Keymaster

    Hi, If you have your site free then you don’t need the Paid Membership Pro plugin and also you do not want to have the Levels page containing just one level.

    Thank you

    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 Tabs #14903
     Abe
    Keymaster

    Hi, There was a problem on Mac but it is resolved in version 1.4
    Make sure you have no JavaScript errors as sharmstr suggested by looking in your 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: account types #14902
     Abe
    Keymaster

    Hi, If you want to display it like in the image attached, you need to copy the template located in kleo\buddypress\members\single\member-header.php to your child theme following the same folder stucture.
    That template shows only on users profile page so you don’t need any conditions

    https://cdn.seventhqueen.com/sq-support/wp-content/uploads/2014/03/username-profile-page.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.

     Abe
    Keymaster

    Hi, Right now we do not have and option to add some padding to the logo but we will keep that in mind and add it to the next update.
    If you want to have extra top/bottom space you have two options:
    – go to Theme options – General settings – Quick CSS and add this small css rule that you can customize accordingly to your needs:

    COPY CODE
    
    .kleo-main-header .container {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    

    also if you have enabled the Sticky header you can lower the margin added above like this:

    COPY CODE
    
    .kleo-main-header.header-scrolled .container {
        margin-bottom: 5px;
        margin-top: 5px;
    }
    

    – edit the logo and add some more transparent space bottom and top to the image itself

    To adjust font size, this small CSS will do the trick:

    COPY CODE
    
    .navbar-nav > li > a {
        font-size: 14px;
    }
    
    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 subscription #14898
     Abe
    Keymaster

    Hi there,
    To have that levels page you need to install Paid Memberships Pro plugin. You have details on setting up the plugin in the included documentation. Basically after you install the plugin you go to Memberships – Pages and you can let the plugin to create the required pages. One of the created pages is Membership Levels.
    You define your own Levels under Membership – Levels and they automatically appear in the Levels page on front-end.
    Kleo has some extra settings to go with the plugin in Theme options – Memberships

    Let us know if you need extra info after you check the documentation too

    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: Link to contact form #14897
     Abe
    Keymaster

    Hi, You can put to the element this class that should trigger the contact form open: kleo-quick-contact-link
    Example:

    COPY CODE
    
    <a class="kleo-quick-contact-link" href="#" onclick="return false;">Click me</a>
    
    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: Modify icons #14895
     Abe
    Keymaster

    Hi, Yes you go to Fontello.com and import our JSON that you find in the main package downloaded under Assets > Fontello.
    After the import you will see marked the icons used with a rounded border. You have some instructions in documentation regarding replacing font files.

    We will also add an option to add your own fontello files from admin in next theme versions

    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, Thank you very much. We really appreciate it.
    When you activate the Transparent menu the the menu will be set to Fixed position, which means it will stay at top over all other elements so that is why you will see other elements under it. This options is best to be used when you want to achieve something like we have on our demo homepage where the slider goes under the menu: http://seventhqueen.com/themes/kleo/

    If you want just normal transparency set to the menu add this CSS:

    COPY CODE
    
    .kleo-main-header {
        background-color: rgba(0, 0, 0, 0.4) !important;
    }
    

    or this one to apply the transparency only when the header is scrolled down the page:

    COPY CODE
    
    .kleo-main-header.header-scrolled {
        background-color: rgba(0, 0, 0, 0.4) !important;
    }
    
    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: Backend editor popups not saving or closing #14893
     Abe
    Keymaster

    Hi, Do you have WordPress 3.9 beta? We have seen this using that testing WordPress version. Please update Visual Composer plugin that you will find in the new theme version 1.4. In the main package downloaded from Themeforest you will see a folder named Plugins and js_composer.zip is the plugin. To update it you can remove old plugin from your site and re-upload the new 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: Control friends privacy #14891
     Abe
    Keymaster

    Hi, See this link: http://buddypress.org/support/topic/how-to-limithide-the-friends-tab-only-to-account-owner-admin/
    It hides it from other users but even if you are friends it will still be hidden.

    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: popup login window just spins #14890
     Abe
    Keymaster

    Hi, I don’t think it is because of the update since we haven’t done any change to that mechanism. It could be related to a plugin that is restricting access to wp-admin ajax requests.

    But we have created a fallback to normal login if the AJAX request isn’t possible. Until next update please replace this file contents wp-content\themes\sweetdate\assets\scripts\app.js with this one https://archived.seventhqueen.com/files/app.js

    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: Mega Menu #14888
     Abe
    Keymaster

    Hi rkco, Please update to 1.4 since we made it compatible with the control visibility 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.

Viewing 40 posts - 6,441 through 6,480 (of 8,607 total)

Log in with your credentials

Forgot your details?