Forum Replies Created

Viewing 40 posts - 201 through 240 (of 1,943 total)
  • Author
  • in reply to: How to move social buttons to right top menu? #31056
     Catalin
    Moderator

    add this to your style.css file from your child theme:

    COPY CODE
    
    
    .navbar-header
    {
      margin-left:40% !important
    }
    
    

    you want to center also the logo when sticky menu… you don’t have the menu added.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Pages Not Updating #31055
     Catalin
    Moderator

    Hello gmaristela,

    I will answer your question here but for the future, please open a new thread.

    for selling downloadble products please take a look here:

    http://docs.woothemes.com/document/digitaldownloadable-product-handling/

    and for product retailers option, please take a look at this add-on:

    http://www.woothemes.com/products/product-retailers/

    Let me know if this helps.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Change values of the Sex Fields #31050
     Catalin
    Moderator

    Hello,

    For achieving this you need to go yo (Users > Profile fields), edit the “I am a” field and change it based on your needs. Take a look at my screenshots for more details.

    Let me know if this help.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: How to move social buttons to right top menu? #31048
     Catalin
    Moderator

    I still need a link to your website to be able to provide you the code you are requesting… 🙂 you can reply as private if you don’t want the link to be public.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Verification emails #31047
     Catalin
    Moderator

    I see what you mean now. Please take a look at this link:

    http://jesin.tk/custom-buddypress-activation-email/

    it explains you how to customize the BuddyPress activation email.

    Let me know if this helps.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to move social buttons to right top menu? #31044
     Catalin
    Moderator

    please send me admin credentials to your website to take a look… reply as private for security reasons. 10x

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: language file? #31043
     Catalin
    Moderator

    Hello,

    A great tool for this is:

    https://wordpress.org/plugins/codestyling-localization/

    you can translate with this plugin strings from the theme and also from the plugins used.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Mobile Responsive? #30998
     Catalin
    Moderator

    it depends on e=what resolution you have on your mobile and what device are you using… btw, the print screen is made on what device?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to configure numeric pagination displayed #30997
     Catalin
    Moderator

    Hello,

    Add this to your functions.php code:

    COPY CODE
    
    
    function kleo_pagination( $pages = '', $echo = true ) {
    
        $output = '';
        if( $pages == '' )
        {
            global $wp_query;
            $pages = $wp_query->max_num_pages;
            if( ! $pages )
            {
                $pages = 1;
            }
        }
    
    	// Don't print empty markup if there's only one page.
    	if ( $pages < 2 ) {
    		return;
    	}
    
    	$paged        = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1;
    	$pagenum_link = html_entity_decode( get_pagenum_link() );
    	$query_args   = array();
    	$url_parts    = explode( '?', $pagenum_link );
    
    	if ( isset( $url_parts[1] ) ) {
    		wp_parse_str( $url_parts[1], $query_args );
    	}
    
    	$pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link );
    	$pagenum_link = trailingslashit( $pagenum_link ) . '%_%';
    
    	$format  = $GLOBALS['wp_rewrite']->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : '';
    	$format .= $GLOBALS['wp_rewrite']->using_permalinks() ? user_trailingslashit( 'page/%#%', 'paged' ) : '?paged=%#%';
    
    	// Set up paginated links.
    	$links = paginate_links( array(
    		'base'     => $pagenum_link,
    		'format'   => $format,
    		'total'    => $pages,
    		'current'  => $paged,
    		'mid_size' => 1,
    		'add_args' => array_map( 'urlencode', $query_args ),
    		'prev_text' => __( '«', 'kleo_framework' ),
    		'next_text' => __( '»', 'kleo_framework' ),
    		'type' => 'array'
    	) );
    
    	if ( $links ) {
            $output .= '<nav class="pagination-nav clear" role="navigation">'
                . '<ul class="pagination">';
    
            foreach ($links as $link) {
                $output .= '<li>' . $link . '</li>';
            }
    
            $output .= '</ul>'
                . '</nav><!-- .navigation -->';
        }
    
        if ($echo ) {
            echo $output;
        }
        else {
            return $output;
        }
    
    

    and increase this line value:

    COPY CODE
    
    
    'mid_size' => 1,
    
    

    to a higher number.

    let me know if this works.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Mobile Responsive? #30992
     Catalin
    Moderator

    I suggest you to use a simulator for mobile devices for a correct view…

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Use the right sidebar layout on my blog page #30986
     Catalin
    Moderator

    Hello,

    You need to modify index.php file based on your needs… for a strucure to guide on, you can take a look at this file:

    \themes\sweetdate\page-templates\full-width.php

    you need some development skills tho…

    thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Manual membership upgrade #30976
     Catalin
    Moderator

    Please take a look here:

    https://archived.seventhqueen.com/forums/topic/upgrade-membership

    to force users to pay for the remaining difference you should set an expiration date for the membership level and in this way they should do the check out again with the new amount.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Guest access to forum topics #30974
     Catalin
    Moderator

    Hello,

    I see that now it works proper… the issue may come from a plugin because this is not default functionality…

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Achievements does not assign points #30967
     Catalin
    Moderator

    this is not related to the theme functionality, it comes from a plugin and you should ask the developer who made it about your issue.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Some Issues. Recently purchased theme. #30966
     Catalin
    Moderator

    this week you will be able to download the update with the fix. 10x

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Defer Javascript #30965
     Catalin
    Moderator

    please take a look at this:

    https://wordpress.org/plugins/bwp-minify/

    the reason of that happening is because several plugins add code in header instead of adding it in footer as out theme is coded… the plugin I suggested should do the work as intended

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Using MyCred #30963
     Catalin
    Moderator

    hello,

    I tested this and this issue is related to the my cred plugin functionality… please ask this question to their support forum

    thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Catalin
    Moderator

    Hello,

    Please update to the 2.0 version and let me know if this problem still occurs… I deactivated some plugins so please activate them only after you do the testing with the new version installed… let me know how this goes.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to change Default Image Slider Speed #30957
     Catalin
    Moderator

    @sharmstr: good point, the modifications should be done first in the app.js file and then, using this:

    http://refresh-sf.com/yui/

    should be generated the compressed file and then replace this with the old one.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Change 'Portfolio' slug #30956
     Catalin
    Moderator

    Hello,

    you can use this plugin for renaming the word portfolio:

    https://wordpress.org/plugins/codestyling-localization/

    let me know if this works

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to change Default Image Slider Speed #30954
     Catalin
    Moderator

    Hello,

    The speed can be modified from this file:

    wp-content\themes\kleo\assets\js\app.js

    around line 254:

    COPY CODE
    
    
    scroll: {
    items: 1,
    duration: 600,
    //fx: "crossfade",
    easing: "easeInOutExpo",
    wipe: true
    },
    
    

    the number you need to modify is 600

    we will add this as a standard functionality on a future update also… thank you for pointing this out.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Display ONLY Members from Opposite Sex #30943
     Catalin
    Moderator

    I was referring to the theme last version that we will release ASAP… and you will be able to upload with the fix.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Bunch of Questions #30939
     Catalin
    Moderator

    Hello,

    I will try to give you answers to all your questions…

    the grey box comes from the fact that you should have a transparent background for the .png you are using… you will need to modify that in Photoshop (not a related theme problemm tho)

    the small logo cannot be seen because you did not upload it in the admin panel of the theme settings ( see attachment )

    404 error and the aching problem may come from the various plugins you have installed… you will have to test this by your own by disabling all of them, see if you still have this problem and after this, disable them one by one…

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: SSL Showing in Membership Checkout Page #30937
     Catalin
    Moderator

    that shouldn’t appear normally so this happens during some modifications you have done to the site… I wasn’t able to replicate this…

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Install #30936
     Catalin
    Moderator

    Hello,

    for sharing, take a look here:

    http://wptavern.com/new-plugin-adds-buddypress-activity-as-a-wirewall-to-user-profiles

    for uploading a cover photo, we are working on this and we will release this functionality next week

    the credentials are not working anymore so I am not able to see a profile to test your third request.

    let me know if the plugin from the link I suggested suitd uour needs.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Menu icons not working in custom menu widget #30933
     Catalin
    Moderator

    Hello,

    Thanks for pointing this… we will analyze this and add this functionality also.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Buddypress tabs does not work in AR,JA,RU,TH,ZH-HANT #30932
     Catalin
    Moderator

    we will release the update in a few days and you will be able to have the code then…

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: register link in sidebar (widget) #30927
     Catalin
    Moderator

    Hello,

    The file you need to modify is this:

    ..\wp-content\plugins\buddypress\bp-core\bp-core-widgets.php

    around line 94 you have:

    COPY CODE
    
    <span class="bp-login-widget-register-link"><?php printf( __( '<a href="%s" title="Register for a new account">Register</a>', 'buddypress' ), bp_get_signup_page() ); ?></span>
    

    you will need to modify this code like:

    COPY CODE
    
    <span class="bp-login-widget-register-link"><?php printf( __( '<a href="http://www.mentorschap.be/membership-account/registreren-2/" title="Register for a new account">Register</a>', 'buddypress' ), bp_get_signup_page() ); ?></span>
    

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Can not install the sweetdate plugin #30925
     Catalin
    Moderator

    Hello,

    Please describe with more details you issue… what plugin are you referring to? … what error do you get?

    You can reply here the credentials and set the message as private… give me more details first.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Buddypress tabs does not work in AR,JA,RU,TH,ZH-HANT #30924
     Catalin
    Moderator

    Hello,

    it has been discussed here:

    https://archived.seventhqueen.com/forums/topic/editing-base-and-looking-for

    we will release a fix for this on the next update.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to move social buttons to right top menu? #30923
     Catalin
    Moderator

    Hello,

    Please add this to your style.css file from your child theme:

    COPY CODE
    
    
    #top-social 
    {
    float:right !important;
    }
    
    

    let me know if this helps.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Verification emails #30922
     Catalin
    Moderator

    Hello,

    PLease take a look at this plugin:

    http://www.paidmembershipspro.com/add-ons/plugins-wordpress-repository/email-templates-admin-editor/

    let me know if this helps.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: KLEO Header Height (navigation bar) #30921
     Catalin
    Moderator

    please send me a link to your website with the new logo activated… I will provide you the necessary code.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Disabling Shop #30919
     Catalin
    Moderator

    Hello,

    You need to go to (Appearance > Woocommerce ) and disable the icon… take a look at my screen shot also…

    Let me know if this helps.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Rights background image #30916
     Catalin
    Moderator

    please take a look here:

    http://www.123rf.com/photo_10834908_portrait-of-a-beautiful-young-happy-smiling-couple–isolated.html

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WPML language selector at header #30915
     Catalin
    Moderator

    credentials not working anymore… I need to take a look and see what settings you have.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Add a Videos tab in profiles #30913
     Catalin
    Moderator

    send em an email with your complete requirements and we take it from there… catalin@seventqueen.com

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WPML language selector at header #30835
     Catalin
    Moderator
    COPY CODE
    
    
    <?php do_action('icl_language_selector'); ?>
    
    

    u missed the closing question mark for php

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Css issues in activitysteam #30831
     Catalin
    Moderator

    2 and 3 are done… 1 works, give me an example where open in new window doesn’t work.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WPML language selector at header #30829
     Catalin
    Moderator

    test this and let me knwo if it works… the code looks right…

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 201 through 240 (of 1,943 total)

Log in with your credentials

Forgot your details?