Forum Replies Created

Viewing 40 posts - 3,881 through 3,920 (of 8,607 total)
  • Author
  • in reply to: Italian Translations .po and .mo files #34848
     Abe
    Keymaster

    Thank you very much @Nicole
    Please send them to abe@seventhqueen.com and I will include them in next update.

    Thanks again

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Question relating to PaidMembershipsPro #34847
     Abe
    Keymaster

    Hi, it should work but it could be something related to your database colation that should be GENERAL UTF8 CI. Try to do a check with your hosting

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Handling custom post types #34846
     Abe
    Keymaster

    Hi, I can add the do_action( ‘kleo_before_article_content’ ); just before the content so you can easily add that there.
    Another way you could do it is to hook at the the_content filter and prepend your content to the existing content like:

    COPY CODE
    
    function add_cpt_info($content) {
        if (get_post_type() == 'mystories') {
            $content = "content before here " . $content;
        } else if (get_post_type() == 'mychapter') {
            $content = "content before here " . $content;
        }    
        return $content;
    }
    add_filter('the_content', 'add_cpt_info');
    

    but the first one is more logic so I will update theme files and send them to you later today.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Profile does not appear #34845
     Abe
    Keymaster

    Hi, to understand your issues you should attach some screenshots or put links to those pages.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo Theme Relative Linking #34844
     Abe
    Keymaster

    Hi, since we use WordPress default functions and that is the way WordPress generates and saves them.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Change sidebar with functions.php #34843
     Abe
    Keymaster

    Hi, thanks for the suggestion. We will do that in next update.

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Contact Page GOOGLE MAP Icon #34841
     Abe
    Keymaster

    Hi, so you don’t change theme files, it is advised to copy contact page, template located in page-parts folder, into your child theme and replace the image in that file.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: WP 3.9 and Sweetdate Compatible? #34682
     Abe
    Keymaster

    @FD try to disable Simple Ads Managaer since there are some incompatibilities with WP 4.0

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Homepage shop #34623
     Abe
    Keymaster

    @bogdance please use the Visual composer to edit the revslider element

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Assign default Membership level at registration #34622
     Abe
    Keymaster

    well yeah.. or if you have developing skills try to search it yourself or hire a programmer

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: is it possible to integrate paysafecard to PMPro? #34621
     Abe
    Keymaster

    Hi, you should check their website and gateways integrations

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: forum images #34620
     Abe
    Keymaster

    @Andrepc1876 this is not theme related and it bbPress related. PLease use a plugin like https://wordpress.org/plugins/gd-bbpress-attachments/

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Custom VC broken with update #34471
     Abe
    Keymaster

    Indeed there should be no shortcodes there added by KLEO, thanks @sharmstr

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: CSS Customize Forum page / Topic Page #34470
     Abe
    Keymaster

    You should not change any css from plugin or theme since it is overwritten at update.
    Use a child theme and add you CSS in style.css. Copy the css you want to change in style.css and modify it there.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    well like any other field in Users – Profile fields

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Improving KLEO site speed with caching plugin #34462
     Abe
    Keymaster

    awesome @itt

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Mailchimp ''Subscribe'' Button Display #34459
     Abe
    Keymaster

    That should be achieved by CSS. here is what it should look like to fix it

    COPY CODE
    
    .mc4wp-form .btn-lg {
    padding: 10px 20px 11px 20px;
    font-size: 16px;
    line-height: 1.33;
    border-radius: 4px;
    margin: 0;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Mailchimp ''Subscribe'' Button Display #34457
     Abe
    Keymaster

    I don’t know how you came with that code since our example is like this as in the documentation
    https://archived.seventhqueen.com/wp-content/uploads/2014/07/mailchimp_form.txt

    https://archived.seventhqueen.com/documentation/kleo#mailchimp

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    @xopom I just registered on your site from Chrome and no error

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Recoloring – Style Cheat Sheet? #34447
     Abe
    Keymaster

    yes we will add something descriptive, thanks

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Mailchimp ''Subscribe'' Button Display #34443
     Abe
    Keymaster

    Hi, please put a link to your page to check it live and see where the problem comes from. Also try to disable the plugin loading styles

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Repeating profile group fields on profile-edit #34441
     Abe
    Keymaster

    that is strange and can’t think why that happens… try to play with settings on your cache

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Revolution slider not loading on mobile/ipad #34440
     Abe
    Keymaster

    I see not you removed the slider from home

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo admin-ajax.php cpu and memory load #34433
     Abe
    Keymaster

    Well I only did what I said above so if the notifications were off and high cpu maybe it is related to something else

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Prev & Next Posts #34430
     Abe
    Keymaster

    Please add this CSS to disable navigation.

    COPY CODE
    
    .pagination-sticky {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Recoloring – Style Cheat Sheet? #34429
     Abe
    Keymaster

    Hi, they are used to style many elements but we will try to add to the documentation the basic elements that are styled

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo admin-ajax.php cpu and memory load #34428
     Abe
    Keymaster

    I just set 0 in Theme options – Buddypress

    That is not relevant since if the request is not done then that line of code has no effect

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo admin-ajax.php cpu and memory load #34423
     Abe
    Keymaster

    Also the way to check if the request is done is to open browser developer tools and you can see if any request is made. From that panel with the requests you are seeing isn’t that correct since there could be users with the browser already opened and not affected by the change until they refresh the page to load the new setting

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo admin-ajax.php cpu and memory load #34421
     Abe
    Keymaster

    I have enabled the notication module from Settings – Buddypress, added the Notifications to the menu and set it to zero from Theme options – Buddypress and no notification refresh is occurring.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo admin-ajax.php cpu and memory load #34419
     Abe
    Keymaster

    @Melamory now it is not happening since you removed the notifications from the menu..

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo admin-ajax.php cpu and memory load #34401
     Abe
    Keymaster

    here, mark the reply as private

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Kleo admin-ajax.php cpu and memory load #34399
     Abe
    Keymaster

    yes you can give me access to take a look. give me WP and FTP access please

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: My '' Live Notification'' not working, plz help #34393
     Abe
    Keymaster

    Hi, have you disabled the ajax in Theme options – Buddypress in the refresh interval?

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Alternate Title Option? #34388
     Abe
    Keymaster

    Hi, It is not an option now but we will consider it for next updates. Thanks

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    I’ll open a support ticket on their site. Will keep you posted

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Homepage shop #34347
     Abe
    Keymaster

    @bogdance
    regarding no. 2 you need to be more specific on what icons you want to do that since it should be done by CSS. Put some screenshots

    regarding no.1.
    You should first import a slider then from your page edit using VIsual composer you add the Revolution Slider shortcode where you select which slider to use

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: demo-sweetdate.xml is missing #34338
     Abe
    Keymaster

    Just wanted to say that you should follow the docs since you said nothing is working 🙂

    The .zip downloaded from TF should be extracted first and you will see Demo content folder

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Unable to "Hide Information" in Title Section #34313
     Abe
    Keymaster

    Hi, that happens because is a wordpress archive and WP ignores them. You should hide it in general from Theme options – Header options – Main menu info

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Theme default pages not installed #34309
     Abe
    Keymaster

    @sharmstr your rock

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Theme default pages not installed #34306
     Abe
    Keymaster

    thanks @sharmstr

    in 2.2 version we are adding a 1 click demo install that will help for sure

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

Viewing 40 posts - 3,881 through 3,920 (of 8,607 total)

Log in with your credentials

Forgot your details?