Forum Replies Created

Viewing 40 posts - 5,041 through 5,080 (of 20,101 total)
  • Author
  • in reply to: Schema.org Question #176847
     Radu
    Moderator

    Hi,

    Replace with this one

    COPY CODE
    
    /* Schema org for body */
    if ( ! function_exists( 'kleo_get_schema_org_markup' ) ) {
    
    	function kleo_get_schema_org_markup() {
    		$schema = 'http://schema.org/';
    		if ( is_singular( 'post' ) ) {
    			$type = "Article";
    		} elseif ( is_singular( 'portfolio' ) ) {
    			$type = "VisualArtwork";
    		} else if (bp_is_user()) {
    			$type = 'ProfilePage';
    		} else {
    			if ( is_author() ) {
    				$type = 'ProfilePage';
    			} // Is search results page
    			elseif ( is_search() ) {
    				$type = 'SearchResultsPage';
    			} else {
    				$type = 'WebPage';
    			}
    		}
    
    		$type = apply_filters( 'kleo_schema_org_type', $type );
    
    		return 'itemscope itemtype="' . $schema . $type . '"';
    	}
    
    }
    
    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: Search not working #176843
     Radu
    Moderator

    I see, and it works ?Any plugin causes that ?

    Cheers
    R.

    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: Multiple Q’s from a new user of Kleo Theme: #176842
     Radu
    Moderator

    Hi,

    I see the next solution for this matter

    – Adding the button to the main menu not for the second.

    – Enabling “Compact overflowing menu items” -> ON from wp-admin -> theme options -> header options.

    Will look like this

    So adding the menu item to the second menu always will collapse to the next row if there is no space available.

    Cheers
    R.

    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: BUddyapp group creation fields #176840
     Radu
    Moderator

    Hi,

    Please follow this link especially second reply : https://buddypress.org/support/topic/custom-group-creation-steps-and-the-are-you-sure-you-want-to-do-this-screen/

    There are a function + action, use it.

    The php codes will be added to child theme functions.php

    Cheers
    R.

    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: Horizontal menu #176839
     Radu
    Moderator

    Hi,

    You’re welcome, i will reply to the buddypress group creation in his topic

    Cheers
    R.

    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: Envato API error #176560
     Radu
    Moderator

    Hi,

    Make sure to not have archive in the archive, if you have downloaded main files archive from theme forest you should unzip that and inside the WordPress folder you will see the kleo.zip archive this you should upload not entire pack.

    As an alternative, you can try to install theme manually mode using FTP method : https://archived.seventhqueen.com/documentation/kleo#install-from-ftp

    Also you can try to use their updater plugin and to add the api details in their plugin nor in our theme : https://github.com/envato/envato-wordpress-toolkit

    Let me know

    Cheers
    R.

    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: upload size #176559
     Radu
    Moderator

    Hi,

    For embeds it’s simple just set via CSS

    iframe, embed {min-width:450;min-height:450px;}

    For images depends where…

    Also if you are referring to the image upload, to not allow you to upload if a image doesn’t have a minimum of width, height px… i recommend you to search a plugin for that, since our ttheme follows the wordpress/buddypress working flow.

    Cheers
    R.

    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: Double username on members page #176558
     Radu
    Moderator

    Hi,

    In first instance try to de-activate also the child theme beside the plugins.

    VERY IMPORTANT NOTE: If you have overwritten the template files in child theme while using 2.x.x version of the theme, especially the BuddyPress templates and after update or it’s not as it should or the site is broken you will have to re-do the swetedate templates, or you can revert to 2.9.11 look for in main files/WordPress/version 2.9/

    Let me know if this it’s the cause then we can move further with displaying the fields age and city there

    Cheers
    R.

    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: Search not working #176556
     Radu
    Moderator

    Hi,

    Check in theme options -> header settings -> to not have a certain cpt added there and to case that issue, add your desired cps, or remove all to search in all.

    IF it’s the same de-activate all plugins and child theme and check again, if it works activate back one by one the plugins and child theme until you find the culprit.

    Cheers
    R.

    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: Integrating AudioTheme Plugins #176555
     Radu
    Moderator

    Hi,

    Did you have added any of those codes in your functions.php ?

    Can you show the the content of you functions.php file from the child theme?

    Cheers
    R

    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: google recptcha not shown in login popup #176554
     Radu
    Moderator

    Hi,

    Just go via FTP to wp-content/themes/kleo-child/page-parts/
    if page-parts folder missing create it, then inside page-parts create a file named general-popups.php int hat you will paste this content: https://pastebin.com/raw/ieiVy6Ui

    That it’s

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    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 certain page elements… #176553
     Radu
    Moderator

    Hi,

    You’re welcome 🙂

    Cheers
    R.

    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 mobile menu like on desktop #176552
     Radu
    Moderator
    Not marked as solution
    in reply to: Schema.org Question #176551
     Radu
    Moderator

    Hi,

    In this case add only this code

    COPY CODE
    
    /* Schema org for body */
    if ( ! function_exists( 'kleo_get_schema_org_markup' ) ) {
    
    	function kleo_get_schema_org_markup() {
    		$schema = 'http://schema.org/';
    		if ( is_singular( 'post' ) ) {
    			$type = "Article";
    		} elseif ( is_singular( 'portfolio' ) ) {
    			$type = "VisualArtwork";
    		} else {
    			if ( is_author() ) {
    				$type = 'ProfilePage';
    			} // Is search results page
    			elseif ( is_search() ) {
    				$type = 'SearchResultsPage';
    			} else {
    				$type = 'WebPage';
    			}
    		}
    
    		$type = apply_filters( 'kleo_schema_org_type', $type );
    
    		return 'itemscope itemtype="' . $schema . $type . '"';
    	}
    
    }
    

    Let me know
    Cheers
    R.

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

    Shortcodes are allowed

    Cheers
    R.

    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: POST IN activity generates 404 on edit-account?? #176549
     Radu
    Moderator
    Not marked as solution
    in reply to: Primary Menu’s sub menu not working on mobile #176547
     Radu
    Moderator

    Hi,

    IT’s about the resource button right ? Yes it not shows submenu for the mobile,tried to look how was builded in wp-admin -> appearance -> menus, but my role seems to be editor or author and i cannot see it.

    Cheers
    R.

    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 Woocommerce Plugin Causing PHP Notice #176546
     Radu
    Moderator

    Hi,

    I’ve updated the woocommerce to 3.1.2 and in the debug.log i cannot see any notice related to that function.

    WC_Cart::get_cart_url is deprecated since version 2.5! Use wc_get_cart_url instead in my WordPress Debug log.

    What php version are you running ? somehow 7 ?

    TRy to de-activate all plugins and child theme except woocommerce plugin use only parent theme, empty your debug.log and look again for that notice, if that stops to appears means that this can be caused by some woocommerce old template from child theme.

    And of course we will support woocommerce 3.1.2 ver at the moment from what i see it’s the same like previous version, even if you receive that notice it will work, that means that the function will be deprecated in next versions.

    A possible cause for your website wired look sometimes, can be caused by minification and html compression, try to play with the caching settings, do not move them to footer cuz those will be loaded after the page complete to load, which is not ok for CSS

    Cheers
    R.

    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: @mentions dropdown auto complete #176545
     Radu
    Moderator

    Hi,

    This should work on bp and also on bbpress

    Make sure your issue to not be caused by some plugin, de-activate all plugins except bbpress and buddypress and check, enable back plugins one by one until you find the culprit.

    Cheers
    R

    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,

    The code it’s plug and play for the with exception i’ve used the field hobby thru location variable just to test and it works

    It’s a little over the hand to not have access just to check in on live.

    So the snippet it’s good try to pay attention to the field names, to be identically (uppercase sensible) so copy and paste the field names, make sure to not have extra spaces at the start and at the end of the field names in php script and in wp-admin -> profile fields.

    Cheers
    R.

    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: Problems with Kleo Posts element #176542
     Radu
    Moderator

    Hi,

    Now it happens again on mine like on you….without do nothing special, just i’ve played with the thumbnail values only for 2 and three posts…

    I’ve made a workaround until we find the solution for that

    Just add this css

    COPY CODE
    
    /** START SHOW ONLY FIRST 3 **/
    .posts-listing.just-thumb-3.standard-listing article:nth-child(1) .article-media,.posts-listing.just-thumb-3.standard-listing article:nth-child(2) .article-media, .posts-listing.just-thumb-3.standard-listing article:nth-child(3) .article-media {
        display: block !important;
    }
    .posts-listing.just-thumb-3.standard-listing article .article-media {display:none;}
    /** END SHOW ONLY FIRST 3 **/
    
    
    /** START SHOW ONLY FIRST 2 **/
    
    .posts-listing.just-thumb-2.standard-listing article:nth-child(1) .article-media,.posts-listing.just-thumb-2.standard-listing article:nth-child(2) .article-media {
        display: block !important;
    }
    .posts-listing.just-thumb-2.standard-listing article .article-media {display:none;}
    
    /** END SHOW ONLY FIRST 2 **/
    
    
    /** START SHOW ONLY FIRST 1 **/
    
    .posts-listing.just-thumb-1.standard-listing article:nth-child(1) .article-media {
        display: block !important;
    }
    .posts-listing.just-thumb-1.standard-listing article .article-media {display:none;}
    
    /** END SHOW ONLY FIRST 1 **/
    
    
    

    Then you can select ‘Show Thumbnail image’ -> Just for the first/second/third and it will work but the css will do that.

    Cheers
    R.

    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: Unable to send messages with PMP activated #176536
     Radu
    Moderator

    This one it’s builded with Elementor plugin, but it looks the same, the idea of elementor it’s you can create your desired layout, so using elementor we had stylised in the same way like the old versions of sweetdate.

    Cheers
    R.

    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 not working on mobile #176535
     Radu
    Moderator

    No problem
    Cheers
    R

    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 certain page elements… #176534
     Radu
    Moderator

    Hi,

    To hide the social login icons from register page only you will have to use the next CSS

    COPY CODE
    
    /*** START HIDE SOCIAL LOGIN ONLY ON BUDDYPRESS PAGE ***/
    .register.buddypress .wp-social-login-widget {
        display: none;
    }
    /*** END HIDE SOCIAL LOGIN ONLY ON BUDDYPRESS PAGE ***/
    
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick css

    Let me know if i can help you with something else

    Cheers
    R.

    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 showing #176533
     Radu
    Moderator

    Hi,
    Re-uploaded entire assets folder in wp-content/themes/buddyapp/

    But when i want to try to check how it behaves right now the url seems to no longer works

    Check you, and if it’ the same let me know the actual url

    Cheers
    R.

    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 mobile menu like on desktop #176532
     Radu
    Moderator
    Not marked as solution
    in reply to: CSS Bugs on Theme Options #176471
     Radu
    Moderator

    Great
    Cheers
    R.

    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: Unable to send messages with PMP activated #176470
     Radu
    Moderator

    Hi,

    The affiliate plugin cuases the next issue… se screenshot, i’ve de-activated the plugin, you can activate it back

    Also now i’ve imported the demo and it looks like this

    Looks as it should

    Make sure that every change you should purge the cache.

    Let me know

    Cheers
    R.

    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: Problems with Kleo Posts element #176466
     Radu
    Moderator

    Hi,

    Very wired, now on my end the thumbnail for 1-2 and 3 post works normally, without doing something,, the only difference between my install and yours it’s you are using php 7.1.7 and i use php 5.6, can you easy switch to 5.6 version of php or any 5.x version ? to test if the thumbs errors are caused by this ?

    Cheers
    R.

    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 showing #176465
     Radu
    Moderator

    Hi,

    That’s odd, i saw them… but on my end i cannot reproduce, can you please provide FTP to take a closer look ?

    I will re-upload theme maybe some files are corrupt or something.

    Cheers
    R.

    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: Element ID #176459
     Radu
    Moderator

    You’re welcome
    Please if you have time leave us a review on theme forest

    Cheers
    R.

    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 Bugs on Theme Options #176458
     Radu
    Moderator

    Hi,

    The issue seems to comes from the on/off works translated in Spanish where they haves to many letters and overlaps one over others, leave the words OFF and ON like this.

    Cheers
    R.

    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: Group Forum Redirect issues #176455
     Radu
    Moderator

    Hi,

    Cannot see a problem, here the “redirect” contains the id where you will reply… i noticed that this happens also on default theme, so cannot see this like a problem, i recommend you to test with the default theme to see it’s the same.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: My menus are empty #176453
     Radu
    Moderator

    Hi,

    Ok then, will take this into consideration.

    Cheers
    R

    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: Buddy Press member profile pages disappeared #176452
     Radu
    Moderator

    Hi,

    You can use this cache plugin : https://wordpress.org/plugins/wp-super-cache/ very simple and performant.

    Also the w3total cache works good with our theme, tested and cannot see any issue, in general it’s not recommended to cache nothing for logged in users.

    For debugging the provide covers issue, try to re-upload again the theme files and to re-install the plugins. Ff it’s the same enable WP debug ( i will add the procedure below )

    Also make sure that this issue to not be caused by a certain plugin try to de-activate all first, and check it works normally

    Also make sure to have all buddypress components activated

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE

    <pre class=””>define( ‘WP_DEBUG’, true );

    •   After this line add this:

    <pre class=””>define( ‘WP_DEBUG_LOG’, true );

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    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: display mobile menu like on desktop #176451
     Radu
    Moderator
    Not marked as solution
    in reply to: Not Able Change my Tile Heading Color #176450
     Radu
    Moderator

    Hi
    Done
    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: Menu not working on mobile #176449
     Radu
    Moderator

    Hi,

    Caused by a plugin named “Speed Up – Optimize CSS Delivery”

    IT’s deactivated right now to make the toggle work.

    Cheers
    R

    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: Breadcrumb issue #176448
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 5,041 through 5,080 (of 20,101 total)

Log in with your credentials

Forgot your details?