Forum Replies Created

Viewing 40 posts - 5,401 through 5,440 (of 8,607 total)
  • Author
  • in reply to: Remove Date, Author and amount of comments #19274
     Abe
    Keymaster

    well this should be the function:

    COPY CODE
    
    function sweetdate_entry_meta() {
    	// Translators: used between list items, there is a space after the comma.
    	$categories_list = get_the_category_list( __( ', ', 'kleo_framework' ) );
    
    	// Translators: used between list items, there is a space after the comma.
    	$tag_list = get_the_tag_list( '', __( ', ', 'kleo_framework' ) );
    
    	$date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() )
    	);
    
    	$author = sprintf( '<a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a>',
    		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    		esc_attr( sprintf( __( 'View all posts by %s', 'kleo_framework' ), get_the_author() ) ),
    		get_the_author()
    	);
    
    	// Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    	if ( $categories_list ) {
                    echo '<li><i class="icon-calendar"></i> '.$date.'</li>';
                    echo '<li><i class="icon-user"></i> '.$author.'</li>';
                    echo '<li><i class="icon-heart"></i> '.$categories_list.'</li>';
                    if ($tag_list) echo '<li><i class="icon-tags"></i> '.$tag_list.'</li>';
                    echo '<li><i class="icon-comments"></i> <a href="'.get_permalink().'#comments">'.sprintf( _n( 'One comment', '%1$s comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) ).'</a></li>';
            }
            else {
                    echo '<li><i class="icon-calendar"></i> '.$date.'</li>';
                    echo '<li><i class="icon-user"></i> '.$author.'</li>';
                    if ($tag_list) echo '<li><i class="icon-tags"></i> '.$tag_list.'</li>';
                    echo '<li><i class="icon-comments"></i> <a href="'. get_permalink().'#comments">'.sprintf( _n( 'One comment', '%1$s comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) ).'</a></li>';
    	}
    
    }
    
    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: Fatal Error & Original Main menu fields #19273
     Abe
    Keymaster

    Hi, That could be from a plugin you are using. See this topic on wordpress site: http://wordpress.stackexchange.com/questions/44016/php-fatal-error-cannot-call-overloaded-function-for-non-object-in-wp-includes-c

    You can re-add those Buddypress related item menus from Appearance – Menus. If you don’t have a Buddypress section on the left, enable it from Screen options – 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: Remove Date, Author and amount of comments #19271
     Abe
    Keymaster

    You copied something wrong. copy just the function to the child theme functions.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: Showcase KLEO #19262
     Abe
    Keymaster

    thanks @stockaviator
    Looks promising.

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

    I entered your site and it has six columns. Check your caching

    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: PHP Notice on Profile Page #19254
     Abe
    Keymaster

    Hi, Try setting WP_DEBUG to FALSE in wp-config.php in development site
    We will fix that notice in next theme 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: Two condition search #19253
     Abe
    Keymaster

    Those statistics are based on profile names so if you change them you need to change the shortcodes too: https://archived.seventhqueen.com/forums/topic/homepage-online-members-status-icons-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: GeoNames autocomplete #19251
     Abe
    Keymaster

    Strange. I did a test with our geonames username and it worked. Make sure your username for geonames is valid

    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 vs Kleo #19250
     Abe
    Keymaster

    Hi, Clicking goes nowhere? We haven’t managed to access that page since it is restricted.

    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: Buttons issues #19249
     Abe
    Keymaster

    Hi, That green button should come from a change on yours since we haven’t managed to reproduce it. Try removing any custom codes added.
    Also you can inspect all your site elements in your Chrome browser using Inspect element tool and set a border-radius property to the elements you want to style

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

    That css goes in your sweetdate-child/style.css or in WP admin – Sweetdate – Styling options – Quick 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: Icons in Top Bar #19247
     Abe
    Keymaster

    Hi there. Those icons are added by editing your menu in Appearance – Menus, modifying the desired item name and adding the icon html in front of menu item Navigation label like:

    COPY CODE
    
    <i class="icon icon-mail"></i> Email
    

    All the icons available to be used can be see in the main package downloaded from Themeforest in Assets – Fontello – demo.html

    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

    Well in Buddypress plugin there should be nothing related to the theme since BUddypress plugin is standalone.
    Buddypress has its own translation files in wp-content/plugins/buddypress. In Codestyling Localization choose the Buddypress plugin to translate and not 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: Lightbox available in Kleo/Blog? #19243
     Abe
    Keymaster

    The PrettyPhoto css isn’t loaded by the theme, maybe another plugin adds it. For post galleries it should already been enabled but we enabled the lightbox now for every link with image inside

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

    Hi, Add this css to your kleo-child/style.css or in WP-admin – Theme options – Quick css:

    COPY CODE
    
    .kleo-main-header .navbar-header, .kleo-main-header .logo, .kleo-main-header .navbar-collapse, .kleo-main-header .navbar-collapse > ul {
        text-align: center;
        width: 100%;
    }
    .logo img { display: inline-block; }
    
    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 additional borders in visual composer #19239
     Abe
    Keymaster

    Hi, Your site is under maintenance. Try giving us a temporary user/pass or have the site enabled

    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: Glitch in style of bbPress forum replies ? #19238
     Abe
    Keymaster

    Hi, Share a link to that page to view it live

    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 Free Membership #19237
     Abe
    Keymaster

    Hi, You should leave the “anyone can register” checked if you want people to signup. Try adding a Captcha plugin at registration or plugins like Wanguard

    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, by default it gets post formats with image, gallery, video . add post_formats=all to the shortcode

    [kleo_posts_carousel cat="28" limit="4" post_formats="all"]

    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 Problem #19235
     Abe
    Keymaster

    Hi, Please share a link to that page since we did a test and went fine

    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: Any issues with iThemes Exchange? #19232
     Abe
    Keymaster

    Hi, we haven’ tested it but let us know if you find something related to the theme so we can fix it.

    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: Remove Date, Author and amount of comments #19211
     Abe
    Keymaster

    Hi, Thank you.
    You have to copy sweetdate_entry_meta function from sweetdate/functions.php into your sweetdate-child/functions.php and comment the lines that generate 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: Change Registration text #19204
     Abe
    Keymaster

    Hi there, indeed @beaudine that is available if you want to include the registration form in any other page.
    For the one on the home page you need to edit this file template to change the text: wp-content\themes\sweetdate\page-parts\home-register-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.

    in reply to: Menubar snapping to minified state on 1px scroll #19203
     Abe
    Keymaster

    Right now we don’t have a change log for future releases but we will create a topic for that. We came with some Visual composer fixes, menu improvements from your comments, new shortcodes.

    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 the space between body & menu #19201
     Abe
    Keymaster

    Hi there,

    1. Please see this fix until next theme update. https://archived.seventhqueen.com/forums/topic/dark-more/#post-18315

    2. Center the menu with this CSS

    COPY CODE
    
    .kleo-main-header .navbar-collapse ul,
    .kleo-main-header .navbar-collapse {
    text-align: center;
    width:100%;
    }
    

    3. I guess it is related to 1
    4. Sure, just leave the general setting with no transparency and edit that page and go to Theme general Settings – Display options and set the Transparent menu there and also maybe a custom logo

    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: Create fixed height text box with scroll bar #19199
     Abe
    Keymaster

    Hi, You need to find a plugin or develop this functionality yourself since that can’t be achieved by default with the theme.

    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: Cannot Access Theme Customise Page #19165
     Abe
    Keymaster

    Hi @gogeafrica
    sorry for the late reply. I can’t access that on your admin but try replacing this file content on your server with the content from the attached one: wp-content\themes\sweetdate\framework\widgets\widget_mailchimp.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.
     Abe
    Keymaster

    Hi, That you might want to check on Paid membership Pro site and ask the developer of the plugin.
    Thanks for the translation, send it to themesupport@seventhqueen.com

    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: Long Profile field names get cut off #19161
     Abe
    Keymaster

    Hi, that should be automatically performed by Buddypress. Put a link to that page to check

    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: Menu problem with mobile site #19158
     Abe
    Keymaster

    Hi, the menu color should be the one you set in Wp admin – Theme options – Styling options – Header 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: Forum menu not showing #19154
     Abe
    Keymaster

    Well that is added by bbPress and has nothing to do with the theme itself. Check your privileges or uninstall bbPress and reinstall 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: 2 things (problems) #19153
     Abe
    Keymaster

    Hi, There should be nothing from the theme to slow it down it that manner. Try looking in Chrome browser in the Net console what scripts are taking too much to load.

    we entered on your site and the top part appears. Maybe if you go to the homepage that is disabled from that specific page from Theme General options – Display options

    Update is coming on 10th June where the first image from the content with be shown as featured 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: Users can signup and access pages without paying #19152
     Abe
    Keymaster

    Hi, This is just how you configured your restrictions and it is not a bug. You should apply the restrictions to you buddypress components from Sweetdate – Mememberships and also each page has its own restriction setting.

    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: Scroll Down Indicator #19151
     Abe
    Keymaster

    Hi, You need a custom JavaScript code to make the appearance of that icon in case there is more content in the page. Try hiring a developer to make that functionality.
    Also see where our go top icon code in wp-content\themes\kleo\lib\theme-functions.php function kleo_go_up() and in wp-content\themes\kleo\assets\js\app.js goTop function

    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: PROBLEM – NOTHING IS RUNNING EXCEPT FIRST PAGE! #19150
     Abe
    Keymaster

    Hi, That sounds like a problem with your hosting and related to rewrite urls. Contact them and ask for their support on fixing 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: Ajax Search in menu problem #19146
     Abe
    Keymaster

    Hi, That is the functionality. members are not found when searching from the menu but only from the homepage search form or the /members page filters

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

    Put the access details here and 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: Use lightbox to display media bug #19136
     Abe
    Keymaster

    Hi, Do you have a link to your page with problems? It is related probably to any other plugins installed that are causing JS errors

    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: K-Elements Conflicting With Visual Composer #19134
     Abe
    Keymaster

    Yes the update will come around 10th June. Try updating the Visual composer plugin to its latest available version. we have attached it here and it should fix the Front-end editor issue. We are adding some more elements in the next version too

    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.

    Attachments:
    You must be logged in to view attached files.
     Abe
    Keymaster

    Hi, See this topic: http://buddypress.org/support/topic/changing-the-default-mystery-man-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.

Viewing 40 posts - 5,401 through 5,440 (of 8,607 total)

Log in with your credentials

Forgot your details?