Forum Replies Created

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

    Hi,

    Please provide entire page source on a txt file or on pastebin.com

    Most sure there should be added a CSS rule, something like

    .your-post-type .container {max-width:none !important;}

    Show me the page source

    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: Cannot activate Jetpack Premium #161254
     Radu
    Moderator
    Not marked as solution
    in reply to: Woocommerce Product Page Tabs #161253
     Radu
    Moderator

    Where can I see that? provide direct 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: Membership #161252
     Radu
    Moderator
    Not marked as solution
    in reply to: fatal errors + can’t update to 4.2.4.1 #161248
     Radu
    Moderator

    Hi,

    Maybe it’s a PHP code in child theme that hooks in that error line, try to de-activate child theme first, then re-upload theme files over the existing ones via FTP in wp-content/themes/kleo/

    Here you should be able to update the theme to latest version.

    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: An invisible page navigator. #161247
     Radu
    Moderator

    Hi,

    I was able to login, take a look at the next screeshot

    There it’s a js error related to this script and this can cause the problem with pagination.

    Try to correct that or to remove it to test if it works without that error, if still not works, de-activate all plugins and child theme and check again.

    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: An invisible page navigator. #161246
     Radu
    Moderator

    Hi,

    Where the navigation disappears, in homepage ?

    I saw a lot of posts maybe they are all, I’ve tried to set 20 per page but the admin credentials are not correct

    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: Problem Ajax Search Thema #161245
     Radu
    Moderator
    Not marked as solution
    in reply to: WooCommerce Bug? #161244
     Radu
    Moderator

    Hi,


    @randrcomputers
    check this plugin: https://ro.wordpress.org/plugins/disable-wordpress-updates/ but before make sure to not have a plugin that has set those already for auto updates

    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: What is the custom field for ‘media’ #161243
     Radu
    Moderator

    Hi,

    I’ve checked once the name it’s the same name _kleo_embed

    Make sure to configure the plugin correctly, try to ask the plugin support about 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: Errors and Warnings in php 7 test #161241
     Radu
    Moderator
    Not marked as solution
    in reply to: private messages #161240
     Radu
    Moderator

    Replyed you here : https://archived.seventhqueen.com/forums/topic/messages-2

    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: Messages #161239
     Radu
    Moderator

    Sorry, actually it’s sweetdate-child not kleo-child

    So the path will be ; wp-content/themes/sweetdate-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: Right menu activity count #161237
     Radu
    Moderator

    Hi,

    Please provide an account to can see the menu, it’s available only for logged in users.

    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 add a Registration Form on a page or post? #161236
     Radu
    Moderator

    Hi,

    Add the next code to your child theme ( wp-content/themes/sweetdata-child/functions.php )
    https://pastebin.com/raw/c8FMss0c

    Then you will be able to use those shortcodes in template or in posts or pages

    [kleo_search_register_form]
    [kleo_search_form_horizontal]

    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: BBpress Avatar and user name positon #161156
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Ok,

    Do you have the possibility to put the install somewhere online to can take a look at that? To can provide an accurate solution?

    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 Mobile Theme #161146
     Radu
    Moderator

    Hi,

    I think that it’s caused by the jetpack module that has mobile theme enabled or something similar, check on jetpack settings or de-activate it to check.

    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: Messages #161145
     Radu
    Moderator

    Hi,
    In that ticket it’s provided this snippet

    COPY CODE
    
    
    /* Restrict email messages content to non paying members */
    if ( ! function_exists('kleo_pmpro_restrict_pm_email_content')) {
        function kleo_pmpro_restrict_pm_email_content($email_content, $sender_name, $subject, $content, $message_link, $settings_link, $ud)
        {
    
            $restrict_message = false;
            $restrict_options = kleo_memberships();
            $area = 'pm';
    
            if (pmpro_getMembershipLevelForUser($ud->ID)) {
                $current_level_obj = pmpro_getMembershipLevelForUser($ud->ID);
                $current_level = $current_level_obj->ID;
    
                //if restrict my level
                if ($restrict_options[$area]['type'] == 2 && isset($restrict_options[$area]['levels']) && is_array($restrict_options[$area]['levels']) && !empty($restrict_options[$area]['levels']) && in_array($current_level, $restrict_options[$area]['levels'])) {
                    $restrict_message = true;
                }
    
            //not a member
            } else {
                if ($restrict_options[$area]['type'] == 2 && isset($restrict_options[$area]['not_member']) && $restrict_options[$area]['not_member'] == 1) {
                    $restrict_message = true;
                }
            }
    
            if ($restrict_message) {
    
                $content = 'Your current membership does not allow private messages access.';
                $email_content = sprintf(__(
                    '%1$s sent you a new message:
    
    Subject: %2$s
    
    "%3$s"
    
    To view and read your messages please log in and visit: %4$s
    
    ---------------------
    ', 'buddypress'), $sender_name, $subject, $content, $message_link);
    
                // Only show the disable notifications line if the settings component is enabled
                if (bp_is_active('settings')) {
                    $email_content .= sprintf(__('To disable these notifications, please log in and go to: %s', 'buddypress'), $settings_link);
                }
    
                return $email_content;
            }
    
            return $email_content;
    
        }
    }
    add_filter( 'messages_notification_new_message_message', 'kleo_pmpro_restrict_pm_email_content', 11, 7 );
    

    Php codes should be added to wp-content/themes/kleo-child/functions.php

    And beside the code another think was to have all plugins and theme updated to latest version.

    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 Close site for construction? #161144
     Radu
    Moderator
    Not marked as solution
    in reply to: Bugs listing and/or finding members #161142
     Radu
    Moderator
    Not marked as solution
    in reply to: Facebook login broken after update to 4.2.4 #161113
     Radu
    Moderator

    Hi,

    In inspect network, all resources are with https

    Where can I test the facebook login on your site?

    I cannot find the login pop up or URL

    Anyway try to activate re-activate the theme and all plugins and check again

    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: Expand widget area #161109
     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: New filter for groups #161107
     Radu
    Moderator

    Where you need in your case in the BuddyPress group page to see all group types, BuddyPress doesn’t pull all group types to list them into a navigation, this should be made custom or to be added to that filter.

    No quick solution for that, from what I see you ask development things and our support covers only small modifications and product questions.

    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: Blog url and breadcrumbs not showing. #161101
     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: Form 7 not displaying on mobile #161100
     Radu
    Moderator
    Not marked as solution
    in reply to: What is the custom field for ‘media’ #161098
     Radu
    Moderator

    Hi,

    You have type there not _kelo_embed, but _kleo_embed

    The previous user had confirmed the functionality

    Can you please make a screenshot that shows the field that should be populated with the video 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: Terms & Conditions, and other fields #161095
     Radu
    Moderator

    Hi,

    1. You can use this plugin and place shortcode where you need that https://rup.wordpress.org/plugins/terms-of-use-2/

    2. If you really need to add fields there here is responsible file : wp-content/plugins/k-elements/shortcodes/templates/kleo_register.php but you will need to know some PHP and html, if you will rewrite that file you should copy it to wp-content/themes/kleo-child/k_elements to can have the functionality that you need over the theme 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: Broken links in my Media Library #161087
     Radu
    Moderator
    Not marked as solution
    in reply to: Fatal error updating K Elements #161086
     Radu
    Moderator

    You’re welcome

    Just ignore 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
     Radu
    Moderator
    Not marked as solution
    in reply to: Cannot find homepage download for Agency Demo #161083
     Radu
    Moderator

    Hi,

    Home Agency it’s only a page ( Home Page ) import it from 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
     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: memberships vs. subscribers #161080
     Radu
    Moderator

    They are listed in wp-admin -> users -> subscribers

    The subscriber it’s the default role for wordpress or buddypress signup
    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? #161074
     Radu
    Moderator

    Hi,

    Yes, now I saw that I’ve tried to fix it right now it require more time that I’ve expected, I will add this to bug list and we will get back to you as soon as possible.

    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: BBpress Avatar and user name positon #161061
     Radu
    Moderator
    Not marked as solution
    in reply to: Testimonials show quotes instead of image #161058
     Radu
    Moderator

    Hi,
    I’ve made a copy of the kleo_testimonials.php file in the child theme k_elements folder to can patch this temporary.

    Let me know how it behaves and until the next k-elements update, we will improve this if it’s needed

    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,

    Add this function to wp-content/themes/kleo-child/functions.php after you change the my-post-type name from if( is_singular(‘my-post-type’) ) in the code below

    COPY CODE
    
    
    /* Switch kleo layout if is specific post type */
    function switch_layout_custom_cpt() {
        if( is_singular('my-post-type') ) {
            kleo_switch_layout( 'no', 15 );
        }
    }
    add_action('kleo_header', 'switch_layout_custom_cpt');
    /* End Switch kleo layout if is specific post type */
    
    

    NOTE : Child theme needs to be installed and activated.

    Let me know
    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: Image for next blog pop out #161043
     Radu
    Moderator

    I think I don’t understand what you need to achieve

    You want to remove image ?

    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 listing and/or finding members #160977
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 7,001 through 7,040 (of 20,101 total)

Log in with your credentials

Forgot your details?