Forum Replies Created

Viewing 40 posts - 6,241 through 6,280 (of 8,607 total)
  • Author
  • in reply to: Visual Composure Conflict #15766
     Abe
    Keymaster

    Hmm. that is strange. it happens on all pages or just that? Try to create the elements again or check your installed plugins to see if it conflicts with one of them

    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 CSS class in menu disable #15765
     Abe
    Keymaster

    Hi, I have created a topic especially for this and you should see how to change the icons for Buddypress menu:
    https://archived.seventhqueen.com/forums/topic/change-buddypress-navigation-menu-icons

    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: Editing sections ( Rows ) on the webistes #15763
     Abe
    Keymaster

    Great 🙂 Glad you figured it out. You can edit each row from the Visual editor and have a color or image background

    Topic closed.

    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: Cannot Auto-Update Theme #15761
     Abe
    Keymaster

    Once you enter the username and the API key the update should appear under Dashboard – Updates. Try logging out and logging in again

    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 menu text color #15760
     Abe
    Keymaster

    Add this CSS to child theme/ style.css or in WP admin – Theme options – Quick css:

    COPY CODE
    
    .navbar-transparent .navbar .navbar-nav > li > a, .navbar-transparent .navbar .navbar-nav .caret:after {
    color: #333;
    }
    
    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, I have create a topic especially for this: https://archived.seventhqueen.com/forums/topic/change-buddypress-navigation-menu-icons

    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 BuddyPress navigation menu icons #15756
     Abe
    Keymaster

    To add icons to new items added by plugins you need to inspect the element using Chrome browser, get the ID of the specific list item and follow the above example.

    Example to add for Buddypress Follow plugin that adds two new navigation items, Followers and Following

    /* Following icon */
    #buddypress div#item-nav ul #members-following-personal-li a:before {
        content: "\E98F";
    }
    /* Followers icon */
    #buddypress div#item-nav ul #members-followers-personal-li a:before {
        content: "\E995";
    }
    
    
    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 BuddyPress navigation menu icons #15753
     Abe
    Keymaster

    Fist thing, Kleo uses Fontello for Vector icons.

    To see the icons that are included follow the next steps:
    1. Go to http://fontello.com/
    2. Click on the litte tool icon at top and Import
    3. Go to the theme main downloaded package from Themeforest in Assets/Fontello and select the font-icons.json
    4. Now you’ll see all the icons that are available with a rounded border.

    All the icons are added by CSS, so you need to add some CSS rules to change the default icons defined by us.
    This is the default CSS for the icons:

    COPY CODE
    
    #buddypress div#item-nav ul #activity-personal-li a:before,
    #buddypress div#item-nav ul #home-groups-li a:before {
    	content: "\e8ed";
    }
    #buddypress div#item-nav ul #xprofile-personal-li a:before {
    	content: "\e98e";
    }
    #buddypress div#item-nav ul #notifications-personal-li a:before {
    	content: "\e863";
    }
    #buddypress div#item-nav ul #messages-personal-li a:before {
    	content: "\e98c";
    }
    #buddypress div#item-nav ul #friends-personal-li a:before {
    	content: "\e98f";
    }
    #buddypress div#item-nav ul #groups-personal-li a:before {
    	content: "\e995";
    }
    #buddypress div#item-nav ul #forums-personal-li a:before,
    #buddypress div#item-nav ul #nav-forum-groups-li a:before {
    	content: "\e97b";
    }
    #buddypress div#item-nav ul #buddydrive-personal-li a:before,
    #buddypress div#item-nav ul #nav-buddydrive-groups-li a:before {
    	content: "\e8d7";
    }
    #buddypress div#item-nav ul #media-personal-li a:before,
    #buddypress div#item-nav ul #rtmedia-media-nav-groups-li a:before {
    	content: "\e8c5";
    }
    #buddypress div#item-nav ul #settings-personal-li a:before,
    #buddypress div#item-nav ul #admin-groups-li a:before {
    	content: "\e98b";
    }
    #buddypress div#item-nav ul li.dropdown a:before {
    	content: "\e97c";
    }
    #buddypress div#item-nav ul #members-groups-li a:before {
    	content: "\e995";
    }
    #buddypress div#item-nav ul #invite-groups-li a:before {
    	content: "\e991";
    }
    #buddypress div#item-nav ul #achievements-personal-li a:before {
    	content: "\e996";
    }
    #buddypress div#item-nav ul #blogs-personal-li a:before {
    	content: "\e802";
    }
    #buddypress div#item-nav ul #articles-personal-li a:before {
    	content: "\e870";
    }
    

    To override an icon, lets say the Activity icon:
    – we identify it from list above and copy the code
    – go to Fontello and get the code for your new icon by going to the Customize codes tab
    – change the copied text with the new value
    – add this CSS to your child theme/style.css
    Example to replace the Activity icon with a heart icon:

    COPY CODE
    
    #buddypress div#item-nav ul #activity-personal-li a:before {
    	content: "\E80F";
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution

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

    in reply to: rtMedia Pro: Attributes and View text color #15749
     Abe
    Keymaster

    One question. How did you get that Location text there?

    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 need to make some conditions in the functions that renders the horizontal search form. PHP file is located in: wp-content\themes\sweetdate\custom_buddypress\kleo-bp-search.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: rtMedia Pro: Attributes and View text color #15744
     Abe
    Keymaster

    Hi, We will adjust that text in next theme update. 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: Non standard members #15740
     Abe
    Keymaster

    Hi, Try this code from the topic and adjust the levels ID: https://archived.seventhqueen.com/forums/topic/show-registered-members
    That should show only the users with membership in the members 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: BadgeOS compatible #15739
     Abe
    Keymaster

    You need to make the changes since this will be available in 1.5 version available in May

    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

    What plugins do you have active? Have you followed my advice to deactivate them?

    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: Revoslider and search form – please help me. #15701
     Abe
    Keymaster

    It is our template but customizing Revolution slider has nothing to do with it. I said to play with the height because it depends on your slides so I can’t give you an exact value so you are the one can determine 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.

    in reply to: Hide the profile "about field" when logged in #15699
     Abe
    Keymaster

    We will think of something to add as a feature in next updates related to 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.

    in reply to: Increase size of main menu #15698
     Abe
    Keymaster

    Great, try the updated code above

    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 admin #15694
     Abe
    Keymaster

    You should activate the child theme as you see in the video tutorial https://archived.seventhqueen.com/video-tutorials and in the documentation. After that you connect by FTP to your server and add the code to wp-content/themes/sweetdate-child/functions.php right before the closing php tag ?>

    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 update to the latest version of the theme or try to disable some plugins you might have installed by renaming them from wp-content/plugins by connecting trough FTP to your server.

    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: Sensei Theming Integration #15690
     Abe
    Keymaster

    Hi, Please try these attached templates and let us 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.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Increase size of main menu #15688
     Abe
    Keymaster

    Hi, to increase the menu font size add this css to the child theme/ style.css or in WP admin – Theme options – Quick css:

    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: youtube/soundcloud etc window size, very large #15687
     Abe
    Keymaster

    Hi, you can try editing this theme file wp-content\themes\kleo\assets\js\app.js and commenting this line:
    $(“.post-content, .activity-inner, .article-media, article”).fitVids();
    to
    //$(“.post-content, .activity-inner, .article-media, article”).fitVids();

    then go and edit wp-content\themes\kleo\functions.php and set line 18:
    $content_width = 1200;
    to something smaller like
    $content_width = 400;

    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: Restrict users profile #15686
     Abe
    Keymaster

    Hi, sorry for the late reply with the Easter.

    With the theme you can only do that with the Paid memberships plugin and redirect user to the Levels page.

    Other than that you need to implement a code to do that custom request.

    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: Modal Login #15683
     Abe
    Keymaster

    Hi, We have planned to add this and will be available probably in May

    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: Shopping Cart Icon & Hover from Kleo #15680
     Abe
    Keymaster

    Hi, We are releasing these days an update for WordPress 3.9 and Buddypress 2.0
    That cart is custom made by us and not using a plugin but you can try that and see how it looks. We will do our best to add it to Sweetdate 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: BuddyPress Profile Progression #15679
     Abe
    Keymaster

    That should be related to the plugin and not the theme. Contact the developer, check your cache

    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: Centered logo, no menu, no login/register buttons #15678
     Abe
    Keymaster

    What is you site? To see if you really added them

    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 Question #15672
     Abe
    Keymaster

    By PHP adding:

    <?php kleo_fb_button();?>

    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 avatar not showing on facebook register #15671
     Abe
    Keymaster

    @carecities, please update to latest theme version and when existing users will login again they will have the avatar

    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: drop-down list problem on mobile #15669
     Abe
    Keymaster

    @ututorco, this happens in the demo also? http://seventhqueen.com/demo/sweetdatewp
    Maybe is about some changes you did to the homepage

    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

    We will add them in next version. Right now that is not possible.

    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

    Sorry for the late reply, try talking at your hosting provider to increase PHP memory limit to 128MB recommended

    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 Carousel – Show Members Only With Avatars #15664
     Abe
    Keymaster

    We gave a working solution in the above link.

    Cheers

    Closing topic

    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: Quick profile navigation no loops #15663
     Abe
    Keymaster

    We will add the loop thing in a next update but can’t specify an arrival time

    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

    That link is wrong, I get another website not related to KLEO

    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, This could be caused by a JavaScript error. Look in your browser console for JS errors or give us the link to your site.

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

    Hi, We fixed this and will be available in 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: Register page editing #15645
     Abe
    Keymaster

    Use a plugin like Codestyling Localization that takes care of generating the .mo files automatically. If you are using Poedit for translation the Buddypress folder is located in wp-content/plugins/buddypress/bp-languages

    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: [HELP] Login Modal & Form Formatting #15644
     Abe
    Keymaster

    make sure to copy it without the < code > part

    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 Updates Change log #15642
     Abe
    Keymaster

    Version 2.6

    Features:
    – NEW Woocommerce option to choose page template for all Woocommerce pages. See the option in Sweetdate – Woocommerce and you can set a different layout like 3 columns page just for Woocommerce pages
    – NEW bbPress option to choose page template for all bbPress pages. See the option in Sweetdate – bbPress and you can set a different layout like 3 columns page just for bbPress pages
    – Fixed membership restriction that was not applying in some cases since 2.5 update
    – Fixed Age displaying wrong in the user profile when using Sweetdate in another language than the default English
    – Fixed rtMedia Like button in popup
    – Updated Revolution Slider to latest version 4.3.3 SkyWood

    File changes:
    assets/styles/app.css
    bbpress/css/bbpress.css
    bbpress/form-reply.php
    bbpress/form-topic.php
    bbpress/loop-single-forum.php
    bbpress/loop-single-reply.php
    bbpress/loop-single-topic.php
    bbpress-functions.php
    custom_buddypress/bp-functions.php
    framework/theme_options.php
    functions-pmpro.php
    functions-woocommerce.php
    page-parts/woocommerce-after-wrap.php
    sidebar-woocommerce.php
    style.css
    members/index.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.

Viewing 40 posts - 6,241 through 6,280 (of 8,607 total)

Log in with your credentials

Forgot your details?