Forum Replies Created

Viewing 40 posts - 3,921 through 3,960 (of 4,912 total)
  • Author
  • in reply to: Change color of post title on category archive page #177404
     Kieran_SQ
    Moderator

    Hi,

    Please use the below CSS in your KLEO Child theme’s style.css by going to Appearance > Editor > KLEO Child > Style.css or by going to Theme Options > General Settings > Scroll to: Quick CSS. Adjust the color as needed.

    For archives
    .archive h3.post-title.entry-title a {color: red !important;}

    For categories
    .category h3.post-title.entry-title a {color: red !important;}

    For specific categories only (adjust name to suit category used)
    .category-witch-types h3.post-title.entry-title a {color: red !important;}

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Website is crashing after edit — Please help #177403
     Kieran_SQ
    Moderator

    Hi,

    I have looked at your site and there appears to be a lot of files in your child theme, can you confirm that you uploaded the contents of your child theme backup into the child theme and not the contents of the main theme into the child theme.

    Side note: You should consider developing your site further on a staging site or on localhost (https://www.apachefriends.org). This will stop your live site going down if you use code that does not work. If in future you add code to functions.php that does not work and causes your site to go offline you do not need to restore a backup, you can login via FTP and edit the file directly to remove the snippet you pasted in.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator

    Hi,

    I will assign this to one of developers who will be able to assist you with the issues you’re facing regarding restrictions not working. They’ll be in touch as soon as they can (Mon-Fri East Europe Time).

    Thank you for your patience,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Transparent background menu #177401
     Kieran_SQ
    Moderator

    Hi,

    You can use the below CSS in your KLEO Child theme style.css by going to Appearance > Editor > KLEO Child > Style.css or by going to Theme Options > General Settings > Scroll to: Quick CSS.

    Change menu color on all BuddyPress pages
    .buddypress .kleo-main-header.header-lp {background-color: rgba(0, 0, 0, 0.4) !important;}

    Change menu color on BuddyPress user profile only
    .bp-user .kleo-main-header.header-lp {background-color: rgba(0, 0, 0, 0.4) !important;}

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Blank and missing pages #177394
     Kieran_SQ
    Moderator

    Hi Matt,

    Thanks for reaching out about the error 500 issue you’re having. You’re getting an error 500 because there is something wrong at the host level “500: Internal Error”, please contact HostGator to ask their support team to look into this for you.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: User Messages – reorder tabs #177393
     Kieran_SQ
    Moderator

    Hi,

    Please try adding the below snippet to the end of your KLEO Child theme’s functions.php file by going to Appearance > Editor > KLEO Child > Functions.php

    COPY CODE
    function add_settings_subnav_tab() {
    
        //reorder messages tabs
        buddypress()->members->nav->edit_nav( array(
            'position' => 10,
        ), 'compose', 'messages' );
    
        buddypress()->members->nav->edit_nav( array(
            'position' => 11,
        ), 'inbox', 'messages' );
    
        buddypress()->members->nav->edit_nav( array(
            'position' => 12,
        ), 'sentbox', 'messages' );
    
         buddypress()->members->nav->edit_nav( array(
            'position' => 20,
        ), 'starred', 'messages' );
    
    }
     
    add_action( 'bp_setup_nav', 'add_settings_subnav_tab', 100 );

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Registration form – not showing all primary fields #177392
     Kieran_SQ
    Moderator

    Hi,

    I will assign this to one of our developers as it does not appear the field is appearing in the HTML on the first load. They will be in touch with you as soon as they can (Mon-Fri East Europe Time).

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator

    Hi,

    This will be best done with a plugin, I haven’t used the two that I list below but this is what I found after a quick Google search

    New User Approve https://wordpress.org/plugins/new-user-approve/
    Eonet Manual User Approve https://wordpress.org/plugins/eonet-manual-user-approve/

    Eonet looks particularly promising for your needs and seems to be actively developed.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Remove comments link on map bubble #177389
     Kieran_SQ
    Moderator

    Hi,

    To remove the display of the comment icon for reviews please add the below CSS to your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or by going to WP Admin > Theme Options > General Settings > Quick CSS.

    .geodir-bubble-meta-bottom .geodir-bubble-reviews {display: none !important;}

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Change static and hover color of buttons #177387
     Kieran_SQ
    Moderator

    Hi,

    You can change the colors used by KLEO by going to WP Admin > Theme Options > Styling Options > Main and settings the options as per your design requirements.

    A great way to see the changes as you’re editing styling is to go to Appearance > Customize

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator

    Hi,

    This appears to be a bug in GeoDirectory, please report the issue to the GeoDirectory support team who will be able to assist you with this issue – you can find the team here https://wpgeodirectory.com/support/.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Membership Levels – Add Other Functions #177385
     Kieran_SQ
    Moderator

    Hi,

    To add more options to the table via Theme Options > Memberships please use the below code at the end of your functions.php file by going to WP Admin > Appearance > Editor > KLEO Child > Functions.php

    COPY CODE
    add_filter('kleo_pmpro_level_restrictions', 'my_custom_levels');
    
    function my_custom_levels($kleo_pay_settings) {
        $kleo_pay_settings[] = array(
                'title' => __('New Option A','kleo_framework'),
                'front' => __('Option A','kleo_framework'),
                'name' => 'new_option_a'
            );
        $kleo_pay_settings[] = array(
                'title' => __('New Option B','kleo_framework'),
                'front' => __('Option B','kleo_framework'),
                'name' => 'new_option_b'
            );
        $kleo_pay_settings[] = array(
                'title' => __('New Option C','kleo_framework'),
                'front' => __('Option C','kleo_framework'),
                'name' => 'new_option_c'
            );
        return $kleo_pay_settings;
    }

    Adjust the code to suit your needs.

    With regards to the icon question I will refer this ticket to one of our developers who may be able to assist you. They’ll be in touch as soon as they can (Mon-Fri East Europe Time).

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Primary Menu – AJAX search #177384
     Kieran_SQ
    Moderator

    Hi,

    It is possible to add a search field at the end of the menu but it would not be the ajax search that comes with KLEO. Adding the ajax search to the header directly would likely break a lot of different elements and certainly would when any user searched.

    If you would like to add a general search form at the end of the menu please add the below code to the end of your KLEO Child theme’s functions.php file by going to WP Admin > Appearance > Editor > KLEO Child > Functions.php

    COPY CODE
    add_filter('wp_nav_menu_items','add_search_box_to_menu', 10, 2);
    function add_search_box_to_menu( $items, $args ) {
        if( $args->theme_location == 'primary' )
            return $items."<li class='menu-header-search'><form action='https://irside.com/' id='searchform' method='get'><input type='text' name='s' id='s' placeholder='Search'></form></li>";
    
        return $items;
    }

    Another option would be to use CSS to make it clearer, you could try using any of the CSS below in your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or by going to WP Admin > Theme Options > General Settings > Scroll to: Quick CSS

    Add ‘Search’ after icon
    .search-trigger::after {content: "Search";padding-left: 8px;}

    Add ‘Search’ before icon
    .search-trigger::before {content: "Search";padding-right: 8px;}

    Change search icon color
    li#nav-menu-item-search a {color: #ff0000;}

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Profile Picture – crop button not centered vertically #177383
     Kieran_SQ
    Moderator

    Hi,

    To fix the button issue please apply the below CSS to your KLEO Child theme’s style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or by going to WP Admin > Theme Options > General Settings > Quick CSS. To see changes you will need to clear all caches.

    .buddypress .change-avatar a.button, #buddypress a.button{height: auto;line-height: inherit;}

    To translate the single string please paste the below at the end of your KLEO Child theme’s functions.php file by going to WP Admin > Appearance > Editor > KLEO Child > Functions.php

    COPY CODE
    // Translate crop image to save image
    add_filter('gettext', 'translate_reply');
    add_filter('ngettext', 'translate_reply');
    function translate_reply($translated) {
    $translated = str_ireplace('Crop Image', 'Save Image', $translated);
    return $translated;
    }

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Member Page #177381
     Kieran_SQ
    Moderator

    Hi,

    Thanks for reaching out about issues you’re having, I will respond in the same format as above for ease.

    1. The for shows ‘i’ because the is what you have set via WP Admin > Users > Profile Search > Edit Form > Right side panel: ‘Add to directory’. Update the fields for ‘Form Header’ and ‘Toggle Form Button’ then save to see changes.

    2. Please follow this tutorial if you would like to add profile fields to the members directory https://archived.seventhqueen.com/kleo/article/add-extra-profile-fields-show-certain-profile-fields-member-directory

    3. It is possible but the structure is not in place withing the BuddyPress members directory to do this so you would need edit the template page heavily to achieve this.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: change hover background color of icon in feature item #177373
     Kieran_SQ
    Moderator

    Hi Janet,

    Thanks for reaching out today above hover styles on the KLEO Featured element within Visual Composer. Please add the below CSS to your KLEO Child theme by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or to WP Admin > Theme Options > General Settings > Scroll to: Quick CSS.

    COPY CODE
    .feature-icon.el-appear.icon-attention-circled:hover {
        color: #000000 !important;
        border: solid 1px #000000 !important;
    }

    Adjust the #000000 value to suit your needs.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Profile Pic Carousel #177372
     Kieran_SQ
    Moderator

    Hi,

    I logged into your site to look at the issue and found that when I switch to parent SweetDate theme the images works fine as does the profile menu (which also was not working).

    Please make a backup of your SweetDate Child theme and remove your template changes, clear you cache to see it all working as it should. Upload each file one by one, clearing your cache (Ctrl+F5) each time until the issue appears again, when it does it will mean you have identified the file causing the issue. Please let me know when you have found it and I will be able to look into this further for you.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: CSS Problems #177371
     Kieran_SQ
    Moderator

    Hi,

    I am going to ask one of our developers to look into this for you, they’ll be in touch as soon as possible (Mon-Fri East Europe Time).

    Thank you for your patience,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Theme update and the Child Theme… #177370
     Kieran_SQ
    Moderator

    Hi,

    When updates roll out you should check this Changelog https://archived.seventhqueen.com/kleo/article/changelog to see any core changes to any parts of KLEO that you have in your KLEO Child theme, if there is major updates you should move the new template file into the child theme and copy across your changes. For minor updates you will not need to do this, minor updates account for the majority of updates.

    You should continue to update the theme as it continues to support new iterations of WordPress, WooCommerce and BuddyPress etc, if you stop updating the theme and continue updating plugins you’re likely to run into issues. You should always update plugins and themes where possible for new features, bug fixes and resolutions to security issues.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: How do we disable the IP address on forums? #177369
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Issue with m.facebook.com #177368
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Issue with m.facebook.com #177298
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Paid Membership Pro plugin error #177296
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Issue with m.facebook.com #177286
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Theme update and the Child Theme… #177284
     Kieran_SQ
    Moderator

    Hi JB,

    Thanks for reaching out about parent / child themes and how they work. I’ll try my best to explain below.

    KLEO

    – Updates are made to this, the parent theme, and not the KLEO Child
    – Holds all of the code needed and required

    KLEO Child

    – Empty theme that you can add modified copies of content from KLEO that will always override the original content
    – Update safe way to edit core theme files

    There are exceptions to the above mentioned. A theme may undergo a major revision in which the code base changes considerably. If that happened then it is likely that the Child theme would cause errors on the front-end. If this happens then a new copy of the file should be move from parent to child and edited to suit.

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: How do we disable the IP address on forums? #177283
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Issue with m.facebook.com #177282
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Paid Membership Pro plugin error #177281
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Login page not working #177280
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Register page not loading completely #177279
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: CSS Problems #177278
     Kieran_SQ
    Moderator

    Hi,

    I have logged into your site and found that only the child theme appears in WP Admin > Appearance > Themes. Please can you take a screenshot of your /wp-content/themes/ folder in FTP so I can see if the main theme is installed.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Equal Image size in posts #177277
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Members dont show up on websites homepage and memberpage #177276
     Kieran_SQ
    Moderator

    Hi,

    I have looked at your site and I can see three members have activated their account. How many members do you have in the back-end?

    As a test please try installing the User Switching plugin available for free on the WordPress Plugin Repository https://wordpress.org/plugins/user-switching/. Once installed go to WP Admin > Users and switch to a user that you do not see on the front-end, once you have switched, check to see if the user now appears on the front-end. If this is the case it will mean the plugin you used to create demo users did not activate the accounts and they will not appear until they have been activated.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: How do we disable the IP address on forums? #177229
     Kieran_SQ
    Moderator

    Hi,

    Please can you update this ticket with a private reply containing admin login credentials and standard user login credentials so I can look into this for you.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Checkout and cart get skipped during SignUp #177174
     Kieran_SQ
    Moderator

    You’re most welcome 🙂 Glad it helped, feel free to open a new ticket any time.

    Also, if you haven’t already, please consider leaving the theme and/or the support received a review on ThemeForest. Every review really does help!

    All the best,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Checkout and cart get skipped during SignUp #177172
     Kieran_SQ
    Moderator

    Hi,

    The BuddyPress profile fields are specific to BuddyPress and will function exactly the same in the back-end regardless of SweetDate, KLEO or BuddyApp. They will also display the same way on the front-end on the users profile, but obviously, the nuances of their display will be different per theme.

    The BuddyPress profile fields can be extended by a third party plugin called BuddyPress Xprofile Custom Fields Type which can be found here https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/.

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Checkout and cart get skipped during SignUp #177167
     Kieran_SQ
    Moderator

    Hi,

    Thanks for getting back, I will respond in the same format as above for ease

    1. SweetDate, KLEO and BuddyApp all have custom options for signing up and registering
    2. SweetDate, KLEO and BuddyApp all have integration with Paid Memberships Pro
    3. SweetDate, KLEO and BuddyApp do not come with any payment gateway but all three support plugins like Paid Memberships Pro and WooCommerce which do have a myriad of payment gateways
    4. SweetDate has a deep integration (since 3.0) with Elementor Page builder, KLEO has a template option (since 4.2) for any page builder and it would be inadvisable to use a page builder with BuddyApp (apart from the bundled Visual Composer) given that it is built to be extremely device friendly.
    5. SweetDate makes use of the BuddyPress Profile Fields system which can be extended by a plugin, KLEO and BuddyApp both support the same fields system
    6. SweetDate, KLEO and BuddyApp all support BP Profile Search which is now the recommended plugin to use for powerful profile searches. You can see more about that here https://wordpress.org/plugins/bp-profile-search/
    7. Roles are set by either WordPress core or through a third party plugin and are independent of the theme. If a user signs up via BuddyPress they will be assigned the subscriber role (unless otherwise stated in options), if bbPress is also installed they’re given a secondary role of participant. You can change which roles are assigned by default in WordPress, BuddyPress and bbPress settings. For any other user you wish to create (for example, via the back-end) you can assign the role manually. You can also use third party plugins like User Role Editor to create or edit roles within WordPress. https://wordpress.org/plugins/user-role-editor/

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Checkout and cart get skipped during SignUp #177165
     Kieran_SQ
    Moderator

    Hi,

    KLEO and SweetDate are quite different from each other, I think you may have noticed that the term kleo appears in SweetDate too, as it does in BuddyApp. SweetDate came first, then KLEO and most recently BuddyApp.

    The strength of SweetDate is the matching system that is used for dating but it can absolutely be used outside of the scope of dating websites, I have seen SweetDate being used for dating, businesses to dog breeding and lots of inbetween. SweetDate is far more focused on the community (BuddyPress) and membership (Paid Memberships Pro) aspects.

    KLEO integrates with BuddyPress and Paid Memberships Pro too as you have experienced but overall KLEO is left as open as possible with regards to uses, so you can create a niche dating website, news website, general blog, corporate site etc

    Feel free to let me know more details about your upcoming project in a private reply and I will be able to give you more clarification between the two.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: How do we disable the IP address on forums? #177059
     Kieran_SQ
    Moderator

    Hi,

    Please try the below snippet in your SweetDate Child theme’s functions.php file, you can do this by going to WP Admin > Appearance > Editor > SweetDate Child > Functions.php

    COPY CODE
    // Remove IP address in bbPress
    function sq_no_view_ip( $author_ip, $r, $args ){
    	return __return_empty_string();	
    }
    add_filter('bbp_get_author_ip','sq_no_view_ip', 10, 3 );

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Add meta tag to site’s home page #177058
     Kieran_SQ
    Moderator
    Not marked as solution
Viewing 40 posts - 3,921 through 3,960 (of 4,912 total)

Log in with your credentials

Forgot your details?