Forum Replies Created

Viewing 40 posts - 5,481 through 5,520 (of 8,607 total)
  • Author
  • in reply to: Change Avatar colour when you hover #18995
     Abe
    Keymaster

    Great, glad you figured it out 😉

    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 don’t need to upload it by FTP and just follow the video tutorial or theme documentation. Extract the main file downloaded from THemeforest and you’ll see a WordPress folder with the theme kleo.zip archive

    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 Logo Resizing #18992
     Abe
    Keymaster

    Hi,
    Great, can’t wait to see your work.
    You could use a CSS with media query only for mobile devices and set a logo size there.
    you CSS should be like

    COPY CODE
    
    /* Smartphones (portrait and landscape) ----------- */
    @media only screen 
    and (min-device-width : 320px) 
    and (max-device-width : 480px) {
    /* Styles here*/
    .logo img {
        max-height: 60px !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: Members directory page with sidebar – How to #18991
     Abe
    Keymaster

    Changing to six will make the sidebar smaller. just tested 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: Upload Picture under profile #18990
     Abe
    Keymaster

    Try re-saving Settings – Permalinks and make sure you have pretty permalinks.

    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: Having troubles translating KLEO with WPML plugin #18989
     Abe
    Keymaster

    Hi, Those belong to Buddypress and you need to translate the BuddyPress plugin. Every plugin installed adds some strings in the theme. For example the Media link is also added by RtMedia plugin.

    More on Buddypress customization: http://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/

    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 download the additional pictures!? #18987
     Abe
    Keymaster

    Hi, There are some links from the popoup plugin and the image can be seen by inspecting the elements. See the screenshot

    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: How do member features relate? #18986
     Abe
    Keymaster

    Hi, we will try to guide you as much as I can

    1. You probably want to check a newsletter plugin like http://wordpress.org/plugins/newsletter-sign-up/
    2. Use recommended plugin Paid memberships Pro and follow the documentation that comes with the theme
    3. for forum you need bbPress but the restrictions will have to be done with the help of some code. See http://www.paidmembershipspro.com/2012/01/lockdown-bbpress-wp-plugin-forums-using-paid-memberships-pro/

    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: Site breaks when I update to PMPro 1.7.11 #18984
     Abe
    Keymaster

    Just updated and no problem found. See the error generated. Try settings WP_DEBUG to TRUE in wp-config.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: Multi-Select Box Profile Field Stopped Working #18983
     Abe
    Keymaster

    Instead of the check for each field type you’ll see a function that renders the html automatically

    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: Visual Composure Conflict #18982
     Abe
    Keymaster

    Please check it before posting since it is not working

    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: Multi-Select Box Profile Field Stopped Working #18980
     Abe
    Keymaster

    Please see my modified reply for the register file too. https://archived.seventhqueen.com/forums/topic/multi-select-box-profile-field-stopped-working/#post-17848

    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

    A JS error occurs on your site: jQuery(…).dialog is not a function
    Try asking plugin developers since there is nothing we can do related to plugins

    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

    DO you have a live site to see that hanging? since it can be debugged from the ajax 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: Edit Post-Meta and functions vs theme-functions #18947
     Abe
    Keymaster

    Hi, Yes, copying the function kleo_entry_meta to your child theme functions.php is the right way to override default theme function. This can be done with every function you see in the theme that is wrapped in a conditional if ( !function_existst(‘function_name’) ) {}

    That is a good idea to select which meta to appear. I wrote it down to keep it in mind

    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 colors in buttons #18946
     Abe
    Keymaster

    For the hover this is the CSS

    COPY CODE
    
    #call-to-actions .alert:hover, #call-to-actions .alert:focus {
        background: none repeat scroll 0 0 #ED0058;
        border: 1px solid #ED0058;
    }
    
    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: purchase code and sweetdate upgrade #18945
     Abe
    Keymaster

    Hello,
    Please put in WP admin – Miscellaneous your THemeforest username and API key and after that go to Dashboard – Updates and if a new version is available it will appear under the Themes section. Make a backup of the old files before the 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: Images are bigger when i post a new article #18943
     Abe
    Keymaster

    Hi, This should be the complete CSS to also center the image:

    COPY CODE
    
    img.attachment-kleo-full-width {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: auto;
    }
    
    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: Buddystream Plugin #18941
     Abe
    Keymaster

    Hi, we haven’t tested it but you can install it and see what problems you encounter.

    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: I want the "search bar" gone #18940
     Abe
    Keymaster

    Normally that should only appear in the /members page. You should try and un-check all the profile fields for the horizontal search form in Sweetdate – Buddypress

    Also the css to hide it is:

    COPY CODE
    
    #search-bar {
        display: none;
    }
    

    Try inspecting elements using Chrome to see site styles

    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: Force strong passwords ? #18939
     Abe
    Keymaster

    Login is done trough WordPress but the profile edit belongs to Buddypress(where you need to enforce 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: Footer adjustments #18938
     Abe
    Keymaster

    Hi, sorry for the late reply, i see you already figured it out and added
    #footer {
    height: 210px;
    }

    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 Do I Activate New Members? #18936
     Abe
    Keymaster

    Great.

    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: change text color of profile groups #18935
     Abe
    Keymaster

    Hi, You should make reference to the anchor tag like this:

    COPY CODE
    
    #profile-edit-form ul.button-nav li a {
        color: #FF0000;
    }
    
    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: Visual Composure Conflict #18923
     Abe
    Keymaster

    Can’t login with that 🙁 please check the credentials

    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: Password reset link not working #18919
     Abe
    Keymaster

    all requests are sent to wp-admin by default. See line 33 from wp-content\themes\sweetdate\framework\frontend.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: bbPress forum does not show first post of thread #18917
     Abe
    Keymaster

    Do a database backup since membership levels could be lost

    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: Visual Composer 4.1.2 – Error on load #18916
     Abe
    Keymaster

    @StefanDidak can you help us with temporary FTP access since we can’t reproduce this locally and so we can quickly come up with a fix?

    Thanks
    Mark the reply as private

    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: Dark & more #18914
     Abe
    Keymaster

    Hi, enable the sharing and edit wp-content\themes\kleo\page-parts\posts-social-share.php and remove all other span elements after the span with kleo-love

    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: Lightbox available in Kleo/Blog? #18913
     Abe
    Keymaster

    Hello, Since the Woocommerce update we changed the prettyPhoto plugin with Magnific so prettyPhoto is no longer used.
    You are referring to images added to the post content and that are linked to the larger version of the image? If that is the case we will modify the theme to open those images in Magnific popup.

    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: center logo #18912
     Abe
    Keymaster

    Hi, To center the logo it will require the menu to go under the logo. Is that what you want to achieve?

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

    @mogreen sorry man it is still not working, the credentials

    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: Search box #18910
     Abe
    Keymaster

    Hi, the search form template is found here in the theme if you need to make some changes: wp-content\themes\sweetdate\page-parts\home-search-form.php
    You could add a CSS rule to move it:

    COPY CODE
    
    
    .just-after-header .five.columns {
        margin-left: 200px;
    }
    

    See this topic from the FAQ to remove hearts in site: https://archived.seventhqueen.com/forums/topic/removereplace-the-love-hearts-in-site

    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, Maybe you enabled the maintenance mode from Theme options?

    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 can I change the colors on the notifications? #18907
     Abe
    Keymaster

    Hi,
    Those notifications can be changed by adding this CSS to your child theme style.css or in WP admin – Styling options – Quick css

    COPY CODE
    
    .kleo-message-count {
    
        background: #F00056;
    }
    .kleo-friends-req {
        background: #cccccc;
    }
    #header .kleo-notifications a {
        color: #FFFFFF !important;
    }
    

    The color of the form comes from the button color set in Styling options.
    Try adding at least three members and see how Latest members section looks

    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 customize profile page in KLEO #18906
     Abe
    Keymaster

    Hi,

    1. This is basically related to Buddypress navigation. See this: http://bp-tricks.com/snippets/code/arrange-group-profile-navigation-menu/

    2. That probably can be achieved with a combination of CSS rules based on some Buddypress classes added to the body tag.

    3,4. You need to edit wp-content\themes\kleo\buddypress\members\single\member-header.php and apply the required customizations
    5. Try asking Rtmedia guys, they should know the answer of that
    6. We will think of something for the next updates
    7. This probably won’t be an easy job since avatar crop script comes from Buddypress and I guess it would be a bit difficult

    For custom changes please try hiring a developer with PHP/Wordpress skills.

    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 customize rtMedia for KLEO #18904
     Abe
    Keymaster

    Hi there,
    Your questions are mostly related to rtMedia and not the theme so I will answer to the theme related ones or the ones I can help
    1. I think you can try to translate rtMedia plugin and see if changing the Media string helps.
    6. This could be customized by CSS. Inspect site elements with Chrome and apply the CSS rules in your kleo-child/style.css

    COPY CODE
    
    .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta {
        background: #FFFFFF !important;
    }
    .mfp-content #rtmedia-single-media-container .rtmedia-media {
        background: #FFFFFF !important;
    }
    

    Ask rtMedia guys for 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: Problem with buddypress login widget #18903
     Abe
    Keymaster

    I don’t see it in your kleo-child/style.css 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.

     Abe
    Keymaster

    That should be related to Buddypress. Use Codestyling localization and scan for strings. They should be 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

    Update: We are waiting for the next plugin update so we can hook to a JS event to trigger specific masonry scripts after Load more posts.

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

Log in with your credentials

Forgot your details?