Forum Replies Created

Viewing 40 posts - 10,121 through 10,160 (of 20,101 total)
  • Author
  • in reply to: How can i delete a plugin html class #138926
     Radu
    Moderator

    TRy to add this css for

    .top_label {width:100% !important;}

    OR

    .top_label {width:auto !important;}

    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: Buddypress hashtag? #138925
     Radu
    Moderator

    Ask the plugin author please

    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: Server Error on Fresh Install #138916
     Radu
    Moderator

    Hi,

    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
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    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: How modificate BP profile Members to see Fields #138915
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    #buddypress div.profile .dl-horizontal dt {
        width: 35%;
    }
    #buddypress div.profile .dl-horizontal dd {
        width: 64%;
        margin-left:38%;
    }
    

    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: Probleme with Buddy Press Profil #138906
     Radu
    Moderator

    Hi,

    Try to hide that with this CSS

    COPY CODE
    
    
    .field-visibility-settings, .field-visibility-settings-toggle, .field-visibility-settings-notoggle {
        display: none !important;
    }
    
    

    If you want to modify this directly to the php files just copy this file wp-content/themes/kleo/buddypress/members/single/profile/edit.php to /wp-content/themes/kleo-child/buddypress/members/single/profile/edit.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: kleo group masonry Customize CSS #138905
     Radu
    Moderator

    Yes but i cannot see groups in the link that you have provided i cannot see any masonry with groups provide groups link please

    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: Side Menu Alteration #138903
     Radu
    Moderator

    Hi,

    So practically you want to have more button before the icon ? If yes use the next php function that you will have to add wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    if( ! function_exists( 'kleo_side_menu_button' ) ) {
        /**
         * Add side button to menu
         * @param string $items
         * @param object $args
         * @return string
         */
        function kleo_side_menu_button ( $items, $args )
        {
            if ($args->theme_location == 'primary')
            {
                $items .= '<li id="nav-menu-item-side" class="menu-item">' .
                    '<a href="#" class="open-sidebar" onclick="javascript:return false;">' .
                    'MORE  <i class="icon-menu"></i>' .
                    '</a>' .
                    '</li>';
            }
            return $items;
        }
    }
    

    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: Portfolio link to page – Similar solution #138884
     Radu
    Moderator

    Hi,

    There is no any other similar element with that effect, you can use a row divided by 3 or 4 and inside each column you will add single image element

    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: Login not working #138883
     Radu
    Moderator
    Not marked as solution
    in reply to: shows an error after login in from FB #138881
     Radu
    Moderator

    Hi,

    You using a plugin that shows that message right ?

    “Please upload your profile photo to start using this site.”

    Contact the plugin author for that….

    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: Microformat tag #138879
     Radu
    Moderator
    Ok Cheers R.
    in reply to: KLEO GRID #138878
     Radu
    Moderator

    Hi,

    For the full-width container problem, we will release a new update tomorrow .

    If you cannot see all elements in Visual Composer please check if those are activated from wp-admin -> Visual Composer -> Role manager -> Elements

    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: BuddyPress Activity Plus and other issues #138877
     Radu
    Moderator
    Not marked as solution
    in reply to: Uber Menu behind Content #138871
     Radu
    Moderator
    Not marked as solution
    in reply to: Change color of Matching Percentage Animation #138868
     Radu
    Moderator

    Hi,

    Sorry for delayed response, we will release today at night an update that will allows you to have an option in theme options -> matching system that allows you to have possibility to change that colors

    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: bugs and issues #138867
     Radu
    Moderator
    Not marked as solution
    in reply to: Help make transparent CSS #138865
     Radu
    Moderator

    Hi,

    For fixing sidebar, I’ve suggested that topic read it and to inspire from it an
    Replace widgets-container with your desired class or div that you want to float for default you can use the next snippet that will keep all sidebar widgets floating

    COPY CODE
    
    <script>
    jQuery( document ).ready(function() {
    	(function(jQuery){
    	        jQuery('.widgets-container').affix({
    	          offset: {
    	            top: 100,
    	            bottom: 0,
    	          }
    	        });
    	    })
    	( jQuery );
    });
    </script>
    
    

    If you are not ok with this use this instead

    COPY CODE
    
    .sidebar .widgets-container {
        position: fixed;
    }
    

    Both methods works choose what you want, for further custom development contact a developer.

    Here are the CSS selectors for small border before the titles

    COPY CODE
    
    .masonry-listing .format-video .post-title
    { border-left: 3px solid #07baf4; }
    .masonry-listing .format-standard .post-title
    { border-left: 3px solid #8a52ad; }
    .masonry-listing .format-image .post-title
    { border-left: 3px solid #fc604a; }
    .masonry-listing .format-gallery .post-title
    { border-left: 3px solid #43ae9e; }
    .masonry-listing .format-audio .post-title
    { border-left: 3px solid #367bb7; }
    .masonry-listing .format-link .inner-content
    { margin-top: 10px; border-left: 3px solid #00c5c4; }
    .masonry-listing .format-aside .post-title
    { border-left: 3px solid #ee2534; }
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick 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: BACKGROUND IMAGE #138858
     Radu
    Moderator

    the singles options for that are those :

    So,play with the marked field

    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: IFrame #138856
     Radu
    Moderator

    HI,

    I cannot identify where it’s placed the iframe provide a screenshot that pointing out the 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: kleo_ajax_results #138855
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    I provided the solution for coloring those in another ticket.

    If you aren’t able to save theme options provide admin credentials to take a look please.

    FYI:it will need to de-activate all plugins and 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
     Radu
    Moderator

    Hi,

    Yes…you right this wasn’t controlled by the VC

    Use this selector

    COPY CODE
    
    .home #main-container .template-page { padding-top:0px;}
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick 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: BuddyPress Activity & Group profile pages not working #138852
     Radu
    Moderator

    Hi,

    Make sure to have groups component activated from wp-admin -> settings -> buddypres ->

    And also the pages assigned from pages tab

    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: BuddyPress Activity Plus and other issues #138851
     Radu
    Moderator
    Not marked as solution
    in reply to: error plugins. Site goes blank #138849
     Radu
    Moderator

    ALL time when you receive 500 error or blank page you should enable wp debug to see what’ts happens there

    In most cases this it’s caused by memory limit : http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html

    If not follow the next procedure

    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
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    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: Page Comments #138848
     Radu
    Moderator

    This haves some comments ? : http://www.drewamca.com/iadedegisim-kosullari-ve-bedenler/ if yes try to remove all of these for testing purposes .

    I saw that you have changed the pass in the last instance I want to try something

    I cannot reproduce this issue on my local installation this is odd and I’ve shown you that this works ok for your pages posts…

    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 function #138847
     Radu
    Moderator

    Add also this CSS

    COPY CODE
    
    .kleo-search-form #searchform .input-lg { opacity:1 !important;}
    

    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: Cannot Edit Members Page with Page Builder #138846
     Radu
    Moderator

    Hi,

    The pages that cannot be edited are all BuddyPress related pages because they are generated dynamically by the certain plugin.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Frontpa and bog photo #138845
     Radu
    Moderator
    Not marked as solution
    in reply to: translation issue #138753
     Radu
    Moderator
    Not marked as solution
    in reply to: IFrame #138752
     Radu
    Moderator

    Can you please provide link to that certain page to can see how it looks on mobile/desktop ?

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

    Has that group some activity in it ?

    If you post a dummy post it appears?

    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 hashtag? #138750
     Radu
    Moderator

    DO you have tried this plugin ?

    https://wordpress.org/plugins/hashbuddy/

    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 chante the colors of the progress bar #138749
     Radu
    Moderator
    Hi, Provide link and account to can take a closer look Cheers R.
    in reply to: Frontpa and bog photo #138635
     Radu
    Moderator
    Not marked as solution
    in reply to: Cannot Edit Members Page with Page Builder #138629
     Radu
    Moderator

    Hi,

    That it’s not possible because the content of member pages it’s generated dynamically not thru that page builder editor

    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: Frontpa and bog photo #138628
     Radu
    Moderator
    Not marked as solution
    in reply to: customize page 404 #138627
     Radu
    Moderator

    Hi,

    Try with this plugin : https://wordpress.org/plugins/404page/

    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

    There is something from visual composer check for inner row or column for padding-top value.

    Cheers
    R.

    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 - 10,121 through 10,160 (of 20,101 total)

Log in with your credentials

Forgot your details?