Forum Replies Created

Viewing 40 posts - 7,121 through 7,160 (of 20,101 total)
  • Author
  •  Radu
    Moderator

    Hi,

    Now I’ve noticed that you use php7 version, this may be a cause, do you have the possibility to switch to 5.6 and to test again?

    Kleo it’s fully compatible with php7 but some plugins maybe yes or not

    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 styles strange behaviour again? #160413
     Radu
    Moderator

    Hi,

    Sorry for the delay,

    Odd issue, did you have tried to reproduce that with no plugins active ?!

    An alternative for that it’s to place all style.css code from child theme to the quick CSS area, in this way the CSS will be rendered in wp head instead to load new file to the theme.

    I haven’t heard about this issue at the rest of the KLEO customers

    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: Sortcode issues #160412
     Radu
    Moderator

    Hi,

    In the first instance try to update the theme to the latest version, then if it’s the same try to de-activate all plugins excluding BuddyPress and PmPro plugin and check again.

    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: Error connecting to database #160410
     Radu
    Moderator

    Hi,
    You can check with p3 profiler what plugin consumes majority of the resources https://ro.wordpress.org/plugins/p3-profiler/

    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: raw java script not working #160409
     Radu
    Moderator
    Not marked as solution
    in reply to: LOGIN & REGISTRATION #160406
     Radu
    Moderator
    Not marked as solution
    in reply to: how to implement few requirements #160402
     Radu
    Moderator

    Hi,

    1. Paste this code to the functions.php file from child theme

    COPY CODE
    
    if (!function_exists('kleo_bp_search_form_horizontal')):
        function kleo_bp_search_form_horizontal ($show_button = true, $before_form=false)
        {
            global $bp_search_fields;
            if (function_exists('bp_is_active') && bp_is_active( 'xprofile' )) {}
            else
            {
                echo apply_filters('kleo_search_horizontal_no_buddypress','');
                return;
            }
    
            if (!isset($bp_search_fields['fields_horizontal']) || count ((array)$bp_search_fields['fields_horizontal']) == 0)
            {
                echo apply_filters('kleo_search_horizontal_no_fields','');
                return;
            }
    
            ?>
            <div id="search-bar">
                <div class="row">
                    <!--Search form-->
                    <form id="horizontal_search" action="<?php echo bp_get_root_domain (). '/'. bp_get_members_root_slug (). '/' ?>" method="get" class="<?php echo apply_filters('bp_search_horiz_extra_class','custom');?> dir-form twelve columns custom">
                        <div class="row">
                            <div class="one column hz-submit">
                                <button class="small button radius"><i class="icon-search"></i></button>
                            </div>
                            <?php if ($before_form || (isset($bp_search_fields['before_form_horizontal']) && !empty($bp_search_fields['before_form_horizontal']) ) ) : ?>
                                <div class="two columns">
                                    <label class="bp_search_form_filter"><?php if($before_form) echo __($before_form, 'kleo_framework'); else echo __($bp_search_fields['before_form_horizontal'],'kleo_framework');?></label>
                                </div>
                            <?php endif; ?>
    
                            <?php
                            $count = 0;
                            foreach ($bp_search_fields['fields_horizontal'] as $sf)
                            {
                                $count++;
    
                                $fname = 'field_'. $sf;
                                $posted = isset($_GET[$fname])?$_GET[$fname]:'';
                                $posted_to = isset($_GET[$fname. '_to'])?$_GET[$fname. '_to']:'';
    
                                $field = new BP_XProfile_Field ($sf);
                                $options = $field->get_children ();
    
                                if ( isset( $bp_search_fields['agerange'] ) && $sf == $bp_search_fields['agerange'] )
                                {
                                    $from = ($posted == '')? '': (int)$posted;
                                    $to = ($posted_to == '')?'': (int)$posted_to;
                                    if ($to != '' && $to < $from) $to = $from;
    
                                    echo '<div class="two columns hz-agerange hz-from">
                                    <select name="'.$fname.'" class="expand customDropdown">';
                                    echo '<option value="">'.__( (isset($bp_search_fields['agelabel'])?$bp_search_fields['agelabel']:$field->name), 'kleo_framework').' '.__('from', 'kleo_framework').'</option>';
                                    for($i=sq_option('buddypress_age_start');$i <= sq_option('buddypress_age_end');$i++)
                                    {
                                        echo '<option value="'.$i.'" '.get_selected($fname, $i, $from).' >'.$i.'</option>';
                                    }
                                    echo '</select>
                                  </div>';
    
                                    echo '<div class="two columns hz-agerange hz-to">
                                    <select name="'.$fname.'_to" class="expand customDropdown">';
                                    echo '<option value="">'.__( (isset($bp_search_fields['agelabel'])?$bp_search_fields['agelabel']:$field->name), 'kleo_framework').' '.__('to', 'kleo_framework').'</option>';
                                    for($i=sq_option('buddypress_age_start');$i <= sq_option('buddypress_age_end');$i++)
                                    {
                                        echo '<option value="'.$i.'" '.get_selected($fname.'_to', $i, $to).' >'.$i.'</option>';
                                    }
                                    echo ' </select>
                                  </div>';
                                    continue;
                                }
    
                                if ($sf == $bp_search_fields['numrange'])
                                {
                                    $from = ($posted == '' && $posted_to == '')? '': (float)$posted;
                                    $to = ($posted_to == '')? $from: (float)$posted_to;
                                    if ($to < $from)  $to = $from;
    
                                    echo '<div class="two columns hz-numrange hz-from">
                                  <input type="text" name="'.$fname.'" value="'.$from.'" placeholder="'.__( $field->name, 'kleo_framework').' '.__('from', 'kleo_framework').'" >
                                  </div>';
                                    echo '<div class="two columns hz-numrange hz-to">
                                      <input type="text" name="'.$fname.'_to" value="'.$to.'" placeholder="'.__( $field->name, 'kleo_framework').' '.__('to', 'kleo_framework').'" >
                                  </div>';
    
                                    continue;
                                }
    
                                switch ($field->type):
    
                                    case 'textarea':
                                        $value = esc_attr (stripslashes ($posted));
                                        echo "<div class='two columns hz-textarea'><input type='text' name='$fname' id='$fname' value='$value' placeholder='".__( $field->name, 'kleo_framework')."' /></div>";
                                        break;
    
                                    case 'selectbox':
                                        echo "<div class='two columns hz-select'><select class='expand' name='$fname' id='$fname'>";
                                        echo "<option value=''>".__( $field->name, 'kleo_framework')."</option>";
                                        foreach ($options as $option)
                                        {
                                            $option->name = trim ($option->name);
                                            $value = esc_attr (stripslashes ($option->name));
                                            $selected = ($option->name == $posted)? "selected='selected'": "";
                                            echo "<option $selected value='$value'>".__($value,'kleo_framework')."</option>";
                                        }
                                        echo "</select></div>";
                                        break;
    
                                    case 'multiselectbox':
                                        echo "<div class='two columns hz-multiselect'><select ".apply_filters('kleo_bp_search_multiselect_attributes',"multiple='multiple' data-customforms='disabled'")." class='expand' name='{$fname}[]' id='$fname'>";
                                        echo "<option value=''>".__( $field->name, 'kleo_framework')."</option>";
                                        foreach ($options as $option)
                                        {
                                            $option->name = trim ($option->name);
                                            $value = esc_attr (stripslashes ($option->name));
                                            $selected = (in_array ($option->name, (array)$posted))? "selected='selected'": "";
                                            echo "<option $selected value='$value'>".__($value,'kleo_framework')."</option>";
                                        }
                                        echo "</select></div>";
                                        break;
    
                                    case 'radio':
                                        echo "<div class='two columns hz-radio'>";
                                        echo "<label>".__( $field->name, 'kleo_framework')."</label>";
                                        echo '</div>';
    
                                        foreach ($options as $option)
                                        {
                                            $option->name = trim ($option->name);
                                            $value = esc_attr (stripslashes ($option->name));
                                            $selected = ($option->name == $posted)? "checked='checked'": "";
                                            echo "<div class='two columns bglabel'>";
                                            echo "<label><input $selected type='radio' name='$fname' value='$value'> ".__($value,'kleo_framework')."</label>";
                                            echo '</div>';
                                        }
                                        break;
    
                                    case 'checkbox':
                                        echo "<div class='two columns hz-checkbox-name'>";
                                        echo "<label>".__( $field->name, 'kleo_framework')."</label>";
                                        echo '</div>';
    
                                        foreach ($options as $option)
                                        {
                                            $option->name = trim ($option->name);
                                            $value = esc_attr (stripslashes ($option->name));
                                            $selected = (in_array ($option->name, (array)$posted))? "checked='checked'": "";
                                            echo "<div class='two columns bglabel hz-checkbox'>";
                                            echo "<label><input $selected type='checkbox' name='{$fname}[]' value='$value'> ".__($value,'kleo_framework')."</label>";
                                            echo '</div>';
                                        }
                                        break;
    
                                    case 'textbox':
                                    default:
                                        $value = esc_attr (stripslashes ($posted));
    
                                        echo "<div class='two columns hz-textbox'><input type='text' name='$fname' id='$fname' value='$value' placeholder='".__( $field->name, 'kleo_framework')."' /></div>";
                                        break;
    
                                endswitch;
    
                            }
    
                            echo "<input type='hidden' name='bs' value=' ' />";
                            do_action('kleo_bp_search_add_data');
                            ?>
                            <?php if ($show_button): ?>
                                <div class="two columns hz-submit">
                                    <button class="small button radius"><i class="icon-search"></i></button>
                                </div>
                            <?php else: ?>
                                <script type="text/javascript">
                                    jQuery(document).ready(function($) {
                                        $("input,select,radio,checkbox","#horizontal_search").change(function() {
                                            $("#horizontal_search").submit();
                                        });
                                    });
                                </script>
                            <?php endif;?>
    
                        </div>
                    </form>
                    <!--end search form-->
                </div><!--end row-->
            </div><!--end Search bar-->
            <?php
        }
    endif;
    

    2. I don’t understand the scenario about that, can you elaborate a little, please ?

    3. Maybe using this plugin : https://wordpress.org/plugins/bp-xprofile-range-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: A few questions #160400
     Radu
    Moderator
    Not marked as solution
    in reply to: Footer Issues #160394
     Radu
    Moderator
    Not marked as solution
    in reply to: Only one youtube video seems to load funny #160390
     Radu
    Moderator

    Hi,

    Those links are dead (404),

    http://tonedistrict.ca/video/fresque-magic-mushroom-original-mix-td001/ http://tonedistrict.ca/video/fresque-move-it-original-mix-td002/

    Where I can see that, can you made a video to see exactly how that can be produced, 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: 404 error pages #160389
     Radu
    Moderator

    Hi,

    It’s hard to say what causes that but could be a good clue in what page of after what operation you encounter that 404 page, provide there the link of that 404 pages maybe the URL contains some clues.

    If you are live and you cannot make hard debug by de-activate plugins for a long time for testing and enabling wp_debug (i will paste the procedure below) i recommend you to clone your actual install(files+database) to a subdomain for testing purposes and there to de-activate all plugins excluding Visual Composer, K-elements and your Courses plugin.

    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: hyperlink that covers the whole area of a column #160387
     Radu
    Moderator

    Hi,

    There is no element ready to do that cuz somehow it’s tricky in some cases but you can use this workaround

    Add text element in VC and in text mode add this code

    <a class="full-column-link" href="https://google.com">Full column link</a>

    CSS :

    COPY CODE
    a.full-column-link {
        position: absolute;
        display: block !important;
        width: 100%;
        height: 100%;
        min-height: 700px;
        z-index: 9989;
    }

    If the link doesn’t cover all column on height change the min-height 700px to a higher value

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

    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: Match Not Working #160383
     Radu
    Moderator

    Hi,

    I’ve tried to reproduce that on my local install I’m using latest sweet date theme version but it works on my local install, please de-activate all plugins except buddypress and check again, it still not works re-upload theme over the existing theme files by overwritten them.

    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: Alternate Background Color to Transparent #160379
     Radu
    Moderator

    Hi,

    Make sure to have latest theme version and the theme recommended plugins updated!

    Normally from here you can change the breadcrumb section : wp-admin -> theme options -> styling options ->

    To providing a CSS selector for customizing “manually” the breadcrumb area I need to see the breadcrumbs on your site but I cannot see it, where I can see that? provide a screenshot that shows 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: Geo My WP #160375
     Radu
    Moderator

    Hi,

    From what I’ve tested on your site the search by ZIP code works and also searching by city only, the geo my wp has maximum 200 miles radius in if you need more radius value ask the geo my WP.
    If you want to test if the radius function works to create a user with the address at the 30 miles of new work and test it if appears when you increase the radius.

    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: Woocommerce Photoswipe integration 4.2.4 #160264
     Radu
    Moderator

    Hi,

    Thank you, we try to do the best, In first instance, I will add to the improvement list, we will investigate, reproduce and we will fix !!

    We will let you know when we do something related to this and maybe provide the temporary solution until the update that will contain that.

    Have a nice day

    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: WooCommerce Coupon Code Input #160263
     Radu
    Moderator

    Hi,

    I see that also on my local install i will add this to bug list and i will let you know and provide a temporary fix until the update.

    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 full width overlay #160262
     Radu
    Moderator

    Ok then
    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: Can I hide the left menu for not logged in users #160261
     Radu
    Moderator

    Hi,

    You can edit that, by adding your custom items to that menu from wp-admin -> appearance -> menus ->
    But make sure to add the items to the Top Right Header Menu

    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: Form 7 not displaying on mobile #160259
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    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: WooCommerce Bug? #160257
     Radu
    Moderator

    Hi,

    You can make a test order to test 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: Display the age of BuddyPress users in Kleo #160256
     Radu
    Moderator

    Hi,

    If you need more than that, you will have to edit the members-loop.php file.

    In the marked line there you should paste the content the before last active

    In your case instead, to use that function (if you have added to funciton.php file comment it or delete it) you will have to paste the next code in the marked line.

    COPY CODE
    
     $location = bp_get_member_profile_data('field=Location');
        $specialization = bp_get_member_profile_data('field=Specialization');
     
        if ($specialization || $location) {
            echo '<div class="mdetcenter">'. 'Location : ' . $location . '</div>';
            echo '<div class="mdetcenter">'. 'Specialization : ' . $specialization . '</div>';
        }
    

    To have the changes over update you should copy this file : /wp-content/themes/kleo/buddypress/members/members-loop.php to child theme in same path (/wp-content/themes/kleo-child/buddypress/members/)

    That’s all
    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: Safari Login Issue #160255
     Radu
    Moderator

    Hi,

    Using this function and replacing /my-route-after-redirect/ with your desired landing URL after login it should solve your problem

    COPY CODE
    
    function sq7_rdu_redirect( $redirect_to, $request, $user ) {
        $redirect_to = '/my-route-after-redirect/';
        return $redirect_to;
    }
    add_filter('login_redirect', 'sq7_rdu_redirect', 11, 3);

    NOTE : Child theme needs to be installed and activated.

    The function needs to be added in wp-content/themes/kleo-child/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 Form mess #160254
     Radu
    Moderator
    Not marked as solution
    in reply to: Portfolio pagination broken after latest updates #160252
     Radu
    Moderator

    Hi,

    I was able to reproduce that I’ve added to the bug list it should be fixed soon, we will let you know the solution until we release an update that fix 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: Buddypress Notifications #160251
     Radu
    Moderator

    /wp-content/languages/plugins/buddypress-de_DE.po

    Instead of de_DE there should be your lang code

    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 & Theme Customiser #160250
     Radu
    Moderator

    Hi,

    You can use this plugin to force users to choose a strong pass: https://wordpress.org/plugins/force-strong-passwords/

    For wp security, i recommend you WangGuard plugin https://wordpress.org/plugins/wangguard/

    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: Icon size #160249
     Radu
    Moderator

    Hi,

    there is no specific selector for the icon/emoji so, I cannot give you a CSS solution but I recommend you to test this plugin: https://wordpress.org/plugins/wp-monalisa/

    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: Button Links #160248
     Radu
    Moderator
    Not marked as solution
    in reply to: Member Alphabetical #160246
     Radu
    Moderator
    Not marked as solution
    in reply to: Expand Profile Tabs – Buddypress #160225
     Radu
    Moderator

    Hi,

    I don’t understand they are aleady expanded ? Or what you mean?

    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: line on user buddypress activity #160224
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    To can have in other page the masonry layout like in blog you should use Kleo Post Grid insead of Post Grid from Visual Composer

    that’s all

    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
    Not marked as solution
    in reply to: Footer Issues #159903
     Radu
    Moderator
    Not marked as solution
    in reply to: Problem with theme registration system #159902
     Radu
    Moderator

    Hi,

    If you have enavato toolkit plugin installed, de-activate and delete it,

    Download a new copy from here: https://github.com/envato/envato-wordpress-toolkit install it again, and add the username and apikey

    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: Profile & Group Icons style – light icons #159901
     Radu
    Moderator
    Not marked as solution
    in reply to: Suspicious email activity #159900
     Radu
    Moderator
    Not marked as solution
    in reply to: Member’s age showing 46 #159899
     Radu
    Moderator

    Hi,

    Rhe ages will be updated
    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 - 7,121 through 7,160 (of 20,101 total)

Log in with your credentials

Forgot your details?