Forum Replies Created

Viewing 40 posts - 3,841 through 3,880 (of 20,101 total)
  • Author
  • in reply to: Display theme : Members > Non Members #189369
     Radu
    Moderator

    I see but it may be a general issue or not and it’s good to check , so you will have to check if the same behaviour happens using default wp theme that can be activated from wp-admin -> appearance -> themes.

    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: footer level 2 #189362
     Radu
    Moderator
    Not marked as solution
    in reply to: Cannot update group details – Bug? #189359
     Radu
    Moderator
    Not marked as solution
    in reply to: Anchor links not working in Kleo #189358
     Radu
    Moderator

    Yes, after the update will work if the dev mode off

    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: Logo #189357
     Radu
    Moderator

    What small logo ? can you screenshot and points out ?

    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
     Radu
    Moderator
    Not marked as solution
    in reply to: visualization problems #189353
     Radu
    Moderator

    Hi,

    did you installed or added some snippet recently ? if yes revert back or de activate and check it.

    Also did you have enabled some speed optimizations services like cloudflare ? if yes switch off and test.

    Did you encounter the same issue on our demo ? in the same browsers?

    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 css

    COPY CODE
    
    .item-desc a,.item-desc p {
        word-break: break-all !important;
    }
    

    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: Support site is locked #189349
     Radu
    Moderator
    Not marked as solution
    in reply to: Breadcrumb issue #189348
     Radu
    Moderator
    Not marked as solution
    in reply to: Schema.org Question #189347
     Radu
    Moderator

    There is no easy way to do that, i will let you know the files from the menu and breadcrumbs are builded if you really need do it, but you need to have strong php knowledges.

    1. Menu : /wp-content/themes/kleo/lib/menu-walker.php to can overwrite this file you can copy the entire code from if ( ! class_exists( ‘kleo_walker_nav_menu’ ) ) { until the end ( .see screenshot )

    the code can be copied to wp-content/themes/kleo-child/functions.php

    2. The breadcrumb class and functions cannot be overwritten on the html level in child, here it’s the markup for the breadcrumb area wp-content/themes/kleo/kleo-framework/lib/function-breadcrumb.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: Display theme : Members > Non Members #189346
     Radu
    Moderator

    Hi,

    Related to this scenario thaht you explain

    My only problem comes from menus and categories. When I go to the menu, not being connected to the site, so as if I was a non-member, I do not see the article, it does not appear. I made a screenshot to my first post to show you the difference in posting between a member and a non member.

    So I think it’s a theme problem and not a setup problem with paidmembership.

    Tell me if you encounter the same issue using default wp 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: Search functionality #189344
     Radu
    Moderator

    Hi,

    Just add this function to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    /*Check if the function run already. */
    if(!function_exists('sq_kleo_ajax_search_on_default_search')) {
        /*Add kleo_search_form top default search page wordpress only when k-elements plugin it's activated*/
        function sq_kleo_ajax_search_on_default_search()
        {   /* Check if K-elements plugin it-s activated. */
            if (defined('K_ELEM_PLUGIN_FILE')) {
                if (is_search()) {
                    echo '<div class="sq-kleo-ajax-seach-page container" style="padding-bottom:20px">';
                    echo do_shortcode('[kleo_search_form placeholder="Search here.."]');
                    echo '</div>';
                }
            }
        }
        add_action('kleo_before_main_content', 'sq_kleo_ajax_search_on_default_search');
    }
    

    We will include this in next theme update, it’s a very good idea to show the search all time on the default wp search page.

    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: Update out of date files. #189292
     Radu
    Moderator
    Not marked as solution
    in reply to: Logo #189278
     Radu
    Moderator

    Hi,

    You can add what logo you want

    I’ve added to test in html source a square logo and it looks ok,

    Using this css you can control the max with of the logo

    COPY CODE
    
    img#logo_img {
        max-width: 80px;
    }
    

    Add the css to wp-admin -> theme options -> styling options -> 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: How to remove matching? #189277
     Radu
    Moderator

    Hi,

    By adding this css to quick css area

    COPY CODE
    
    .circular-item {
        display: none !important;
    }
    

    Add the css to wp-admmin -> theme options -> styling options -> 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: Facebook login doesn(t work on mobile #189276
     Radu
    Moderator
    Not marked as solution
    in reply to: Anchor links not working in Kleo #189275
     Radu
    Moderator

    Then make sure to load the unminified file by activating development mode under wp-admin -> theme options -> miscellaneous -> Development mode -> ON

    Did you had done this ?

    Make sure to empty all caches.

    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 issue was some cat’s added in the shortcode

    I’ve removed that and now works as it should

    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 shortcode #189270
     Radu
    Moderator

    Hi,

    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: whatsapp not opening #189269
     Radu
    Moderator
    Not marked as solution
    in reply to: Schema.org Question #189268
     Radu
    Moderator

    Hi,

    Can you please be more specific ? what you need more exactly to change at code level ?

    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: support site is locked #189267
     Radu
    Moderator
    Not marked as solution
    in reply to: Next Kleo update? #189264
     Radu
    Moderator

    Hi,

    Check the new theme update will contain Woocommerce 3.3.1 compatibility fix.

    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: 3 New building Issues #189263
     Radu
    Moderator
    Not marked as solution
    in reply to: Breadcrumb issue #189262
     Radu
    Moderator
    Not marked as solution
    in reply to: No page tiles ion profile pages?? #189193
     Radu
    Moderator
    Not marked as solution
    in reply to: Preloading #189192
     Radu
    Moderator

    Hi,

    That depends by the user internet speed and how you serve the files, i recommend you this preloader : https://wordpress.org/plugins/the-preloader/

    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: 3 New building Issues #189189
     Radu
    Moderator
    Not marked as solution
    in reply to: error theme sweetdate and buddypress rtmedia #189186
     Radu
    Moderator
    Not marked as solution
    in reply to: Breadcrumb issue #189185
     Radu
    Moderator
    Not marked as solution
    in reply to: CSS for Geo Directory #189184
     Radu
    Moderator

    At this moment on any page it says “502 Bad Gateway”

    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 for Geo Directory #189183
     Radu
    Moderator

    Hi,

    Tried to switch to default theme to test something and a internal 500 error occurred, can you please provide also the FTP to can see what debug says ?

    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: No page tiles ion profile pages?? #189182
     Radu
    Moderator
    Not marked as solution
    in reply to: CSS for Geo Directory #189181
     Radu
    Moderator

    Hi,

    Where, in what page the sidebar with that widgets that shows the issue appears ? cuz cannot find it please
    this image: https://cdn.seventhqueen.com/sq-support/wp-content/uploads/2018/01/Bildschirmfoto-2018-01-18-um-08.13.06.jpg

    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 shortcode #189180
     Radu
    Moderator

    Hi,

    The issue there it’s because you had added the search in a layer from revolution slider where the rev slider container cannot be higher than the slider size when the results are shown.You can try to make the entire slider taller. Check in wp-admin -> revolution slider -> your slider.

    I taught it’s a a Z-index issue but the div that contains whole search cannot be pulled out of that containers.

    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 functionality #189178
     Radu
    Moderator

    Hi,

    The live search it’s completely separated by the default wp result search page, so they are different there is no easy way to make the global search results to look like ajax search result.

    Our ajax search search in all available CPT’s that are repopulated there or in any custom post type.

    IF the search isn’t made on certain CTP try to add them from drapdown, instead to leave empty add all.

    In the below screenshot it’s shown that the search looks also in the topics

    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,

    You will have to send from that plugin with a unique id to can have those all time like the social articles does, see example below

    So you will have to ask the gift plugin developer if it’s possible to 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: How to delete age info on Members page #189168
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 3,841 through 3,880 (of 20,101 total)

Log in with your credentials

Forgot your details?