Forum Replies Created

Viewing 40 posts - 18,481 through 18,520 (of 20,101 total)
  • Author
  • in reply to: customise post / Make post format #77083
     Radu
    Moderator

    Hi,

    If you want to add a simple thing at the bottom of your post use this function.

    COPY CODE
    
    function CustomKleoAddContentAfterPost( $content ) {
     
        if( is_single() ) {
     
            $shortcode = '<a href="http://google.com"><img src="http://angierfellowship.dnsalias.com/wp-content/uploads/2014/03/img-600x390.gif"></a>';
            $content .= '<h4>My Custom content</h4>';
            $content .= $shortcode;
        }
     
        return $content;
     
    }
    add_filter('the_content', 'CustomKleoAddContentAfterPost');
    

    If you want to make your custom post template just copy the original template from parent theme

    example :

    wp-content/themes/kleo/content-image.php

    wp-content/themes/kleo-child/content-image.php

    Note the Kleo Child needs to be active

    Best Regards

    Radu

    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: Like(s) in the activity Stream #77080
     Radu
    Moderator

    Hi,

    If you want to have this functionality without a plugin, you need to develop that functionality but it will use same resources to do that.

    Try this plugin http://webdeveloperswall.com/buddypress/buddypress-like-dislike-plugin and if it’s what are you looking for, you can inspire from here.

    Regards

    RAdu

    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: Revolution slider animation #77074
     Radu
    Moderator

    Hi,

    See attachment for the issue with disappearing text.

    If you want to press the button and then to scroll down look here : https://archived.seventhqueen.com/forums/topic/smooth-anchor#post-65836 ( read entire topic )

    Regarding the ajax error try to put this in .htaccess

    COPY CODE
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>
    

    Best Regards

    Radu

    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: Import data and revolution slider not working properly #77072
     Radu
    Moderator

    Hi,

    Wordpress it says

    ERROR: Too many failed login attempts. Please try again in 20 minutes.

    I will try later or tomorrow.

    Best Regards

    Radu

    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: Background image #77071
     Radu
    Moderator

    Yes, provide admin credentials.

    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: Advise please. Group Article. #77070
     Radu
    Moderator

    You’re welcome, exactly you can match only a single page with the body class like :

    example : body.page-id-123 #buddypress h4 { font-size:3em; }

    Best regards

    Radu

    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: Profile Photo Error #77064
     Radu
    Moderator

    Hi,

    Please provide the url to.

    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 3.07 incompatible #77062
     Radu
    Moderator

    Hi,

    The get_cfield function it’s part of ACF Plugin kleo uses the get_cfield function so , try like this

    COPY CODE
    
    			case 'video':
    
    				//oEmbed video
    				// **************** DEBUT MODIF HD *****************************  
    				// init $video = get_cfield( 'embed' ); 
    				$video = get_cfield('video_url');
    				// ****************** FIN MODIF HD *****************************  
    
    			case 'link':
    			// ******************* DEBUT MODIF HD *****************************  
                             $image = get_cfield('img-site'); 
    				
    			echo '<a href="'. get_permalink() .'" class="element-wrap">'
                            . '<img src="' . $image . '">' 
                            . kleo_get_img_overlay()
                            . '</a>';
    ....
    			// ******************* FIN MODIF HD *****************************  
    		
    			/*	echo '<div class="inner-content">'
    				. get_the_content()
    				. '</div><!--end inner-content-->';
    				break; */
    ....
    			case 'image':
    			default:
    				if ( kleo_get_post_thumbnail_url() != '' ) {
    					echo '<div class="post-image">';
    			// ******************* DEBUT MODIF HD *****************************  
    					$img_url = kleo_get_post_thumbnail_url();
    
    					$image = get_cfield('image');
    					/* $image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true ); */
                            // ******************* FIN MODIF HD ***************************** 
    ....
    
    

    REgards

    RAdu

    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: Customize thank you order page #77059
     Radu
    Moderator

    Hi,

    I think you receive the blank page because of this function :

    COPY CODE
    
    add_filter( 'the_content', 'wc_custom_thankyou' );
    function wc_custom_thankyou( $content ) {
        // Check if is the correct page
        if ( ! is_page(3) ) {
            return $content;
        }
    
    	// check if the order ID exists
    	if ( ! isset( $_GET['order'] ) ) {
            return $content;
        }
    
    	// intval() ensures that we use an integer value for the order ID
    	$order = wc_get_order( intval( $_GET['order'] ) );
    
    	ob_start();
    
    	// Check that the order is valid
    	if ( ! $order ) {
            // The order can't be returned by WooCommerce - Just say thank you
            ?><p><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.', 'woocommerce' ), null ); ?></p><?php
        } else {
            if ( $order->has_status( 'failed' ) ) {
                // Order failed - Print error messages and ask to pay again
                /**
                 * @hooked wc_custom_thankyou_failed - 10
                 */
                do_action( 'wc_custom_thankyou_failed', $order );
            } else {
                // The order is successfull - print the complete order review
                /**
                 * @hooked wc_custom_thankyou_header - 10
                 * @hooked wc_custom_thankyou_table - 20
                 * @hooked wc_custom_thankyou_customer_details - 30
                 */
                do_action( 'wc_custom_thankyou_successful', $order );
            }
        }
    	$content .= ob_get_contents();
    	ob_end_clean();
    	return $content;
    }
    

    Replace the existing function from functions.php with the function above, also replace id 3 with your thank you id page.

    COPY CODE
    
        // Check if is the correct page
        if ( ! is_page(3) ) {
    

    Cheers

    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: Profile Photo Error #77053
     Radu
    Moderator

    Ok,

    Please provide an normal user dummy account to can test the behavior of this.

    Cheers

    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 add ad unit to archives #77052
     Radu
    Moderator

    You’re welcome,

    Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂

    http://themeforest.net/downloads/

    Best regards

    Radu

    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: Reduce vertical space between items #77051
     Radu
    Moderator

    You’re welcome,

    Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂

    http://themeforest.net/downloads/

    Best regards

    Radu

    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: Block animation not working after update #77048
     Radu
    Moderator

    Hi,

    You’re welcome,

    We already we are looking for a solution for this animations issues, in the future these “problems” will be fixed.

    Best Regards

    Radu

    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: Advise please. Group Article. #77047
     Radu
    Moderator

    Yes the CSS it’s ok for hiding that elements but you can use this css path to match only the elements where that plugin it’s active.

    COPY CODE
    
    .article-content #buddypress .rtm-gallery-title {display: none; !important}
    .article-content #buddypress .author-box  {display: none; !important}
    .article-content #buddypress .pagination.no-ajax {display: none; !important}
    .article-content #buddypress .date {display: none; !important}
    

    Cheers

    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: Import data and revolution slider not working properly #77044
     Radu
    Moderator

    Hi,

    I see the register page it’s working. http://until4am.com/register/

    I’ve tried to get into wp-admin but the credentials are wrong.

    Regards

    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: Background image #77043
     Radu
    Moderator

    Hi,

    Try with this CSS

    COPY CODE
    
    body.page-id-816 {
    background-image: url("http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif");
    background-repeat: repeat;
    }
    

    Replace “http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif&#8221; with your image url .

    REgards

    Radu

    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: Fade out kleo-main-header for certain pages #77042
     Radu
    Moderator

    Hi,

    Please provide me dummy account to can see that pages.

    Cheers

    Radu

    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: Advise please. Group Article. #76791
     Radu
    Moderator

    Hi,

    I see that CSS, but this page it’s not working http://pethoff.ru/groups/uhod/blog/

    Regards

    Radu

    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: Header and logo #76788
     Radu
    Moderator

    Hi,

    Use this css by adding it in Wp-Aadmin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    @media screen and (max-width: 400px) {
    .navbar-header .logo {
    float:left;
    }
    }
    

    Best REgards

    Radu

    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: User Profile Visibility #76785
     Radu
    Moderator

    Hi,

    These settings are applying only for that fields not for the profile.

    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 page background color on specific pages #76784
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    body.woocommerce section.container-wrap.main-color {
        background-color: #FFF !important;
    }
    

    Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS

    Regards

    Radu

    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 page background color on specific pages #76783
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    body.woocommerce section.container-wrap.main-color {
        background-color: #FFF !important;
    }
    

    Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS

    Regards

    Radu

    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: Import data and revolution slider not working properly #76782
     Radu
    Moderator

    Hi,

    The menu it’s ready. it looks like in demo.

    The slider cannot be imported because when i import the slider the server it says
    “Status Code:500 Internal Server Error”

    Try to contact the hosting company and ask them if you have installed PHP ZIPArchive installed on your server or put the image manualy in slider ” http://seventhqueen.com/themes/kleo/wp-content/uploads/revslider/HomeFullWidth/pic_main1.jpg

    REgards

    Radu

    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: BBpress social login #76781
     Radu
    Moderator

    1. Just enable the facebook integration (read my first reply how to)

    2. For any other social media login try / test this :

    https://wordpress.org/plugins/nextend-twitter-connect/
    https://wordpress.org/plugins/nextend-google-connect/

    Cheers

    RAdu

    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: Block animation not working after update #76780
     Radu
    Moderator

    Hi,

    Try to use this css

    COPY CODE
    
    
    .kleo-transform .animated.animate-when-visible, .kleo-transform .animated.animate-when-almost-visible, .cul {
        opacity: 1 !important;
    }
    

    Add this CSS to Theme Options -> General Settings -> Quick CSS.

    Let me know if this solve the visibility issue.

    Cheers

    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: Posts (carousel) links not working on mobile #76778
     Radu
    Moderator

    I see, this bug fix be fixed on next update or earlier.

    Sorry for inconvenience.

    Best Regards

    Radu

    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: Advise please. Group Article. #76769
     Radu
    Moderator

    Hi,

    I see that the plugin it works but it’s not stylized but try to use/test this plugin : https://wordpress.org/plugins/social-articles

    Regards

    Radu

    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: Posts (carousel) links not working on mobile #76768
     Radu
    Moderator

    Hi,

    It seems to be a bug there, i will put this on the bug list, and on a future update this will be fixed.

    Thank you for reporting the bug.

    Best Regards

    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: Block animation not working after update #76763
     Radu
    Moderator

    Hi,

    Can you give me the page URL ?

    You have installed any other plugins than kleo themes comes ?if yes try to disable them one by one and recheck.

    Cheers

    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: Header and logo #76760
     Radu
    Moderator

    Hi,

    Can i see the live example of this behaviour ?

    Cheers

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

    Hi,

    Sorry to say, but this is how Kleo it works it use the walker function to add/hide/remove certain menus items.

    If you have the PRO version please send the plugin at this address : radu@seventhqueen.com

    After that we will made an integration with that plugin.

    Best Regards

    Radu

    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: BBpress social login #76754
     Radu
    Moderator

    Hi,

    You have tested to enable the facebook login from Wp-Admin -> Theme Options -> Miscellaneous -> SET ON Facebook integration and SET ON Enable Registration via Facebook.

    If you sign-in with facebook you will have an account on bbpress also

    Cheers

    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 page background color on specific pages #76741
     Radu
    Moderator

    Hi,

    Can you provide link of one of the woocommerce page ?

    Cheers

    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: User Profile Visibility #76733
     Radu
    Moderator

    Hi,

    Can you provide more details ? From where you have set profile visibility for only me ?

    Provide print screen please.

    Regards

    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: Import data and revolution slider not working properly #76724
     Radu
    Moderator

    Hi,

    I’ve logged in with success, i see that you have already import the demo content, please tell me what demo do you want to hame on homepage ? http://seventhqueen.com/themes/kleo/#demos

    Now on your homepage it’s comunity like page and i see that you have community feature active : http://until4am.com/members/admin/

    Best Regards

    Radu

    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: get connected graphic is not pointing with cursor #76722
     Radu
    Moderator

    Hi,

    If the existing page have another slug and name this will not duplicate the page, but anyways if you duplicate only a single page it’s not a problem.

    Cheers

    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: 404 errors inside side bar menu #76718
     Radu
    Moderator

    Hi again,

    I cannot figure out what’s causing the problem, but my suggestion is to make a copy of your entire site on a subdomain and here, try to disable one by one plugins that not comes with the Kleo theme, maybe like this you will figure out what causes the problems.

    Best REgards

    Radu

    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: Import data and revolution slider not working properly #76711
     Radu
    Moderator

    Hi,

    The credentials are not correct, can you check please ?

    Cheers

    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 add ad unit to archives #76627
     Radu
    Moderator

    Hi,

    Download the attachment, unzip the file, upload this file ( archive.php ) to kleo child root directory.

    Then open the archive.php at line 59 at variable

    COPY CODE
    
    $adcode = '<div style="width:728px; height:90px; background-color:red; position: relative;"> <img src="http://northdelawhere.happeningmag.com/wp-content/uploads/728x90-example-banner.jpg"></div>';
    

    replace the code with your ad code, you need to place ad code inside ”.

    $adcode = ‘PASTE HERE CODE’;

    That’s all.

    The code add after each two posts the ad

    Regards

    RAdu

    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: Fade out kleo-main-header for certain pages #76616
     Radu
    Moderator

    Hi,

    Kleo don’t comes with the WP Job Manager and Events manager plugin, can you provide URL with the job manager page and events manager page to take a look ?

    Regards

    Radu

    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 - 18,481 through 18,520 (of 20,101 total)

Log in with your credentials

Forgot your details?