Forum Replies Created

Viewing 40 posts - 2,841 through 2,880 (of 8,607 total)
  • Author
  • in reply to: Multi purchase of Kleo Theame #44639
     Abe
    Keymaster

    Hi, I wrote an email to you so let’s continue the discussion there

    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: Homepage regsiter like Sweetdate? #44637
     Abe
    Keymaster

    Hi, there isn’t a shortcode for that right now but we will consider it for a future update.

    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: Vertical Registration form on homepage #44545
     Abe
    Keymaster

    A link to your site would be good to check 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: Changing the paid member sign up process #44542
     Abe
    Keymaster

    Hi, what you need implies custom work since it can’t be easily provided with a quick fix so please try to hire a programmer to help you since it is out of forum scope.

    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: Bad URLs added in PMPRO membership description editor #44541
     Abe
    Keymaster

    Hi, I think I already answered this somewhere else so please don’t post same question twice.
    your link should be added like “http://site.com/mypage.html” instead of “mypage.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

    Hi, Facebook login file is found here if you want to change some redirects but they should follow default WordPress redirect you if you are redirected to admin then that is the default WP behavior for admin users so you can consider a login redirect plugin

    wp-content/themes/kleo/kleo-framework/lib/function-facebook-login.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: Getting Post Comments to Show on Activity Stream #44537
     Abe
    Keymaster

    Hi, make sure that you have enabled Site Tracking component from BuddyPress settings

    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 Conditional Profile Field NOT Working #44527
     Abe
    Keymaster

    in what pages it 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

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

    in reply to: 3 QUestions #44525
     Abe
    Keymaster

    okey 🙂

    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: login form in header #44513
     Abe
    Keymaster

    There is not a functionality for that in the theme. You require custom coding to do 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: Sweetdate Landing Page (HTML) + Sweetdate theme #44511
     Abe
    Keymaster

    If you have the WordPress theme you don’t need any other landing page HTML. Import the demo content and you will see the Home 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: GEO MY WP – Just Show City #44467
     Abe
    Keymaster

    Hi, you have some options in the GEO my WP plugin in the Sweetdate tab not to show the info in the members directory

    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: Pods image thumbnail doesn't show up after upload #44466
     Abe
    Keymaster

    So all good now?

    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’ll release and update these days with the fix but I am sure you are not doing something right

    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: The language change automatically after press a link #44445
     Abe
    Keymaster

    ok, did it and works too http://cl.ly/image/3a2b1E0I0x3v

    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 with hosted videos #44440
     Abe
    Keymaster

    To replace them with Prev/Next you need to redefine this function in your child theme

    COPY CODE
    
    function kleo_post_nav( $same_cat = false ) {
    	// Don't print empty markup if there's nowhere to navigate.
    	$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( $same_cat, '', true );
    	$next     = get_adjacent_post( $same_cat, '', false );
    
    	if ( ! $next && ! $previous ) {
    		return;
    	}
    	?>
    	
    	<nav class="pagination-sticky member-navigation" role="navigation">
    		<?php
    		if ( is_attachment() ) :
    			previous_post_link( '%link', __( '<span id="older-nav">Go to article</span>', 'kleo_framework' ) );
    		else :
                if ($previous) {
                    previous_post_link( '%link',  '<span id="older-nav"><span class="outter-title"><span class="entry-title">Previous</span></span></span>', $same_cat );
                }
                if ($next) {
    			    next_post_link( '%link', '<span id="newer-nav"><span class="outter-title"><span class="entry-title">Next</span>', $same_cat );
                }
            endif;
    		?>
    	</nav><!-- .navigation -->
    	
    	<?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: Create Full Screen Background video #44437
     Abe
    Keymaster

    Right now that is now available but we will consider it as a future functionality.

    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: Side Menu sub-menu broken on mobile #44404
     Abe
    Keymaster

    it will kill ass badly :))
    We are releasing it this week

    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 page url type #44401
     Abe
    Keymaster

    Cool 🙂

    Take care

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

    Indeed really nice @guy_fraser

    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, sorry can’t really tell where that comes from. I guess the addon developers can help you with that

    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: Vertical Registration form on homepage #44132
     Abe
    Keymaster

    Registration text can be changed from this template: wp-content/themes/sweetdate/page-parts/home-register-form.php

    The font should be changed by CSS and applied only for the elements you need. You require CSS knowledge

    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: fluid-width-video-wrapper #44130
     Abe
    Keymaster

    @catholicauthor Youtube videos should work normally. Try to give me a link to that page and remove the code added by 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: filtering posts just like portfolio #44127
     Abe
    Keymaster

    the update is coming next week

    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: filtering posts just like portfolio #44126
     Abe
    Keymaster

    this will be possible in next update using the updated Visual composer 4.4 integration

    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: Registration Password #44118
     Abe
    Keymaster

    Yes, once you submit that data it should show auto completed in the /register 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: Using Portfolio As Homepage #44091
     Abe
    Keymaster

    It is there. See the printscreen

    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

    Please make sure you change the content only

    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: Flickering Type #44066
     Abe
    Keymaster

    Does it happen on our demo 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: Flickering Type #44065
     Abe
    Keymaster

    Can’t see what you are seeing but look at my video on Yosemite with Safari
    http://cl.ly/0t1v3z002q3Y/Screen%20Recording%202015-01-30%20at%2012.11%20pm.mov

    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: What went wrong here? #44059
     Abe
    Keymaster

    I definitely read your reply 🙂
    It seems you don’t want to understand what I am saying but I will repeat again. This can’t be theme related since you disabled the extra plugins and re-uploaded the images and all went well. So based on your experiment it is definitely plugin/code related since normal BuddyPress behavior is to crop square avatars.

    So bottom line is that we do care about any problems clients might encounter with the theme and fix them all but something like your request above is beyond my power to guess what is the cause of your not square avatar.

    And you can always reply to Resolved topics, change status and even reply to Closed ones.

    So please try understand the purpose of this forum

    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: OptimizePress' OptimizeMember #44023
     Abe
    Keymaster

    Hi, we haven’t tested it. I don’t see why it won’t work

    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: What went wrong here? #44022
     Abe
    Keymaster

    I said that since the image is already uploaded like that, just disabling the plugins won’t help.

    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: Memberships Plugin #43979
     Abe
    Keymaster

    Hi, those fields can be translated if you translate KLEO theme. Use a plugin like Codestyling localization

    the .00 should be generated from the plugin. try looking in the plugin settings to change the decimals

    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: Demo-content on multisite install #43975
     Abe
    Keymaster

    hi, it is due the plugin settings on those buttons color since is white on a white bg…. Pleas configure it correctly since this is not theme related

    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 form script #43964
     Abe
    Keymaster

    another solution is to try this plugin: https://wordpress.org/plugins/bp-profile-search/

    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 form script #43963
     Abe
    Keymaster

    Hi, Thanks for your purchases.

    Unfortunately I don’t think it will be an easy transition but everything related to the search is found in this file: 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.

     Abe
    Keymaster

    @arystokrata you managed to remove all content? Normally you go to each post type and delete all posts, pages, etc

    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: Side Menu sub-menu broken on mobile #43954
     Abe
    Keymaster

    Hi, this has been fixed and it will be available in 2.4 version

    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: Side Menu issues on mobile & other menu bugs #43912
     Abe
    Keymaster

    we are trying this week and the Visual composer 4.4 integration is taking some 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.

Viewing 40 posts - 2,841 through 2,880 (of 8,607 total)

Log in with your credentials

Forgot your details?